rkh-bundler 1.2.0.pre

Sign up to get free protection for your applications and to get access to all the features.
Files changed (176) hide show
  1. data/.gitignore +22 -0
  2. data/.travis.yml +42 -0
  3. data/CHANGELOG.md +1105 -0
  4. data/ISSUES.md +67 -0
  5. data/LICENSE +23 -0
  6. data/README.md +31 -0
  7. data/Rakefile +208 -0
  8. data/UPGRADING.md +103 -0
  9. data/bin/bundle +31 -0
  10. data/bundler.gemspec +31 -0
  11. data/lib/bundler.rb +353 -0
  12. data/lib/bundler/capistrano.rb +11 -0
  13. data/lib/bundler/cli.rb +693 -0
  14. data/lib/bundler/definition.rb +568 -0
  15. data/lib/bundler/dep_proxy.rb +43 -0
  16. data/lib/bundler/dependency.rb +134 -0
  17. data/lib/bundler/deployment.rb +58 -0
  18. data/lib/bundler/dsl.rb +256 -0
  19. data/lib/bundler/endpoint_specification.rb +78 -0
  20. data/lib/bundler/environment.rb +47 -0
  21. data/lib/bundler/fetcher.rb +225 -0
  22. data/lib/bundler/gem_helper.rb +162 -0
  23. data/lib/bundler/gem_helpers.rb +23 -0
  24. data/lib/bundler/gem_installer.rb +9 -0
  25. data/lib/bundler/gem_tasks.rb +2 -0
  26. data/lib/bundler/graph.rb +148 -0
  27. data/lib/bundler/index.rb +187 -0
  28. data/lib/bundler/installer.rb +190 -0
  29. data/lib/bundler/lazy_specification.rb +79 -0
  30. data/lib/bundler/lockfile_parser.rb +127 -0
  31. data/lib/bundler/match_platform.rb +13 -0
  32. data/lib/bundler/psyched_yaml.rb +15 -0
  33. data/lib/bundler/remote_specification.rb +57 -0
  34. data/lib/bundler/resolver.rb +486 -0
  35. data/lib/bundler/ruby_version.rb +94 -0
  36. data/lib/bundler/rubygems_ext.rb +153 -0
  37. data/lib/bundler/rubygems_integration.rb +394 -0
  38. data/lib/bundler/runtime.rb +233 -0
  39. data/lib/bundler/settings.rb +128 -0
  40. data/lib/bundler/setup.rb +23 -0
  41. data/lib/bundler/shared_helpers.rb +71 -0
  42. data/lib/bundler/source.rb +869 -0
  43. data/lib/bundler/spec_set.rb +137 -0
  44. data/lib/bundler/templates/Executable +16 -0
  45. data/lib/bundler/templates/Executable.standalone +12 -0
  46. data/lib/bundler/templates/Gemfile +4 -0
  47. data/lib/bundler/templates/newgem/Gemfile.tt +4 -0
  48. data/lib/bundler/templates/newgem/LICENSE.tt +22 -0
  49. data/lib/bundler/templates/newgem/README.md.tt +29 -0
  50. data/lib/bundler/templates/newgem/Rakefile.tt +2 -0
  51. data/lib/bundler/templates/newgem/bin/newgem.tt +3 -0
  52. data/lib/bundler/templates/newgem/gitignore.tt +17 -0
  53. data/lib/bundler/templates/newgem/lib/newgem.rb.tt +9 -0
  54. data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +7 -0
  55. data/lib/bundler/templates/newgem/newgem.gemspec.tt +17 -0
  56. data/lib/bundler/ui.rb +88 -0
  57. data/lib/bundler/vendor/net/http/faster.rb +27 -0
  58. data/lib/bundler/vendor/net/http/persistent.rb +468 -0
  59. data/lib/bundler/vendor/thor.rb +358 -0
  60. data/lib/bundler/vendor/thor/actions.rb +314 -0
  61. data/lib/bundler/vendor/thor/actions/create_file.rb +105 -0
  62. data/lib/bundler/vendor/thor/actions/create_link.rb +57 -0
  63. data/lib/bundler/vendor/thor/actions/directory.rb +93 -0
  64. data/lib/bundler/vendor/thor/actions/empty_directory.rb +134 -0
  65. data/lib/bundler/vendor/thor/actions/file_manipulation.rb +270 -0
  66. data/lib/bundler/vendor/thor/actions/inject_into_file.rb +109 -0
  67. data/lib/bundler/vendor/thor/base.rb +576 -0
  68. data/lib/bundler/vendor/thor/core_ext/file_binary_read.rb +9 -0
  69. data/lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rb +75 -0
  70. data/lib/bundler/vendor/thor/core_ext/ordered_hash.rb +100 -0
  71. data/lib/bundler/vendor/thor/error.rb +30 -0
  72. data/lib/bundler/vendor/thor/group.rb +273 -0
  73. data/lib/bundler/vendor/thor/invocation.rb +168 -0
  74. data/lib/bundler/vendor/thor/parser.rb +4 -0
  75. data/lib/bundler/vendor/thor/parser/argument.rb +67 -0
  76. data/lib/bundler/vendor/thor/parser/arguments.rb +161 -0
  77. data/lib/bundler/vendor/thor/parser/option.rb +120 -0
  78. data/lib/bundler/vendor/thor/parser/options.rb +172 -0
  79. data/lib/bundler/vendor/thor/rake_compat.rb +66 -0
  80. data/lib/bundler/vendor/thor/runner.rb +309 -0
  81. data/lib/bundler/vendor/thor/shell.rb +88 -0
  82. data/lib/bundler/vendor/thor/shell/basic.rb +302 -0
  83. data/lib/bundler/vendor/thor/shell/color.rb +108 -0
  84. data/lib/bundler/vendor/thor/shell/html.rb +121 -0
  85. data/lib/bundler/vendor/thor/task.rb +113 -0
  86. data/lib/bundler/vendor/thor/util.rb +229 -0
  87. data/lib/bundler/vendor/thor/version.rb +3 -0
  88. data/lib/bundler/vendored_thor.rb +7 -0
  89. data/lib/bundler/version.rb +6 -0
  90. data/lib/bundler/vlad.rb +11 -0
  91. data/man/bundle-config.ronn +130 -0
  92. data/man/bundle-exec.ronn +111 -0
  93. data/man/bundle-install.ronn +335 -0
  94. data/man/bundle-package.ronn +59 -0
  95. data/man/bundle-update.ronn +176 -0
  96. data/man/bundle.ronn +83 -0
  97. data/man/gemfile.5.ronn +324 -0
  98. data/man/index.txt +6 -0
  99. data/spec/bundler/dsl_spec.rb +48 -0
  100. data/spec/bundler/gem_helper_spec.rb +174 -0
  101. data/spec/bundler/source_spec.rb +25 -0
  102. data/spec/cache/gems_spec.rb +239 -0
  103. data/spec/cache/git_spec.rb +124 -0
  104. data/spec/cache/path_spec.rb +103 -0
  105. data/spec/cache/platform_spec.rb +57 -0
  106. data/spec/install/deploy_spec.rb +211 -0
  107. data/spec/install/gems/c_ext_spec.rb +48 -0
  108. data/spec/install/gems/dependency_api_spec.rb +402 -0
  109. data/spec/install/gems/env_spec.rb +107 -0
  110. data/spec/install/gems/flex_spec.rb +313 -0
  111. data/spec/install/gems/groups_spec.rb +268 -0
  112. data/spec/install/gems/packed_spec.rb +84 -0
  113. data/spec/install/gems/platform_spec.rb +208 -0
  114. data/spec/install/gems/post_install_spec.rb +47 -0
  115. data/spec/install/gems/resolving_spec.rb +72 -0
  116. data/spec/install/gems/simple_case_spec.rb +814 -0
  117. data/spec/install/gems/standalone_spec.rb +260 -0
  118. data/spec/install/gems/sudo_spec.rb +74 -0
  119. data/spec/install/gems/win32_spec.rb +26 -0
  120. data/spec/install/gemspec_spec.rb +170 -0
  121. data/spec/install/git_spec.rb +796 -0
  122. data/spec/install/invalid_spec.rb +35 -0
  123. data/spec/install/path_spec.rb +405 -0
  124. data/spec/install/upgrade_spec.rb +26 -0
  125. data/spec/lock/git_spec.rb +35 -0
  126. data/spec/lock/lockfile_spec.rb +809 -0
  127. data/spec/other/check_spec.rb +265 -0
  128. data/spec/other/clean_spec.rb +492 -0
  129. data/spec/other/config_spec.rb +138 -0
  130. data/spec/other/console_spec.rb +54 -0
  131. data/spec/other/exec_spec.rb +229 -0
  132. data/spec/other/ext_spec.rb +37 -0
  133. data/spec/other/help_spec.rb +39 -0
  134. data/spec/other/init_spec.rb +40 -0
  135. data/spec/other/newgem_spec.rb +87 -0
  136. data/spec/other/open_spec.rb +35 -0
  137. data/spec/other/outdated_spec.rb +93 -0
  138. data/spec/other/platform_spec.rb +881 -0
  139. data/spec/other/show_spec.rb +88 -0
  140. data/spec/quality_spec.rb +62 -0
  141. data/spec/realworld/edgecases_spec.rb +177 -0
  142. data/spec/resolver/basic_spec.rb +20 -0
  143. data/spec/resolver/platform_spec.rb +82 -0
  144. data/spec/runtime/executable_spec.rb +120 -0
  145. data/spec/runtime/load_spec.rb +107 -0
  146. data/spec/runtime/platform_spec.rb +90 -0
  147. data/spec/runtime/require_spec.rb +261 -0
  148. data/spec/runtime/setup_spec.rb +755 -0
  149. data/spec/runtime/with_clean_env_spec.rb +80 -0
  150. data/spec/spec_helper.rb +98 -0
  151. data/spec/support/artifice/endopint_marshal_fail_basic_authentication.rb +13 -0
  152. data/spec/support/artifice/endpoint.rb +54 -0
  153. data/spec/support/artifice/endpoint_500.rb +37 -0
  154. data/spec/support/artifice/endpoint_api_missing.rb +16 -0
  155. data/spec/support/artifice/endpoint_basic_authentication.rb +13 -0
  156. data/spec/support/artifice/endpoint_extra.rb +27 -0
  157. data/spec/support/artifice/endpoint_extra_missing.rb +15 -0
  158. data/spec/support/artifice/endpoint_fallback.rb +18 -0
  159. data/spec/support/artifice/endpoint_marshal_fail.rb +11 -0
  160. data/spec/support/artifice/endpoint_redirect.rb +15 -0
  161. data/spec/support/builders.rb +604 -0
  162. data/spec/support/fakeweb/rack-1.0.0.marshal +2 -0
  163. data/spec/support/fakeweb/windows.rb +23 -0
  164. data/spec/support/helpers.rb +317 -0
  165. data/spec/support/indexes.rb +112 -0
  166. data/spec/support/matchers.rb +77 -0
  167. data/spec/support/path.rb +73 -0
  168. data/spec/support/platforms.rb +86 -0
  169. data/spec/support/ruby_ext.rb +20 -0
  170. data/spec/support/rubygems_ext.rb +37 -0
  171. data/spec/support/rubygems_hax/platform.rb +22 -0
  172. data/spec/support/sudo.rb +21 -0
  173. data/spec/update/gems_spec.rb +134 -0
  174. data/spec/update/git_spec.rb +196 -0
  175. data/spec/update/source_spec.rb +51 -0
  176. metadata +338 -0
@@ -0,0 +1,196 @@
1
+ require "spec_helper"
2
+
3
+ describe "bundle update" do
4
+ describe "git sources" do
5
+ it "floats on a branch when :branch is used" do
6
+ build_git "foo", "1.0"
7
+ update_git "foo", :branch => "omg"
8
+
9
+ install_gemfile <<-G
10
+ git "#{lib_path('foo-1.0')}", :branch => "omg" do
11
+ gem 'foo'
12
+ end
13
+ G
14
+
15
+ update_git "foo", :branch => "omg" do |s|
16
+ s.write "lib/foo.rb", "FOO = '1.1'"
17
+ end
18
+
19
+ bundle "update"
20
+
21
+ should_be_installed "foo 1.1"
22
+ end
23
+
24
+ it "updates correctly when you have like craziness" do
25
+ build_lib "activesupport", "3.0", :path => lib_path("rails/activesupport")
26
+ build_git "rails", "3.0", :path => lib_path("rails") do |s|
27
+ s.add_dependency "activesupport", "= 3.0"
28
+ end
29
+
30
+ install_gemfile <<-G
31
+ gem "rails", :git => "#{lib_path('rails')}"
32
+ G
33
+
34
+ bundle "update rails"
35
+ out.should include("Using activesupport (3.0) from #{lib_path('rails')} (at master)")
36
+ should_be_installed "rails 3.0", "activesupport 3.0"
37
+ end
38
+
39
+ it "floats on a branch when :branch is used and the source is specified in the update" do
40
+ build_git "foo", "1.0", :path => lib_path("foo")
41
+ update_git "foo", :branch => "omg", :path => lib_path("foo")
42
+
43
+ install_gemfile <<-G
44
+ git "#{lib_path('foo')}", :branch => "omg" do
45
+ gem 'foo'
46
+ end
47
+ G
48
+
49
+ update_git "foo", :branch => "omg", :path => lib_path("foo") do |s|
50
+ s.write "lib/foo.rb", "FOO = '1.1'"
51
+ end
52
+
53
+ bundle "update --source foo"
54
+
55
+ should_be_installed "foo 1.1"
56
+ end
57
+
58
+ it "floats on master when updating all gems that are pinned to the source even if you have child dependencies" do
59
+ build_git "foo", :path => lib_path('foo')
60
+ build_gem "bar", :to_system => true do |s|
61
+ s.add_dependency "foo"
62
+ end
63
+
64
+ install_gemfile <<-G
65
+ gem "foo", :git => "#{lib_path('foo')}"
66
+ gem "bar"
67
+ G
68
+
69
+ update_git "foo", :path => lib_path('foo') do |s|
70
+ s.write "lib/foo.rb", "FOO = '1.1'"
71
+ end
72
+
73
+ bundle "update foo"
74
+
75
+ should_be_installed "foo 1.1"
76
+ end
77
+
78
+ it "notices when you change the repo url in the Gemfile" do
79
+ build_git "foo", :path => lib_path("foo_one")
80
+ build_git "foo", :path => lib_path("foo_two")
81
+
82
+ install_gemfile <<-G
83
+ gem "foo", "1.0", :git => "#{lib_path('foo_one')}"
84
+ G
85
+
86
+ FileUtils.rm_rf lib_path("foo_one")
87
+
88
+ install_gemfile <<-G
89
+ gem "foo", "1.0", :git => "#{lib_path('foo_two')}"
90
+ G
91
+
92
+ err.should be_empty
93
+ out.should include("Fetching #{lib_path}/foo_two")
94
+ out.should include("Your bundle is complete!")
95
+ end
96
+
97
+
98
+ it "fetches tags from the remote" do
99
+ build_git "foo"
100
+ @remote = build_git("bar", :bare => true)
101
+ update_git "foo", :remote => @remote.path
102
+ update_git "foo", :push => "master"
103
+
104
+ install_gemfile <<-G
105
+ gem 'foo', :git => "#{@remote.path}"
106
+ G
107
+
108
+ # Create a new tag on the remote that needs fetching
109
+ update_git "foo", :tag => "fubar"
110
+ update_git "foo", :push => "fubar"
111
+
112
+ gemfile <<-G
113
+ gem 'foo', :git => "#{@remote.path}", :tag => "fubar"
114
+ G
115
+
116
+ bundle "update", :exitstatus => true
117
+ exitstatus.should == 0
118
+ end
119
+
120
+ describe "with submodules" do
121
+ before :each do
122
+ build_gem "submodule", :to_system => true do |s|
123
+ s.write "lib/submodule.rb", "puts 'GEM'"
124
+ end
125
+
126
+ build_git "submodule", "1.0" do |s|
127
+ s.write "lib/submodule.rb", "puts 'GIT'"
128
+ end
129
+
130
+ build_git "has_submodule", "1.0" do |s|
131
+ s.add_dependency "submodule"
132
+ end
133
+
134
+ Dir.chdir(lib_path('has_submodule-1.0')) do
135
+ `git submodule add #{lib_path('submodule-1.0')} submodule-1.0`
136
+ `git commit -m "submodulator"`
137
+ end
138
+ end
139
+
140
+ it "it unlocks the source when submodules is added to a git source" do
141
+ install_gemfile <<-G
142
+ git "#{lib_path('has_submodule-1.0')}" do
143
+ gem "has_submodule"
144
+ end
145
+ G
146
+
147
+ run "require 'submodule'"
148
+ out.should eq('GEM')
149
+
150
+ install_gemfile <<-G
151
+ git "#{lib_path('has_submodule-1.0')}", :submodules => true do
152
+ gem "has_submodule"
153
+ end
154
+ G
155
+
156
+ run "require 'submodule'"
157
+ out.should == 'GIT'
158
+ end
159
+
160
+ it "it unlocks the source when submodules is removed from git source" do
161
+ pending "This would require actually removing the submodule from the clone"
162
+ install_gemfile <<-G
163
+ git "#{lib_path('has_submodule-1.0')}", :submodules => true do
164
+ gem "has_submodule"
165
+ end
166
+ G
167
+
168
+ run "require 'submodule'"
169
+ out.should eq('GIT')
170
+
171
+ install_gemfile <<-G
172
+ git "#{lib_path('has_submodule-1.0')}" do
173
+ gem "has_submodule"
174
+ end
175
+ G
176
+
177
+ run "require 'submodule'"
178
+ out.should == 'GEM'
179
+ end
180
+ end
181
+
182
+ it "errors with a message when the .git repo is gone" do
183
+ build_git "foo", "1.0"
184
+
185
+ install_gemfile <<-G
186
+ gem "foo", :git => "#{lib_path('foo-1.0')}"
187
+ G
188
+
189
+ lib_path("foo-1.0").join(".git").rmtree
190
+
191
+ bundle :update, :expect_err => true
192
+ out.should include(lib_path("foo-1.0").to_s)
193
+ end
194
+
195
+ end
196
+ end
@@ -0,0 +1,51 @@
1
+ require "spec_helper"
2
+
3
+ describe "bundle update" do
4
+ describe "git sources" do
5
+ before :each do
6
+ build_repo2
7
+ @git = build_git "foo", :path => lib_path("foo") do |s|
8
+ s.executables = "foobar"
9
+ end
10
+
11
+ install_gemfile <<-G
12
+ source "file://#{gem_repo2}"
13
+ git "#{lib_path('foo')}" do
14
+ gem 'foo'
15
+ end
16
+ gem 'rack'
17
+ G
18
+ end
19
+
20
+ it "updates the source" do
21
+ update_git "foo", :path => @git.path
22
+
23
+ bundle "update --source foo"
24
+
25
+ in_app_root do
26
+ run <<-RUBY
27
+ require 'foo'
28
+ puts "WIN" if defined?(FOO_PREV_REF)
29
+ RUBY
30
+
31
+ out.should == "WIN"
32
+ end
33
+ end
34
+
35
+ it "unlocks gems that were originally pulled in by the source" do
36
+ update_git "foo", "2.0", :path => @git.path
37
+
38
+ bundle "update --source foo"
39
+ should_be_installed "foo 2.0"
40
+ end
41
+
42
+ it "leaves all other gems frozen" do
43
+ update_repo2
44
+ update_git "foo", :path => @git.path
45
+
46
+ bundle "update --source foo"
47
+ should_be_installed "rack 1.0"
48
+ end
49
+ end
50
+
51
+ end
metadata ADDED
@@ -0,0 +1,338 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rkh-bundler
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.2.0.pre
5
+ prerelease: 6
6
+ platform: ruby
7
+ authors:
8
+ - André Arko
9
+ - Terence Lee
10
+ - Carl Lerche
11
+ - Yehuda Katz
12
+ autorequire:
13
+ bindir: bin
14
+ cert_chain: []
15
+ date: 2012-05-21 00:00:00.000000000 Z
16
+ dependencies:
17
+ - !ruby/object:Gem::Dependency
18
+ name: ronn
19
+ requirement: &70208993504020 !ruby/object:Gem::Requirement
20
+ none: false
21
+ requirements:
22
+ - - ! '>='
23
+ - !ruby/object:Gem::Version
24
+ version: '0'
25
+ type: :development
26
+ prerelease: false
27
+ version_requirements: *70208993504020
28
+ - !ruby/object:Gem::Dependency
29
+ name: rspec
30
+ requirement: &70208993502840 !ruby/object:Gem::Requirement
31
+ none: false
32
+ requirements:
33
+ - - ~>
34
+ - !ruby/object:Gem::Version
35
+ version: '2.0'
36
+ type: :development
37
+ prerelease: false
38
+ version_requirements: *70208993502840
39
+ description: Bundler manages an application's dependencies through its entire life,
40
+ across many machines, systematically and repeatably
41
+ email:
42
+ - andre@arko.net
43
+ executables:
44
+ - bundle
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - .travis.yml
50
+ - CHANGELOG.md
51
+ - ISSUES.md
52
+ - LICENSE
53
+ - README.md
54
+ - Rakefile
55
+ - UPGRADING.md
56
+ - bin/bundle
57
+ - bundler.gemspec
58
+ - lib/bundler.rb
59
+ - lib/bundler/capistrano.rb
60
+ - lib/bundler/cli.rb
61
+ - lib/bundler/definition.rb
62
+ - lib/bundler/dep_proxy.rb
63
+ - lib/bundler/dependency.rb
64
+ - lib/bundler/deployment.rb
65
+ - lib/bundler/dsl.rb
66
+ - lib/bundler/endpoint_specification.rb
67
+ - lib/bundler/environment.rb
68
+ - lib/bundler/fetcher.rb
69
+ - lib/bundler/gem_helper.rb
70
+ - lib/bundler/gem_helpers.rb
71
+ - lib/bundler/gem_installer.rb
72
+ - lib/bundler/gem_tasks.rb
73
+ - lib/bundler/graph.rb
74
+ - lib/bundler/index.rb
75
+ - lib/bundler/installer.rb
76
+ - lib/bundler/lazy_specification.rb
77
+ - lib/bundler/lockfile_parser.rb
78
+ - lib/bundler/match_platform.rb
79
+ - lib/bundler/psyched_yaml.rb
80
+ - lib/bundler/remote_specification.rb
81
+ - lib/bundler/resolver.rb
82
+ - lib/bundler/ruby_version.rb
83
+ - lib/bundler/rubygems_ext.rb
84
+ - lib/bundler/rubygems_integration.rb
85
+ - lib/bundler/runtime.rb
86
+ - lib/bundler/settings.rb
87
+ - lib/bundler/setup.rb
88
+ - lib/bundler/shared_helpers.rb
89
+ - lib/bundler/source.rb
90
+ - lib/bundler/spec_set.rb
91
+ - lib/bundler/templates/Executable
92
+ - lib/bundler/templates/Executable.standalone
93
+ - lib/bundler/templates/Gemfile
94
+ - lib/bundler/templates/newgem/Gemfile.tt
95
+ - lib/bundler/templates/newgem/LICENSE.tt
96
+ - lib/bundler/templates/newgem/README.md.tt
97
+ - lib/bundler/templates/newgem/Rakefile.tt
98
+ - lib/bundler/templates/newgem/bin/newgem.tt
99
+ - lib/bundler/templates/newgem/gitignore.tt
100
+ - lib/bundler/templates/newgem/lib/newgem.rb.tt
101
+ - lib/bundler/templates/newgem/lib/newgem/version.rb.tt
102
+ - lib/bundler/templates/newgem/newgem.gemspec.tt
103
+ - lib/bundler/ui.rb
104
+ - lib/bundler/vendor/net/http/faster.rb
105
+ - lib/bundler/vendor/net/http/persistent.rb
106
+ - lib/bundler/vendor/thor.rb
107
+ - lib/bundler/vendor/thor/actions.rb
108
+ - lib/bundler/vendor/thor/actions/create_file.rb
109
+ - lib/bundler/vendor/thor/actions/create_link.rb
110
+ - lib/bundler/vendor/thor/actions/directory.rb
111
+ - lib/bundler/vendor/thor/actions/empty_directory.rb
112
+ - lib/bundler/vendor/thor/actions/file_manipulation.rb
113
+ - lib/bundler/vendor/thor/actions/inject_into_file.rb
114
+ - lib/bundler/vendor/thor/base.rb
115
+ - lib/bundler/vendor/thor/core_ext/file_binary_read.rb
116
+ - lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rb
117
+ - lib/bundler/vendor/thor/core_ext/ordered_hash.rb
118
+ - lib/bundler/vendor/thor/error.rb
119
+ - lib/bundler/vendor/thor/group.rb
120
+ - lib/bundler/vendor/thor/invocation.rb
121
+ - lib/bundler/vendor/thor/parser.rb
122
+ - lib/bundler/vendor/thor/parser/argument.rb
123
+ - lib/bundler/vendor/thor/parser/arguments.rb
124
+ - lib/bundler/vendor/thor/parser/option.rb
125
+ - lib/bundler/vendor/thor/parser/options.rb
126
+ - lib/bundler/vendor/thor/rake_compat.rb
127
+ - lib/bundler/vendor/thor/runner.rb
128
+ - lib/bundler/vendor/thor/shell.rb
129
+ - lib/bundler/vendor/thor/shell/basic.rb
130
+ - lib/bundler/vendor/thor/shell/color.rb
131
+ - lib/bundler/vendor/thor/shell/html.rb
132
+ - lib/bundler/vendor/thor/task.rb
133
+ - lib/bundler/vendor/thor/util.rb
134
+ - lib/bundler/vendor/thor/version.rb
135
+ - lib/bundler/vendored_thor.rb
136
+ - lib/bundler/version.rb
137
+ - lib/bundler/vlad.rb
138
+ - man/bundle-config.ronn
139
+ - man/bundle-exec.ronn
140
+ - man/bundle-install.ronn
141
+ - man/bundle-package.ronn
142
+ - man/bundle-update.ronn
143
+ - man/bundle.ronn
144
+ - man/gemfile.5.ronn
145
+ - man/index.txt
146
+ - spec/bundler/dsl_spec.rb
147
+ - spec/bundler/gem_helper_spec.rb
148
+ - spec/bundler/source_spec.rb
149
+ - spec/cache/gems_spec.rb
150
+ - spec/cache/git_spec.rb
151
+ - spec/cache/path_spec.rb
152
+ - spec/cache/platform_spec.rb
153
+ - spec/install/deploy_spec.rb
154
+ - spec/install/gems/c_ext_spec.rb
155
+ - spec/install/gems/dependency_api_spec.rb
156
+ - spec/install/gems/env_spec.rb
157
+ - spec/install/gems/flex_spec.rb
158
+ - spec/install/gems/groups_spec.rb
159
+ - spec/install/gems/packed_spec.rb
160
+ - spec/install/gems/platform_spec.rb
161
+ - spec/install/gems/post_install_spec.rb
162
+ - spec/install/gems/resolving_spec.rb
163
+ - spec/install/gems/simple_case_spec.rb
164
+ - spec/install/gems/standalone_spec.rb
165
+ - spec/install/gems/sudo_spec.rb
166
+ - spec/install/gems/win32_spec.rb
167
+ - spec/install/gemspec_spec.rb
168
+ - spec/install/git_spec.rb
169
+ - spec/install/invalid_spec.rb
170
+ - spec/install/path_spec.rb
171
+ - spec/install/upgrade_spec.rb
172
+ - spec/lock/git_spec.rb
173
+ - spec/lock/lockfile_spec.rb
174
+ - spec/other/check_spec.rb
175
+ - spec/other/clean_spec.rb
176
+ - spec/other/config_spec.rb
177
+ - spec/other/console_spec.rb
178
+ - spec/other/exec_spec.rb
179
+ - spec/other/ext_spec.rb
180
+ - spec/other/help_spec.rb
181
+ - spec/other/init_spec.rb
182
+ - spec/other/newgem_spec.rb
183
+ - spec/other/open_spec.rb
184
+ - spec/other/outdated_spec.rb
185
+ - spec/other/platform_spec.rb
186
+ - spec/other/show_spec.rb
187
+ - spec/quality_spec.rb
188
+ - spec/realworld/edgecases_spec.rb
189
+ - spec/resolver/basic_spec.rb
190
+ - spec/resolver/platform_spec.rb
191
+ - spec/runtime/executable_spec.rb
192
+ - spec/runtime/load_spec.rb
193
+ - spec/runtime/platform_spec.rb
194
+ - spec/runtime/require_spec.rb
195
+ - spec/runtime/setup_spec.rb
196
+ - spec/runtime/with_clean_env_spec.rb
197
+ - spec/spec_helper.rb
198
+ - spec/support/artifice/endopint_marshal_fail_basic_authentication.rb
199
+ - spec/support/artifice/endpoint.rb
200
+ - spec/support/artifice/endpoint_500.rb
201
+ - spec/support/artifice/endpoint_api_missing.rb
202
+ - spec/support/artifice/endpoint_basic_authentication.rb
203
+ - spec/support/artifice/endpoint_extra.rb
204
+ - spec/support/artifice/endpoint_extra_missing.rb
205
+ - spec/support/artifice/endpoint_fallback.rb
206
+ - spec/support/artifice/endpoint_marshal_fail.rb
207
+ - spec/support/artifice/endpoint_redirect.rb
208
+ - spec/support/builders.rb
209
+ - spec/support/fakeweb/rack-1.0.0.marshal
210
+ - spec/support/fakeweb/windows.rb
211
+ - spec/support/helpers.rb
212
+ - spec/support/indexes.rb
213
+ - spec/support/matchers.rb
214
+ - spec/support/path.rb
215
+ - spec/support/platforms.rb
216
+ - spec/support/ruby_ext.rb
217
+ - spec/support/rubygems_ext.rb
218
+ - spec/support/rubygems_hax/platform.rb
219
+ - spec/support/sudo.rb
220
+ - spec/update/gems_spec.rb
221
+ - spec/update/git_spec.rb
222
+ - spec/update/source_spec.rb
223
+ - lib/bundler/man/bundle
224
+ - lib/bundler/man/bundle-config
225
+ - lib/bundler/man/bundle-config.txt
226
+ - lib/bundler/man/bundle-exec
227
+ - lib/bundler/man/bundle-exec.txt
228
+ - lib/bundler/man/bundle-install
229
+ - lib/bundler/man/bundle-install.txt
230
+ - lib/bundler/man/bundle-package
231
+ - lib/bundler/man/bundle-package.txt
232
+ - lib/bundler/man/bundle-update
233
+ - lib/bundler/man/bundle-update.txt
234
+ - lib/bundler/man/bundle.txt
235
+ - lib/bundler/man/gemfile.5
236
+ - lib/bundler/man/gemfile.5.txt
237
+ homepage: http://gembundler.com
238
+ licenses: []
239
+ post_install_message:
240
+ rdoc_options: []
241
+ require_paths:
242
+ - lib
243
+ required_ruby_version: !ruby/object:Gem::Requirement
244
+ none: false
245
+ requirements:
246
+ - - ! '>='
247
+ - !ruby/object:Gem::Version
248
+ version: 1.8.7
249
+ required_rubygems_version: !ruby/object:Gem::Requirement
250
+ none: false
251
+ requirements:
252
+ - - ! '>='
253
+ - !ruby/object:Gem::Version
254
+ version: 1.3.6
255
+ requirements: []
256
+ rubyforge_project: bundler
257
+ rubygems_version: 1.8.11
258
+ signing_key:
259
+ specification_version: 3
260
+ summary: The best way to manage your application's dependencies
261
+ test_files:
262
+ - spec/bundler/dsl_spec.rb
263
+ - spec/bundler/gem_helper_spec.rb
264
+ - spec/bundler/source_spec.rb
265
+ - spec/cache/gems_spec.rb
266
+ - spec/cache/git_spec.rb
267
+ - spec/cache/path_spec.rb
268
+ - spec/cache/platform_spec.rb
269
+ - spec/install/deploy_spec.rb
270
+ - spec/install/gems/c_ext_spec.rb
271
+ - spec/install/gems/dependency_api_spec.rb
272
+ - spec/install/gems/env_spec.rb
273
+ - spec/install/gems/flex_spec.rb
274
+ - spec/install/gems/groups_spec.rb
275
+ - spec/install/gems/packed_spec.rb
276
+ - spec/install/gems/platform_spec.rb
277
+ - spec/install/gems/post_install_spec.rb
278
+ - spec/install/gems/resolving_spec.rb
279
+ - spec/install/gems/simple_case_spec.rb
280
+ - spec/install/gems/standalone_spec.rb
281
+ - spec/install/gems/sudo_spec.rb
282
+ - spec/install/gems/win32_spec.rb
283
+ - spec/install/gemspec_spec.rb
284
+ - spec/install/git_spec.rb
285
+ - spec/install/invalid_spec.rb
286
+ - spec/install/path_spec.rb
287
+ - spec/install/upgrade_spec.rb
288
+ - spec/lock/git_spec.rb
289
+ - spec/lock/lockfile_spec.rb
290
+ - spec/other/check_spec.rb
291
+ - spec/other/clean_spec.rb
292
+ - spec/other/config_spec.rb
293
+ - spec/other/console_spec.rb
294
+ - spec/other/exec_spec.rb
295
+ - spec/other/ext_spec.rb
296
+ - spec/other/help_spec.rb
297
+ - spec/other/init_spec.rb
298
+ - spec/other/newgem_spec.rb
299
+ - spec/other/open_spec.rb
300
+ - spec/other/outdated_spec.rb
301
+ - spec/other/platform_spec.rb
302
+ - spec/other/show_spec.rb
303
+ - spec/quality_spec.rb
304
+ - spec/realworld/edgecases_spec.rb
305
+ - spec/resolver/basic_spec.rb
306
+ - spec/resolver/platform_spec.rb
307
+ - spec/runtime/executable_spec.rb
308
+ - spec/runtime/load_spec.rb
309
+ - spec/runtime/platform_spec.rb
310
+ - spec/runtime/require_spec.rb
311
+ - spec/runtime/setup_spec.rb
312
+ - spec/runtime/with_clean_env_spec.rb
313
+ - spec/spec_helper.rb
314
+ - spec/support/artifice/endopint_marshal_fail_basic_authentication.rb
315
+ - spec/support/artifice/endpoint.rb
316
+ - spec/support/artifice/endpoint_500.rb
317
+ - spec/support/artifice/endpoint_api_missing.rb
318
+ - spec/support/artifice/endpoint_basic_authentication.rb
319
+ - spec/support/artifice/endpoint_extra.rb
320
+ - spec/support/artifice/endpoint_extra_missing.rb
321
+ - spec/support/artifice/endpoint_fallback.rb
322
+ - spec/support/artifice/endpoint_marshal_fail.rb
323
+ - spec/support/artifice/endpoint_redirect.rb
324
+ - spec/support/builders.rb
325
+ - spec/support/fakeweb/rack-1.0.0.marshal
326
+ - spec/support/fakeweb/windows.rb
327
+ - spec/support/helpers.rb
328
+ - spec/support/indexes.rb
329
+ - spec/support/matchers.rb
330
+ - spec/support/path.rb
331
+ - spec/support/platforms.rb
332
+ - spec/support/ruby_ext.rb
333
+ - spec/support/rubygems_ext.rb
334
+ - spec/support/rubygems_hax/platform.rb
335
+ - spec/support/sudo.rb
336
+ - spec/update/gems_spec.rb
337
+ - spec/update/git_spec.rb
338
+ - spec/update/source_spec.rb