diff options
author | Hiroshi SHIBATA <[email protected]> | 2023-05-25 15:47:48 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2023-05-25 15:47:48 +0900 |
commit | d1237bc3a43ed87d9a8c574cfbb7e0399ae0ee76 (patch) | |
tree | e898e588aa4e6e1b4911440513c54ccd0bb14e15 /lib/ostruct | |
parent | 99a078f4eda5394e85e6e740e017835b2aef51d4 (diff) |
Move gemspec files to top of lib directory.
They have version.rb files with same directory.
But version.rb have been removed at https://github.com/ruby/ruby/pull/3375
There is no reason to locate under the library name of directory.
Diffstat (limited to 'lib/ostruct')
-rw-r--r-- | lib/ostruct/ostruct.gemspec | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/lib/ostruct/ostruct.gemspec b/lib/ostruct/ostruct.gemspec deleted file mode 100644 index 31ecc312c3..0000000000 --- a/lib/ostruct/ostruct.gemspec +++ /dev/null @@ -1,27 +0,0 @@ -# frozen_string_literal: true - -name = File.basename(__FILE__, ".gemspec") -version = ["lib", Array.new(name.count("-")+1, "..").join("/")].find do |dir| - break File.foreach(File.join(__dir__, dir, "#{name.tr('-', '/')}.rb")) do |line| - /^\s*VERSION\s*=\s*"(.*)"/ =~ line and break $1 - end rescue nil -end - -Gem::Specification.new do |spec| - spec.name = name - spec.version = version - spec.authors = ["Marc-Andre Lafortune"] - spec.email = ["[email protected]"] - - 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.licenses = ["Ruby", "BSD-2-Clause"] - spec.required_ruby_version = ">= 2.5.0" - - spec.files = [".gitignore", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/ostruct.rb", "ostruct.gemspec"] - spec.require_paths = ["lib"] - - spec.add_development_dependency "bundler" - spec.add_development_dependency "rake" -end |