From 5a10e577dfdb764c9b4eafa295c5196775cbd515 Mon Sep 17 00:00:00 2001 From: hsbt Date: Thu, 7 Jun 2018 10:13:00 +0000 Subject: Promote OpenStruct to default gems. Upstream repository is https://github.com/ruby/ostruct. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63599 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/ostruct.gemspec | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 lib/ostruct.gemspec (limited to 'lib') diff --git a/lib/ostruct.gemspec b/lib/ostruct.gemspec new file mode 100644 index 0000000000..4faf5b84aa --- /dev/null +++ b/lib/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 -- cgit v1.2.3