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

ruby-changes:54851

From: hsbt <ko1@a...>
Date: Wed, 13 Feb 2019 09:31:57 +0900 (JST)
Subject: [ruby-changes:54851] hsbt:r66984 (trunk): Fixed gemspec location of bundler.

hsbt	2019-02-01 22:41:56 +0900 (Fri, 01 Feb 2019)

  New Revision: 66984

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

  Log:
    Fixed gemspec location of bundler.
    
      FileCollector of rbinstall.rb requires location of gemspec under
      the sub-direcotry with the same name as default gems.
    
      I forgot to fix it with r66867.
    
      [Bug #15582][ruby-core:91374]

  Added files:
    trunk/lib/bundler/bundler.gemspec
  Removed files:
    trunk/lib/bundler.gemspec
Index: lib/bundler.gemspec
===================================================================
--- lib/bundler.gemspec	(revision 66983)
+++ lib/bundler.gemspec	(nonexistent)
@@ -1,64 +0,0 @@ https://github.com/ruby/ruby/blob/trunk/lib/bundler.gemspec#L0
-# coding: utf-8
-# frozen_string_literal: true
-
-begin
-  require File.expand_path("../lib/bundler/version", __FILE__)
-rescue LoadError
-  # for Ruby core repository
-  require File.expand_path("../bundler/version", __FILE__)
-end
-
-Gem::Specification.new do |s|
-  s.name        = "bundler"
-  s.version     = Bundler::VERSION
-  s.license     = "MIT"
-  s.authors     = [
-    "Andr辿 Arko", "Samuel Giddins", "Colby Swandale", "Hiroshi Shibata",
-    "David Rodr鱈guez", "Grey Baker", "Stephanie Morillo", "Chris Morris", "James Wen", "Tim Moore",
-    "Andr辿 Medeiros", "Jessica Lynn Suttles", "Terence Lee", "Carl Lerche",
-    "Yehuda Katz"
-  ]
-  s.email       = ["team@b..."]
-  s.homepage    = "http://bundler.io"
-  s.summary     = "The best way to manage your application's dependencies"
-  s.description = "Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably"
-
-  if s.respond_to?(:metadata=)
-    s.metadata = {
-      "bug_tracker_uri" => "http://github.com/bundler/bundler/issues",
-      "changelog_uri" => "https://github.com/bundler/bundler/blob/master/CHANGELOG.md",
-      "homepage_uri" => "https://bundler.io/",
-      "source_code_uri" => "http://github.com/bundler/bundler/",
-    }
-  end
-
-  if s.version >= Gem::Version.new("2.a".dup)
-    s.required_ruby_version     = ">= 2.3.0"
-    s.required_rubygems_version = ">= 2.5.0"
-  else
-    s.required_ruby_version     = ">= 1.8.7"
-    s.required_rubygems_version = ">= 1.3.6"
-  end
-
-  s.add_development_dependency "automatiek", "~> 0.1.0"
-  s.add_development_dependency "mustache",   "0.99.6"
-  s.add_development_dependency "rake",       "~> 10.0"
-  s.add_development_dependency "rdiscount",  "~> 2.2"
-  s.add_development_dependency "ronn",       "~> 0.7.3"
-  s.add_development_dependency "rspec",      "~> 3.6"
-
-  # base_dir = File.dirname(__FILE__).gsub(%r{([^A-Za-z0-9_\-.,:\/@\n])}, "\\\\\\1")
-  # s.files = IO.popen("git -C #{base_dir} ls-files -z", &:read).split("\x0").select {|f| f.match(%r{^(lib|exe)/}) }
-
-  # we don't check in man pages, but we need to ship them because
-  # we use them to generate the long-form help for each command.
-  # s.files += Dir.glob("man/**/*")
-  # Include the CHANGELOG.md, LICENSE.md, README.md manually
-  # s.files += %w[CHANGELOG.md LICENSE.md README.md]
-  # include the gemspec itself because warbler breaks w/o it
-  s.files += %w[bundler.gemspec]
-
-  s.bindir        = "exe"
-  s.executables   = %w[bundle bundler]
-  s.require_paths = ["lib"]
-end
Index: lib/bundler/bundler.gemspec
===================================================================
--- lib/bundler/bundler.gemspec	(nonexistent)
+++ lib/bundler/bundler.gemspec	(revision 66984)
@@ -0,0 +1,64 @@ https://github.com/ruby/ruby/blob/trunk/lib/bundler/bundler.gemspec#L1
+# coding: utf-8
+# frozen_string_literal: true
+
+begin
+  require File.expand_path("../lib/bundler/version", __FILE__)
+rescue LoadError
+  # for Ruby core repository
+  require File.expand_path("../version", __FILE__)
+end
+
+Gem::Specification.new do |s|
+  s.name        = "bundler"
+  s.version     = Bundler::VERSION
+  s.license     = "MIT"
+  s.authors     = [
+    "Andr辿 Arko", "Samuel Giddins", "Colby Swandale", "Hiroshi Shibata",
+    "David Rodr鱈guez", "Grey Baker", "Stephanie Morillo", "Chris Morris", "James Wen", "Tim Moore",
+    "Andr辿 Medeiros", "Jessica Lynn Suttles", "Terence Lee", "Carl Lerche",
+    "Yehuda Katz"
+  ]
+  s.email       = ["team@b..."]
+  s.homepage    = "http://bundler.io"
+  s.summary     = "The best way to manage your application's dependencies"
+  s.description = "Bundler manages an application's dependencies through its entire life, across many machines, systematically and repeatably"
+
+  if s.respond_to?(:metadata=)
+    s.metadata = {
+      "bug_tracker_uri" => "http://github.com/bundler/bundler/issues",
+      "changelog_uri" => "https://github.com/bundler/bundler/blob/master/CHANGELOG.md",
+      "homepage_uri" => "https://bundler.io/",
+      "source_code_uri" => "http://github.com/bundler/bundler/",
+    }
+  end
+
+  if s.version >= Gem::Version.new("2.a".dup)
+    s.required_ruby_version     = ">= 2.3.0"
+    s.required_rubygems_version = ">= 2.5.0"
+  else
+    s.required_ruby_version     = ">= 1.8.7"
+    s.required_rubygems_version = ">= 1.3.6"
+  end
+
+  s.add_development_dependency "automatiek", "~> 0.1.0"
+  s.add_development_dependency "mustache",   "0.99.6"
+  s.add_development_dependency "rake",       "~> 10.0"
+  s.add_development_dependency "rdiscount",  "~> 2.2"
+  s.add_development_dependency "ronn",       "~> 0.7.3"
+  s.add_development_dependency "rspec",      "~> 3.6"
+
+  # base_dir = File.dirname(__FILE__).gsub(%r{([^A-Za-z0-9_\-.,:\/@\n])}, "\\\\\\1")
+  # s.files = IO.popen("git -C #{base_dir} ls-files -z", &:read).split("\x0").select {|f| f.match(%r{^(lib|exe)/}) }
+
+  # we don't check in man pages, but we need to ship them because
+  # we use them to generate the long-form help for each command.
+  # s.files += Dir.glob("man/**/*")
+  # Include the CHANGELOG.md, LICENSE.md, README.md manually
+  # s.files += %w[CHANGELOG.md LICENSE.md README.md]
+  # include the gemspec itself because warbler breaks w/o it
+  s.files += %w[bundler.gemspec]
+
+  s.bindir        = "exe"
+  s.executables   = %w[bundle bundler]
+  s.require_paths = ["lib"]
+end

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

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