summaryrefslogtreecommitdiff
path: root/lib/yaml
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2019-11-08 20:18:08 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2019-11-09 07:32:34 +0900
commit8c9438d219885fb26ca2e7cfc6ca38dd0bcb3db6 (patch)
treecd8a8fee19890ac8735cf074e7e4fd82d2c5fb26 /lib/yaml
parent2a0ed5691efbc602a4403ec09e6f91e89baa5507 (diff)
downloadruby-8c9438d219885fb26ca2e7cfc6ca38dd0bcb3db6.tar.gz
Promote yaml to default gems
Diffstat (limited to 'lib/yaml')
-rw-r--r--lib/yaml/version.rb3
-rw-r--r--lib/yaml/yaml.gemspec29
2 files changed, 32 insertions, 0 deletions
diff --git a/lib/yaml/version.rb b/lib/yaml/version.rb
new file mode 100644
index 0000000000..b8e83d8f0d
--- /dev/null
+++ b/lib/yaml/version.rb
@@ -0,0 +1,3 @@
+module YAML
+ VERSION = "0.1.0"
+end
diff --git a/lib/yaml/yaml.gemspec b/lib/yaml/yaml.gemspec
new file mode 100644
index 0000000000..2272af46d7
--- /dev/null
+++ b/lib/yaml/yaml.gemspec
@@ -0,0 +1,29 @@
+begin
+ require_relative "lib/yaml/version"
+rescue LoadError # Fallback to load version file in ruby core repository
+ require_relative "version"
+end
+
+Gem::Specification.new do |spec|
+ spec.name = "yaml"
+ spec.version = YAML::VERSION
+ spec.authors = ["Aaron Patterson", "SHIBATA Hiroshi"]
+ spec.email = ["aaron@tenderlovemaking.com", "hsbt@ruby-lang.org"]
+
+ spec.summary = "YAML Ain't Markup Language"
+ spec.description = spec.summary
+ spec.homepage = "https://github.com/ruby/yaml"
+ spec.license = "BSD-2-Clause"
+
+ spec.metadata["homepage_uri"] = spec.homepage
+ spec.metadata["source_code_uri"] = spec.homepage
+
+ # Specify which files should be added to the gem when it is released.
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
+ end
+ spec.bindir = "exe"
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
+ spec.require_paths = ["lib"]
+end