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

ruby-changes:51922

From: hsbt <ko1@a...>
Date: Tue, 31 Jul 2018 10:35:22 +0900 (JST)
Subject: [ruby-changes:51922] hsbt:r64136 (trunk): Fixed inconsistency file structure for gemspec.

hsbt	2018-07-31 10:35:16 +0900 (Tue, 31 Jul 2018)

  New Revision: 64136

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

  Log:
    Fixed inconsistency file structure for gemspec.

  Added files:
    trunk/lib/tracer/tracer.gemspec
  Removed files:
    trunk/lib/tracer.gemspec
Index: lib/tracer.gemspec
===================================================================
--- lib/tracer.gemspec	(revision 64135)
+++ lib/tracer.gemspec	(nonexistent)
@@ -1,21 +0,0 @@ https://github.com/ruby/ruby/blob/trunk/lib/tracer.gemspec#L0
-require_relative "tracer/version"
-
-Gem::Specification.new do |spec|
-  spec.name          = "tracer"
-  spec.version       = Tracer::VERSION
-  spec.authors       = ["Keiju ISHITSUKA"]
-  spec.email         = ["keiju@r..."]
-
-  spec.summary       = %q{Outputs a source level execution trace of a Ruby program.}
-  spec.description   = %q{Outputs a source level execution trace of a Ruby program.}
-  spec.homepage      = "https://github.com/ruby/tracer"
-  spec.license       = "BSD-2-Clause"
-
-  spec.files         = [".gitignore", ".travis.yml", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/tracer.rb", "lib/tracer/version.rb", "tracer.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
Index: lib/tracer/tracer.gemspec
===================================================================
--- lib/tracer/tracer.gemspec	(nonexistent)
+++ lib/tracer/tracer.gemspec	(revision 64136)
@@ -0,0 +1,21 @@ https://github.com/ruby/ruby/blob/trunk/lib/tracer/tracer.gemspec#L1
+require_relative "version"
+
+Gem::Specification.new do |spec|
+  spec.name          = "tracer"
+  spec.version       = Tracer::VERSION
+  spec.authors       = ["Keiju ISHITSUKA"]
+  spec.email         = ["keiju@r..."]
+
+  spec.summary       = %q{Outputs a source level execution trace of a Ruby program.}
+  spec.description   = %q{Outputs a source level execution trace of a Ruby program.}
+  spec.homepage      = "https://github.com/ruby/tracer"
+  spec.license       = "BSD-2-Clause"
+
+  spec.files         = [".gitignore", ".travis.yml", "Gemfile", "LICENSE.txt", "README.md", "Rakefile", "bin/console", "bin/setup", "lib/tracer.rb", "lib/tracer/version.rb", "tracer.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

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

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