forked from kch/ya2yaml
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathya2yaml.gemspec
30 lines (27 loc) · 1.12 KB
/
ya2yaml.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{ya2yaml}
s.version = "0.32"
s.required_rubygems_version = nil if s.respond_to? :required_rubygems_version=
s.authors = ["Akira FUNAI"]
s.cert_chain = nil
s.date = %q{2017-06-13}
s.email = %q{akira@funai.com}
s.extra_rdoc_files = ["README.rdoc"]
s.files = ["lib/ya2yaml.rb", "README.rdoc", "LICENSE", "test/t.gif", "test/t.yaml", "test/test.rb"]
s.homepage = %q{http://rubyforge.org/projects/ya2yaml/}
s.rubyforge_project = "ya2yaml"
s.rdoc_options = ["--main", "README.rdoc", "--charset", "UTF8"]
s.require_paths = ["lib"]
s.required_ruby_version = Gem::Requirement.new("> 0.0.0")
s.rubygems_version = %q{1.3.6}
s.summary = %q{An UTF8 safe YAML dumper.}
s.description = <<'_eos'
Ya2YAML is "yet another to_yaml". It emits YAML document with complete UTF8 support (string/binary detection, "\u" escape sequences and Unicode specific line breaks).
_eos
s.test_files = ["test/test.rb"]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 1
end
end