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

ruby-changes:51927

From: hsbt <ko1@a...>
Date: Tue, 31 Jul 2018 21:12:38 +0900 (JST)
Subject: [ruby-changes:51927] hsbt:r64141 (trunk): Fixed inconsistency gemspec location.

hsbt	2018-07-31 21:12:33 +0900 (Tue, 31 Jul 2018)

  New Revision: 64141

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=64141

  Log:
    Fixed inconsistency gemspec location.

  Added files:
    trunk/lib/thwait/thwait.gemspec
  Removed files:
    trunk/lib/thwait.gemspec
Index: lib/thwait.gemspec
===================================================================
--- lib/thwait.gemspec	(revision 64140)
+++ lib/thwait.gemspec	(nonexistent)
@@ -1,21 +0,0 @@ https://github.com/ruby/ruby/blob/trunk/lib/thwait.gemspec#L0
-require_relative "thwait/version"
-
-Gem::Specification.new do |spec|
-  spec.name          = "thwait"
-  spec.version       = ThreadsWait::VERSION
-  spec.authors       = ["Keiju ISHITSUKA"]
-  spec.email         = ["keiju@r..."]
-
-  spec.summary       = %q{Watches for termination of multiple threads.}
-  spec.description   = %q{Watches for termination of multiple threads.}
-  spec.homepage      = "https://github.com/ruby/thwait"
-  spec.license       = "BSD-2-Clause"
-
-  spec.files         = [".gitignore", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/thwait.rb", "lib/thwait/version.rb", "thwait.gemspec"]
-  spec.bindir        = "exe"
-  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
-  spec.require_paths = ["lib"]
-
-  spec.add_development_dependency "bundler", "~> 1.16"
-  spec.add_development_dependency "rake", "~> 10.0"
-end
Index: lib/thwait/thwait.gemspec
===================================================================
--- lib/thwait/thwait.gemspec	(nonexistent)
+++ lib/thwait/thwait.gemspec	(revision 64141)
@@ -0,0 +1,21 @@ https://github.com/ruby/ruby/blob/trunk/lib/thwait/thwait.gemspec#L1
+require_relative "version"
+
+Gem::Specification.new do |spec|
+  spec.name          = "thwait"
+  spec.version       = ThreadsWait::VERSION
+  spec.authors       = ["Keiju ISHITSUKA"]
+  spec.email         = ["keiju@r..."]
+
+  spec.summary       = %q{Watches for termination of multiple threads.}
+  spec.description   = %q{Watches for termination of multiple threads.}
+  spec.homepage      = "https://github.com/ruby/thwait"
+  spec.license       = "BSD-2-Clause"
+
+  spec.files         = [".gitignore", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/thwait.rb", "lib/thwait/version.rb", "thwait.gemspec"]
+  spec.bindir        = "exe"
+  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
+  spec.require_paths = ["lib"]
+
+  spec.add_development_dependency "bundler", "~> 1.16"
+  spec.add_development_dependency "rake", "~> 10.0"
+end

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

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