[前][次][番号順一覧][スレッド一覧]

ruby-changes:59410

From: Marc-Andre <ko1@a...>
Date: Mon, 23 Dec 2019 18:58:06 +0900 (JST)
Subject: [ruby-changes:59410] 49d94248eb (master): [ruby/ostruct] Move gemspec

https://git.ruby-lang.org/ruby.git/commit/?id=49d94248eb

From 49d94248ebfb7a51e342f8102d21ad132a40f91a Mon Sep 17 00:00:00 2001
From: Marc-Andre Lafortune <github@m...>
Date: Sun, 22 Dec 2019 19:34:42 -0500
Subject: [ruby/ostruct] Move gemspec


diff --git a/lib/ostruct.gemspec b/lib/ostruct.gemspec
deleted file mode 100644
index 4faf5b8..0000000
--- a/lib/ostruct.gemspec
+++ /dev/null
@@ -1,21 +0,0 @@ https://github.com/ruby/ruby/blob/trunk/#L0
-# 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@m..."]
-
-  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
diff --git a/lib/ostruct/ostruct.gemspec b/lib/ostruct/ostruct.gemspec
new file mode 100644
index 0000000..4faf5b8
--- /dev/null
+++ b/lib/ostruct/ostruct.gemspec
@@ -0,0 +1,21 @@ https://github.com/ruby/ruby/blob/trunk/lib/ostruct/ostruct.gemspec#L1
+# 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@m..."]
+
+  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 v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]