aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ostruct
diff options
context:
space:
mode:
authorMarc-Andre Lafortune <github@marc-andre.ca>2019-12-22 19:34:42 -0500
committerMarc-Andre Lafortune <github@marc-andre.ca>2019-12-22 21:48:54 -0500
commit49d94248ebfb7a51e342f8102d21ad132a40f91a (patch)
treed85a10df69cfc3619f9395c450619f83e05d434b /lib/ostruct
parent48d1acdf25b13bd9e28bf6baa3f74ec082a27a00 (diff)
downloadruby-49d94248ebfb7a51e342f8102d21ad132a40f91a.tar.gz
[ruby/ostruct] Move gemspec
Diffstat (limited to 'lib/ostruct')
-rw-r--r--lib/ostruct/ostruct.gemspec21
1 files changed, 21 insertions, 0 deletions
diff --git a/lib/ostruct/ostruct.gemspec b/lib/ostruct/ostruct.gemspec
new file mode 100644
index 0000000000..4faf5b84aa
--- /dev/null
+++ b/lib/ostruct/ostruct.gemspec
@@ -0,0 +1,21 @@
+# frozen_string_literal: true
+
+Gem::Specification.new do |spec|
+ spec.name = "ostruct"
+ spec.version = "0.1.0"
+ spec.authors = ["Marc-Andre Lafortune"]
+ spec.email = ["ruby-core@marc-andre.ca"]
+
+ spec.summary = %q{Class to build custom data structures, similar to a Hash.}
+ spec.description = %q{Class to build custom data structures, similar to a Hash.}
+ spec.homepage = "https://github.com/ruby/ostruct"
+ spec.license = "BSD-2-Clause"
+
+ spec.files = [".gitignore", ".travis.yml", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/ostruct.rb", "ostruct.gemspec"]
+ spec.bindir = "exe"
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
+ spec.require_paths = ["lib"]
+
+ spec.add_development_dependency "bundler"
+ spec.add_development_dependency "rake"
+end