bundler-prehistoric 1.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.rspec +3 -0
- data/.travis.yml +100 -0
- data/CHANGELOG.md +1640 -0
- data/CONTRIBUTING.md +32 -0
- data/DEVELOPMENT.md +117 -0
- data/Gemfile +3 -0
- data/ISSUES.md +96 -0
- data/LICENSE.md +23 -0
- data/README.md +46 -0
- data/Rakefile +256 -0
- data/UPGRADING.md +103 -0
- data/bin/bundle +21 -0
- data/bin/bundle_ruby +56 -0
- data/bin/bundler +21 -0
- data/bundler.gemspec +33 -0
- data/lib/bundler.rb +442 -0
- data/lib/bundler/backports/time.rb +7 -0
- data/lib/bundler/capistrano.rb +16 -0
- data/lib/bundler/cli.rb +395 -0
- data/lib/bundler/cli/binstubs.rb +38 -0
- data/lib/bundler/cli/cache.rb +34 -0
- data/lib/bundler/cli/check.rb +35 -0
- data/lib/bundler/cli/clean.rb +19 -0
- data/lib/bundler/cli/common.rb +54 -0
- data/lib/bundler/cli/config.rb +84 -0
- data/lib/bundler/cli/console.rb +39 -0
- data/lib/bundler/cli/exec.rb +37 -0
- data/lib/bundler/cli/gem.rb +101 -0
- data/lib/bundler/cli/init.rb +33 -0
- data/lib/bundler/cli/inject.rb +33 -0
- data/lib/bundler/cli/install.rb +133 -0
- data/lib/bundler/cli/open.rb +23 -0
- data/lib/bundler/cli/outdated.rb +80 -0
- data/lib/bundler/cli/package.rb +36 -0
- data/lib/bundler/cli/platform.rb +43 -0
- data/lib/bundler/cli/show.rb +48 -0
- data/lib/bundler/cli/update.rb +73 -0
- data/lib/bundler/cli/viz.rb +27 -0
- data/lib/bundler/constants.rb +5 -0
- data/lib/bundler/current_ruby.rb +155 -0
- data/lib/bundler/definition.rb +604 -0
- data/lib/bundler/dep_proxy.rb +43 -0
- data/lib/bundler/dependency.rb +106 -0
- data/lib/bundler/deployment.rb +59 -0
- data/lib/bundler/deprecate.rb +15 -0
- data/lib/bundler/dsl.rb +305 -0
- data/lib/bundler/endpoint_specification.rb +76 -0
- data/lib/bundler/env.rb +56 -0
- data/lib/bundler/environment.rb +42 -0
- data/lib/bundler/fetcher.rb +396 -0
- data/lib/bundler/friendly_errors.rb +42 -0
- data/lib/bundler/gem_helper.rb +169 -0
- data/lib/bundler/gem_helpers.rb +25 -0
- data/lib/bundler/gem_installer.rb +9 -0
- data/lib/bundler/gem_path_manipulation.rb +8 -0
- data/lib/bundler/gem_tasks.rb +2 -0
- data/lib/bundler/graph.rb +169 -0
- data/lib/bundler/index.rb +184 -0
- data/lib/bundler/injector.rb +64 -0
- data/lib/bundler/installer.rb +332 -0
- data/lib/bundler/lazy_specification.rb +83 -0
- data/lib/bundler/lockfile_parser.rb +146 -0
- data/lib/bundler/match_platform.rb +13 -0
- data/lib/bundler/parallel_workers.rb +18 -0
- data/lib/bundler/parallel_workers/thread_worker.rb +30 -0
- data/lib/bundler/parallel_workers/unix_worker.rb +101 -0
- data/lib/bundler/parallel_workers/worker.rb +69 -0
- data/lib/bundler/psyched_yaml.rb +26 -0
- data/lib/bundler/remote_specification.rb +57 -0
- data/lib/bundler/resolver.rb +534 -0
- data/lib/bundler/retry.rb +60 -0
- data/lib/bundler/ruby_dsl.rb +11 -0
- data/lib/bundler/ruby_version.rb +117 -0
- data/lib/bundler/rubygems_ext.rb +171 -0
- data/lib/bundler/rubygems_integration.rb +578 -0
- data/lib/bundler/runtime.rb +310 -0
- data/lib/bundler/settings.rb +176 -0
- data/lib/bundler/setup.rb +23 -0
- data/lib/bundler/shared_helpers.rb +110 -0
- data/lib/bundler/similarity_detector.rb +63 -0
- data/lib/bundler/source.rb +29 -0
- data/lib/bundler/source/git.rb +289 -0
- data/lib/bundler/source/git/git_proxy.rb +158 -0
- data/lib/bundler/source/path.rb +225 -0
- data/lib/bundler/source/path/installer.rb +38 -0
- data/lib/bundler/source/rubygems.rb +334 -0
- data/lib/bundler/source/svn.rb +260 -0
- data/lib/bundler/source/svn/svn_proxy.rb +110 -0
- data/lib/bundler/spec_set.rb +154 -0
- data/lib/bundler/ssl_certs/.document +1 -0
- data/lib/bundler/ssl_certs/Class3PublicPrimaryCertificationAuthority.pem +14 -0
- data/lib/bundler/ssl_certs/DigiCertHighAssuranceEVRootCA.pem +23 -0
- data/lib/bundler/ssl_certs/EntrustnetSecureServerCertificationAuthority.pem +28 -0
- data/lib/bundler/ssl_certs/GeoTrustGlobalCA.pem +20 -0
- data/lib/bundler/ssl_certs/certificate_manager.rb +41 -0
- data/lib/bundler/templates/Executable +16 -0
- data/lib/bundler/templates/Executable.standalone +12 -0
- data/lib/bundler/templates/Gemfile +4 -0
- data/lib/bundler/templates/newgem/.travis.yml.tt +3 -0
- data/lib/bundler/templates/newgem/Gemfile.tt +4 -0
- data/lib/bundler/templates/newgem/LICENSE.txt.tt +22 -0
- data/lib/bundler/templates/newgem/README.md.tt +31 -0
- data/lib/bundler/templates/newgem/Rakefile.tt +26 -0
- data/lib/bundler/templates/newgem/bin/newgem.tt +3 -0
- data/lib/bundler/templates/newgem/consolerc.tt +3 -0
- data/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +3 -0
- data/lib/bundler/templates/newgem/ext/newgem/newgem.c.tt +9 -0
- data/lib/bundler/templates/newgem/ext/newgem/newgem.h.tt +6 -0
- data/lib/bundler/templates/newgem/gitignore.tt +16 -0
- data/lib/bundler/templates/newgem/lib/newgem.rb.tt +12 -0
- data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +7 -0
- data/lib/bundler/templates/newgem/newgem.gemspec.tt +38 -0
- data/lib/bundler/templates/newgem/rspec.tt +2 -0
- data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +11 -0
- data/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -0
- data/lib/bundler/templates/newgem/test/minitest_helper.rb.tt +4 -0
- data/lib/bundler/templates/newgem/test/test_newgem.rb.tt +11 -0
- data/lib/bundler/ui.rb +7 -0
- data/lib/bundler/ui/rg_proxy.rb +21 -0
- data/lib/bundler/ui/shell.rb +98 -0
- data/lib/bundler/ui/silent.rb +44 -0
- data/lib/bundler/vendor/.document +0 -0
- data/lib/bundler/vendor/net/http/faster.rb +26 -0
- data/lib/bundler/vendor/net/http/persistent.rb +1230 -0
- data/lib/bundler/vendor/net/http/persistent/ssl_reuse.rb +128 -0
- data/lib/bundler/vendor/thor.rb +480 -0
- data/lib/bundler/vendor/thor/actions.rb +319 -0
- data/lib/bundler/vendor/thor/actions/create_file.rb +103 -0
- data/lib/bundler/vendor/thor/actions/create_link.rb +59 -0
- data/lib/bundler/vendor/thor/actions/directory.rb +118 -0
- data/lib/bundler/vendor/thor/actions/empty_directory.rb +135 -0
- data/lib/bundler/vendor/thor/actions/file_manipulation.rb +316 -0
- data/lib/bundler/vendor/thor/actions/inject_into_file.rb +107 -0
- data/lib/bundler/vendor/thor/base.rb +656 -0
- data/lib/bundler/vendor/thor/command.rb +133 -0
- data/lib/bundler/vendor/thor/core_ext/hash_with_indifferent_access.rb +77 -0
- data/lib/bundler/vendor/thor/core_ext/io_binary_read.rb +10 -0
- data/lib/bundler/vendor/thor/core_ext/ordered_hash.rb +98 -0
- data/lib/bundler/vendor/thor/error.rb +32 -0
- data/lib/bundler/vendor/thor/group.rb +281 -0
- data/lib/bundler/vendor/thor/invocation.rb +173 -0
- data/lib/bundler/vendor/thor/line_editor.rb +17 -0
- data/lib/bundler/vendor/thor/line_editor/basic.rb +35 -0
- data/lib/bundler/vendor/thor/line_editor/readline.rb +88 -0
- data/lib/bundler/vendor/thor/parser.rb +4 -0
- data/lib/bundler/vendor/thor/parser/argument.rb +73 -0
- data/lib/bundler/vendor/thor/parser/arguments.rb +175 -0
- data/lib/bundler/vendor/thor/parser/option.rb +121 -0
- data/lib/bundler/vendor/thor/parser/options.rb +218 -0
- data/lib/bundler/vendor/thor/rake_compat.rb +71 -0
- data/lib/bundler/vendor/thor/runner.rb +322 -0
- data/lib/bundler/vendor/thor/shell.rb +81 -0
- data/lib/bundler/vendor/thor/shell/basic.rb +420 -0
- data/lib/bundler/vendor/thor/shell/color.rb +149 -0
- data/lib/bundler/vendor/thor/shell/html.rb +126 -0
- data/lib/bundler/vendor/thor/util.rb +267 -0
- data/lib/bundler/vendor/thor/version.rb +3 -0
- data/lib/bundler/vendored_persistent.rb +3 -0
- data/lib/bundler/vendored_thor.rb +8 -0
- data/lib/bundler/version.rb +6 -0
- data/lib/bundler/vlad.rb +11 -0
- data/man/bundle-config.ronn +155 -0
- data/man/bundle-exec.ronn +136 -0
- data/man/bundle-install.ronn +372 -0
- data/man/bundle-package.ronn +59 -0
- data/man/bundle-platform.ronn +42 -0
- data/man/bundle-update.ronn +179 -0
- data/man/bundle.ronn +92 -0
- data/man/gemfile.5.ronn +369 -0
- data/man/index.txt +7 -0
- data/spec/bundler/bundler_spec.rb +74 -0
- data/spec/bundler/cli_spec.rb +16 -0
- data/spec/bundler/definition_spec.rb +21 -0
- data/spec/bundler/dsl_spec.rb +108 -0
- data/spec/bundler/friendly_errors_spec.rb +13 -0
- data/spec/bundler/gem_helper_spec.rb +225 -0
- data/spec/bundler/psyched_yaml_spec.rb +8 -0
- data/spec/bundler/retry_spec.rb +59 -0
- data/spec/bundler/settings_spec.rb +13 -0
- data/spec/bundler/source_spec.rb +25 -0
- data/spec/cache/gems_spec.rb +316 -0
- data/spec/cache/git_spec.rb +188 -0
- data/spec/cache/path_spec.rb +121 -0
- data/spec/cache/platform_spec.rb +53 -0
- data/spec/cache/svn_spec.rb +82 -0
- data/spec/commands/binstubs_spec.rb +246 -0
- data/spec/commands/check_spec.rb +278 -0
- data/spec/commands/clean_spec.rb +652 -0
- data/spec/commands/config_spec.rb +227 -0
- data/spec/commands/console_spec.rb +102 -0
- data/spec/commands/exec_spec.rb +367 -0
- data/spec/commands/help_spec.rb +39 -0
- data/spec/commands/init_spec.rb +39 -0
- data/spec/commands/inject_spec.rb +78 -0
- data/spec/commands/licenses_spec.rb +31 -0
- data/spec/commands/newgem_spec.rb +451 -0
- data/spec/commands/open_spec.rb +80 -0
- data/spec/commands/outdated_spec.rb +168 -0
- data/spec/commands/package_spec.rb +128 -0
- data/spec/commands/show_spec.rb +152 -0
- data/spec/install/binstubs_spec.rb +24 -0
- data/spec/install/bundler_spec.rb +146 -0
- data/spec/install/deploy_spec.rb +237 -0
- data/spec/install/gemfile/gemspec_spec.rb +170 -0
- data/spec/install/gemfile/git_spec.rb +967 -0
- data/spec/install/gemfile/path_spec.rb +480 -0
- data/spec/install/gemfile/svn_spec.rb +582 -0
- data/spec/install/gemfile_spec.rb +44 -0
- data/spec/install/gems/c_ext_spec.rb +48 -0
- data/spec/install/gems/dependency_api_spec.rb +580 -0
- data/spec/install/gems/env_spec.rb +107 -0
- data/spec/install/gems/flex_spec.rb +314 -0
- data/spec/install/gems/groups_spec.rb +308 -0
- data/spec/install/gems/mirror_spec.rb +39 -0
- data/spec/install/gems/platform_spec.rb +221 -0
- data/spec/install/gems/post_install_spec.rb +121 -0
- data/spec/install/gems/resolving_spec.rb +124 -0
- data/spec/install/gems/simple_case_spec.rb +386 -0
- data/spec/install/gems/standalone_spec.rb +260 -0
- data/spec/install/gems/sudo_spec.rb +136 -0
- data/spec/install/gems/win32_spec.rb +26 -0
- data/spec/install/gemspecs_spec.rb +50 -0
- data/spec/install/path_spec.rb +150 -0
- data/spec/install/post_bundle_message_spec.rb +142 -0
- data/spec/install/prereleases_spec.rb +43 -0
- data/spec/install/security_policy_spec.rb +77 -0
- data/spec/install/upgrade_spec.rb +26 -0
- data/spec/lock/git_spec.rb +34 -0
- data/spec/lock/lockfile_spec.rb +912 -0
- data/spec/lock/svn_spec.rb +35 -0
- data/spec/other/bundle_ruby_spec.rb +142 -0
- data/spec/other/cli_dispatch_spec.rb +21 -0
- data/spec/other/ext_spec.rb +60 -0
- data/spec/other/platform_spec.rb +1285 -0
- data/spec/other/ssl_cert_spec.rb +10 -0
- data/spec/quality_spec.rb +88 -0
- data/spec/realworld/dependency_api_spec.rb +60 -0
- data/spec/realworld/edgecases_spec.rb +177 -0
- data/spec/realworld/parallel_spec.rb +69 -0
- data/spec/resolver/basic_spec.rb +66 -0
- data/spec/resolver/platform_spec.rb +88 -0
- data/spec/runtime/executable_spec.rb +149 -0
- data/spec/runtime/load_spec.rb +107 -0
- data/spec/runtime/platform_spec.rb +90 -0
- data/spec/runtime/require_spec.rb +332 -0
- data/spec/runtime/setup_spec.rb +856 -0
- data/spec/runtime/with_clean_env_spec.rb +91 -0
- data/spec/spec_helper.rb +114 -0
- data/spec/support/artifice/endopint_marshal_fail_basic_authentication.rb +13 -0
- data/spec/support/artifice/endpoint.rb +71 -0
- data/spec/support/artifice/endpoint_500.rb +37 -0
- data/spec/support/artifice/endpoint_api_missing.rb +16 -0
- data/spec/support/artifice/endpoint_basic_authentication.rb +13 -0
- data/spec/support/artifice/endpoint_creds_diff_host.rb +38 -0
- data/spec/support/artifice/endpoint_extra.rb +31 -0
- data/spec/support/artifice/endpoint_extra_missing.rb +15 -0
- data/spec/support/artifice/endpoint_fallback.rb +17 -0
- data/spec/support/artifice/endpoint_host_redirect.rb +15 -0
- data/spec/support/artifice/endpoint_marshal_fail.rb +11 -0
- data/spec/support/artifice/endpoint_redirect.rb +15 -0
- data/spec/support/artifice/endpoint_strict_basic_authentication.rb +18 -0
- data/spec/support/artifice/endpoint_timeout.rb +13 -0
- data/spec/support/builders.rb +748 -0
- data/spec/support/fakeweb/rack-1.0.0.marshal +2 -0
- data/spec/support/fakeweb/windows.rb +23 -0
- data/spec/support/hax.rb +22 -0
- data/spec/support/helpers.rb +348 -0
- data/spec/support/indexes.rb +280 -0
- data/spec/support/less_than_proc.rb +14 -0
- data/spec/support/matchers.rb +77 -0
- data/spec/support/path.rb +81 -0
- data/spec/support/permissions.rb +10 -0
- data/spec/support/platforms.rb +94 -0
- data/spec/support/ruby_ext.rb +20 -0
- data/spec/support/rubygems_ext.rb +39 -0
- data/spec/support/streams.rb +13 -0
- data/spec/support/sudo.rb +16 -0
- data/spec/update/gems_spec.rb +201 -0
- data/spec/update/git_spec.rb +236 -0
- data/spec/update/source_spec.rb +63 -0
- data/spec/update/svn_spec.rb +100 -0
- metadata +486 -0
@@ -0,0 +1,582 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
|
3
|
+
describe "bundle install with svn sources" do
|
4
|
+
describe "when floating on master" do
|
5
|
+
before :each do
|
6
|
+
build_svn "foo" do |s|
|
7
|
+
s.executables = "foobar"
|
8
|
+
end
|
9
|
+
|
10
|
+
install_gemfile <<-G
|
11
|
+
source "file://#{gem_repo1}"
|
12
|
+
svn "file://#{lib_path('foo-1.0')}" do
|
13
|
+
gem 'foo'
|
14
|
+
end
|
15
|
+
G
|
16
|
+
end
|
17
|
+
|
18
|
+
it "sets up svn gem executables on the path" do
|
19
|
+
pending_jruby_shebang_fix
|
20
|
+
bundle "exec foobar"
|
21
|
+
expect(out).to eq("1.0")
|
22
|
+
end
|
23
|
+
|
24
|
+
it "complains if pinned specs don't exist in the svn repo" do
|
25
|
+
build_svn "foo"
|
26
|
+
|
27
|
+
install_gemfile <<-G
|
28
|
+
gem "foo", "1.1", :svn => "file://#{lib_path('foo-1.0')}"
|
29
|
+
G
|
30
|
+
|
31
|
+
expect(out).to include("Source contains 'foo' at: 1.0")
|
32
|
+
end
|
33
|
+
|
34
|
+
it "still works after moving the application directory" do
|
35
|
+
bundle "install --path vendor/bundle"
|
36
|
+
FileUtils.mv bundled_app, tmp('bundled_app.bck')
|
37
|
+
|
38
|
+
Dir.chdir tmp('bundled_app.bck')
|
39
|
+
should_be_installed "foo 1.0"
|
40
|
+
end
|
41
|
+
|
42
|
+
it "can still install after moving the application directory" do
|
43
|
+
bundle "install --path vendor/bundle"
|
44
|
+
FileUtils.mv bundled_app, tmp('bundled_app.bck')
|
45
|
+
|
46
|
+
update_svn "foo", "1.1", :path => lib_path("foo-1.0")
|
47
|
+
|
48
|
+
Dir.chdir tmp('bundled_app.bck')
|
49
|
+
gemfile tmp('bundled_app.bck/Gemfile'), <<-G
|
50
|
+
source "file://#{gem_repo1}"
|
51
|
+
svn "file://#{lib_path('foo-1.0')}" do
|
52
|
+
gem 'foo'
|
53
|
+
end
|
54
|
+
|
55
|
+
gem "rack", "1.0"
|
56
|
+
G
|
57
|
+
|
58
|
+
bundle "update foo"
|
59
|
+
|
60
|
+
should_be_installed "foo 1.1", "rack 1.0"
|
61
|
+
end
|
62
|
+
|
63
|
+
end
|
64
|
+
|
65
|
+
describe "with an empty svn block" do
|
66
|
+
before do
|
67
|
+
build_svn "foo"
|
68
|
+
gemfile <<-G
|
69
|
+
source "file://#{gem_repo1}"
|
70
|
+
gem "rack"
|
71
|
+
|
72
|
+
svn "file://#{lib_path("foo-1.0")}" do
|
73
|
+
# this page left intentionally blank
|
74
|
+
end
|
75
|
+
G
|
76
|
+
end
|
77
|
+
|
78
|
+
it "does not explode" do
|
79
|
+
bundle "install"
|
80
|
+
should_be_installed "rack 1.0"
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
describe "when specifying a revision" do
|
85
|
+
before(:each) do
|
86
|
+
build_svn "foo"
|
87
|
+
@revision = 1
|
88
|
+
update_svn "foo" do |s|
|
89
|
+
s.write "lib/foo.rb", "puts :CACHE"
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
it "works" do
|
94
|
+
install_gemfile <<-G
|
95
|
+
svn "file://#{lib_path('foo-1.0')}", :ref => "#{@revision}" do
|
96
|
+
gem "foo"
|
97
|
+
end
|
98
|
+
G
|
99
|
+
|
100
|
+
run <<-RUBY
|
101
|
+
require 'foo'
|
102
|
+
RUBY
|
103
|
+
|
104
|
+
expect(out).not_to eq("CACHE")
|
105
|
+
end
|
106
|
+
end
|
107
|
+
|
108
|
+
describe "when specifying local override" do
|
109
|
+
it "uses the local repository instead of checking a new one out" do
|
110
|
+
# We don't generate it because we actually don't need it
|
111
|
+
# build_svn "rack", "0.8"
|
112
|
+
|
113
|
+
build_svn "rack", "0.8", :path => lib_path('local-rack') do |s|
|
114
|
+
s.write "lib/rack.rb", "puts :LOCAL"
|
115
|
+
end
|
116
|
+
|
117
|
+
gemfile <<-G
|
118
|
+
source "file://#{gem_repo1}"
|
119
|
+
gem "rack", :svn => "file://#{lib_path('rack-0.8')}"
|
120
|
+
G
|
121
|
+
|
122
|
+
bundle %|config local.rack #{File.join(lib_path('local-rack'), '.checkout')}|
|
123
|
+
bundle :install
|
124
|
+
expect(out).to match(/at #{File.join(lib_path('local-rack'), '.checkout')}/)
|
125
|
+
|
126
|
+
run "require 'rack'"
|
127
|
+
expect(out).to eq("LOCAL")
|
128
|
+
end
|
129
|
+
|
130
|
+
it "chooses the local repository on runtime" do
|
131
|
+
build_svn "rack", "0.8"
|
132
|
+
|
133
|
+
FileUtils.cp_r("#{lib_path('rack-0.8')}/.", lib_path('local-rack'))
|
134
|
+
|
135
|
+
update_svn "rack", "0.8", :path => lib_path('local-rack') do |s|
|
136
|
+
s.write "lib/rack.rb", "puts :LOCAL"
|
137
|
+
end
|
138
|
+
|
139
|
+
install_gemfile <<-G
|
140
|
+
source "file://#{gem_repo1}"
|
141
|
+
gem "rack", :svn => "file://#{lib_path('rack-0.8')}"
|
142
|
+
G
|
143
|
+
|
144
|
+
bundle %|config local.rack #{File.join(lib_path('local-rack'), '.checkout')}|
|
145
|
+
run "require 'rack'"
|
146
|
+
expect(out).to eq("LOCAL")
|
147
|
+
end
|
148
|
+
|
149
|
+
it "updates specs on runtime" do
|
150
|
+
system_gems "nokogiri-1.4.2"
|
151
|
+
|
152
|
+
build_svn "rack", "0.8"
|
153
|
+
|
154
|
+
install_gemfile <<-G
|
155
|
+
source "file://#{gem_repo1}"
|
156
|
+
gem "rack", :svn => "file://#{lib_path('rack-0.8')}"
|
157
|
+
G
|
158
|
+
|
159
|
+
lockfile0 = File.read(bundled_app("Gemfile.lock"))
|
160
|
+
|
161
|
+
FileUtils.cp_r("#{lib_path('rack-0.8')}/.", lib_path('local-rack'))
|
162
|
+
update_svn "rack", "0.8", :path => lib_path('local-rack') do |s|
|
163
|
+
s.add_dependency "nokogiri", "1.4.2"
|
164
|
+
end
|
165
|
+
|
166
|
+
bundle %|config local.rack #{File.join(lib_path('local-rack'), '.checkout')}|
|
167
|
+
run "require 'rack'"
|
168
|
+
|
169
|
+
lockfile1 = File.read(bundled_app("Gemfile.lock"))
|
170
|
+
expect(lockfile1).not_to eq(lockfile0)
|
171
|
+
end
|
172
|
+
|
173
|
+
it "updates ref on install" do
|
174
|
+
build_svn "rack", "0.8"
|
175
|
+
|
176
|
+
install_gemfile <<-G
|
177
|
+
source "file://#{gem_repo1}"
|
178
|
+
gem "rack", :svn => "file://#{lib_path('rack-0.8')}"
|
179
|
+
G
|
180
|
+
|
181
|
+
lockfile0 = File.read(bundled_app("Gemfile.lock"))
|
182
|
+
|
183
|
+
FileUtils.cp_r("#{lib_path('rack-0.8')}/.", lib_path('local-rack'))
|
184
|
+
update_svn "rack", "0.8", :path => lib_path('local-rack')
|
185
|
+
|
186
|
+
bundle %|config local.rack #{File.join(lib_path('local-rack'), '.checkout')}|
|
187
|
+
bundle :install
|
188
|
+
|
189
|
+
lockfile1 = File.read(bundled_app("Gemfile.lock"))
|
190
|
+
expect(lockfile1).not_to eq(lockfile0)
|
191
|
+
end
|
192
|
+
|
193
|
+
it "explodes if given path does not exist on install" do
|
194
|
+
build_svn "rack", "0.8"
|
195
|
+
|
196
|
+
install_gemfile <<-G
|
197
|
+
source "file://#{gem_repo1}"
|
198
|
+
gem "rack", :svn => "file://#{lib_path('rack-0.8')}"
|
199
|
+
G
|
200
|
+
|
201
|
+
bundle %|config local.rack #{File.join(lib_path('local-rack'), '.checkout')}|
|
202
|
+
bundle :install
|
203
|
+
expect(out).to match(/Cannot use local override for rack-0.8 because #{Regexp.escape(File.join(lib_path('local-rack'), '.checkout').to_s)} does not exist/)
|
204
|
+
end
|
205
|
+
end
|
206
|
+
|
207
|
+
describe "specified inline" do
|
208
|
+
it "installs from svn even if a newer gem is available elsewhere" do
|
209
|
+
build_svn "rack", "0.8"
|
210
|
+
|
211
|
+
install_gemfile <<-G
|
212
|
+
source "file://#{gem_repo1}"
|
213
|
+
gem "rack", :svn => "file://#{lib_path('rack-0.8')}"
|
214
|
+
G
|
215
|
+
|
216
|
+
should_be_installed "rack 0.8"
|
217
|
+
end
|
218
|
+
|
219
|
+
it "installs dependencies from svn even if a newer gem is available elsewhere" do
|
220
|
+
system_gems "rack-1.0.0"
|
221
|
+
|
222
|
+
build_lib "rack", "1.0", :path => lib_path('nested/bar') do |s|
|
223
|
+
s.write "lib/rack.rb", "puts 'WIN OVERRIDE'"
|
224
|
+
end
|
225
|
+
|
226
|
+
build_svn "foo", :path => lib_path('nested') do |s|
|
227
|
+
s.add_dependency "rack", "= 1.0"
|
228
|
+
end
|
229
|
+
|
230
|
+
install_gemfile <<-G
|
231
|
+
source "file://#{gem_repo1}"
|
232
|
+
gem "foo", :svn => "file://#{lib_path('nested')}"
|
233
|
+
G
|
234
|
+
|
235
|
+
run "require 'rack'"
|
236
|
+
expect(out).to eq('WIN OVERRIDE')
|
237
|
+
end
|
238
|
+
|
239
|
+
it "correctly unlocks when changing to a svn source" do
|
240
|
+
install_gemfile <<-G
|
241
|
+
source "file://#{gem_repo1}"
|
242
|
+
gem "rack", "0.9.1"
|
243
|
+
G
|
244
|
+
|
245
|
+
build_svn "rack", :path => lib_path("rack")
|
246
|
+
|
247
|
+
install_gemfile <<-G
|
248
|
+
source "file://#{gem_repo1}"
|
249
|
+
gem "rack", "1.0.0", :svn => "file://#{lib_path('rack')}"
|
250
|
+
G
|
251
|
+
|
252
|
+
should_be_installed "rack 1.0.0"
|
253
|
+
end
|
254
|
+
|
255
|
+
it "correctly unlocks when changing to a svn source without versions" do
|
256
|
+
install_gemfile <<-G
|
257
|
+
source "file://#{gem_repo1}"
|
258
|
+
gem "rack"
|
259
|
+
G
|
260
|
+
|
261
|
+
build_svn "rack", "1.2", :path => lib_path("rack")
|
262
|
+
|
263
|
+
install_gemfile <<-G
|
264
|
+
source "file://#{gem_repo1}"
|
265
|
+
gem "rack", :svn => "file://#{lib_path('rack')}"
|
266
|
+
G
|
267
|
+
|
268
|
+
should_be_installed "rack 1.2"
|
269
|
+
end
|
270
|
+
end
|
271
|
+
|
272
|
+
describe "block syntax" do
|
273
|
+
it "pulls all gems from a svn block" do
|
274
|
+
build_lib "omg", :path => lib_path('hi2u/omg')
|
275
|
+
build_lib "hi2u", :path => lib_path('hi2u')
|
276
|
+
|
277
|
+
install_gemfile <<-G
|
278
|
+
path "#{lib_path('hi2u')}" do
|
279
|
+
gem "omg"
|
280
|
+
gem "hi2u"
|
281
|
+
end
|
282
|
+
G
|
283
|
+
|
284
|
+
should_be_installed "omg 1.0", "hi2u 1.0"
|
285
|
+
end
|
286
|
+
end
|
287
|
+
|
288
|
+
it "uses a ref if specified" do
|
289
|
+
build_svn "foo"
|
290
|
+
@revision = 1
|
291
|
+
update_svn "foo" do |s|
|
292
|
+
s.write "lib/foo.rb", "puts :CACHE"
|
293
|
+
end
|
294
|
+
|
295
|
+
install_gemfile <<-G
|
296
|
+
gem "foo", :svn => "file://#{lib_path('foo-1.0')}", :ref => "#{@revision}"
|
297
|
+
G
|
298
|
+
|
299
|
+
run <<-RUBY
|
300
|
+
require 'foo'
|
301
|
+
RUBY
|
302
|
+
|
303
|
+
expect(out).not_to eq("CACHE")
|
304
|
+
end
|
305
|
+
|
306
|
+
it "correctly handles cases with invalid gemspecs" do
|
307
|
+
build_svn "foo" do |s|
|
308
|
+
s.summary = nil
|
309
|
+
end
|
310
|
+
|
311
|
+
install_gemfile <<-G
|
312
|
+
source "file://#{gem_repo1}"
|
313
|
+
gem "foo", :svn => "file://#{lib_path('foo-1.0')}"
|
314
|
+
gem "rails", "2.3.2"
|
315
|
+
G
|
316
|
+
|
317
|
+
should_be_installed "foo 1.0"
|
318
|
+
should_be_installed "rails 2.3.2"
|
319
|
+
end
|
320
|
+
|
321
|
+
it "runs the gemspec in the context of its parent directory" do
|
322
|
+
build_lib "bar", :path => lib_path("foo/bar"), :gemspec => false do |s|
|
323
|
+
s.write lib_path("foo/bar/lib/version.rb"), %{BAR_VERSION = '1.0'}
|
324
|
+
s.write "bar.gemspec", <<-G
|
325
|
+
$:.unshift Dir.pwd # For 1.9
|
326
|
+
require 'lib/version'
|
327
|
+
Gem::Specification.new do |s|
|
328
|
+
s.name = 'bar'
|
329
|
+
s.version = BAR_VERSION
|
330
|
+
s.summary = 'Bar'
|
331
|
+
s.files = Dir["lib/**/*.rb"]
|
332
|
+
end
|
333
|
+
G
|
334
|
+
end
|
335
|
+
|
336
|
+
build_svn "foo", :path => lib_path("foo") do |s|
|
337
|
+
s.write "bin/foo", ""
|
338
|
+
end
|
339
|
+
|
340
|
+
install_gemfile <<-G
|
341
|
+
source "file://#{gem_repo1}"
|
342
|
+
gem "bar", :svn => "file://#{lib_path("foo")}"
|
343
|
+
gem "rails", "2.3.2"
|
344
|
+
G
|
345
|
+
|
346
|
+
should_be_installed "bar 1.0"
|
347
|
+
should_be_installed "rails 2.3.2"
|
348
|
+
end
|
349
|
+
|
350
|
+
it "installs from svn even if a rubygems gem is present" do
|
351
|
+
build_gem "foo", "1.0", :path => lib_path('fake_foo'), :to_system => true do |s|
|
352
|
+
s.write "lib/foo.rb", "raise 'FAIL'"
|
353
|
+
end
|
354
|
+
|
355
|
+
build_svn "foo", "1.0"
|
356
|
+
|
357
|
+
install_gemfile <<-G
|
358
|
+
gem "foo", "1.0", :svn => "file://#{lib_path('foo-1.0')}"
|
359
|
+
G
|
360
|
+
|
361
|
+
should_be_installed "foo 1.0"
|
362
|
+
end
|
363
|
+
|
364
|
+
it "fakes the gem out if there is no gemspec" do
|
365
|
+
build_svn "foo", :gemspec => false
|
366
|
+
|
367
|
+
install_gemfile <<-G
|
368
|
+
source "file://#{gem_repo1}"
|
369
|
+
gem "foo", "1.0", :svn => "file://#{lib_path('foo-1.0')}"
|
370
|
+
gem "rails", "2.3.2"
|
371
|
+
G
|
372
|
+
|
373
|
+
should_be_installed("foo 1.0")
|
374
|
+
should_be_installed("rails 2.3.2")
|
375
|
+
end
|
376
|
+
|
377
|
+
it "catches svn errors and spits out useful output" do
|
378
|
+
gemfile <<-G
|
379
|
+
gem "foo", "1.0", :svn => "omgomg"
|
380
|
+
G
|
381
|
+
|
382
|
+
bundle :install, :expect_err => true
|
383
|
+
|
384
|
+
expect(out).to include("SVN error:")
|
385
|
+
expect(err).to include("omgomg")
|
386
|
+
end
|
387
|
+
|
388
|
+
it "doesn't blow up if bundle install is run twice in a row" do
|
389
|
+
build_svn "foo"
|
390
|
+
|
391
|
+
gemfile <<-G
|
392
|
+
gem "foo", :svn => "file://#{lib_path('foo-1.0')}"
|
393
|
+
G
|
394
|
+
|
395
|
+
bundle "install"
|
396
|
+
bundle "install", :exitstatus => true
|
397
|
+
expect(exitstatus).to eq(0)
|
398
|
+
end
|
399
|
+
|
400
|
+
it "does not duplicate svn gem sources" do
|
401
|
+
build_lib "foo", :path => lib_path('nested/foo')
|
402
|
+
build_lib "bar", :path => lib_path('nested/bar')
|
403
|
+
|
404
|
+
build_svn "foo", :path => lib_path('nested')
|
405
|
+
build_svn "bar", :path => lib_path('nested')
|
406
|
+
|
407
|
+
gemfile <<-G
|
408
|
+
gem "foo", :svn => "file://#{lib_path('nested')}"
|
409
|
+
gem "bar", :svn => "file://#{lib_path('nested')}"
|
410
|
+
G
|
411
|
+
|
412
|
+
bundle "install"
|
413
|
+
expect(File.read(bundled_app("Gemfile.lock")).scan('SVN').size).to eq(1)
|
414
|
+
end
|
415
|
+
|
416
|
+
describe "bundle install after the remote has been updated" do
|
417
|
+
it "installs" do
|
418
|
+
build_svn "valim"
|
419
|
+
|
420
|
+
install_gemfile <<-G
|
421
|
+
gem "valim", :svn => "file://#{lib_path("valim-1.0")}"
|
422
|
+
G
|
423
|
+
|
424
|
+
old_revision = "1"
|
425
|
+
update_svn "valim" do |s|
|
426
|
+
s.write "lib/valim.rb", "puts #{old_revision}"
|
427
|
+
end
|
428
|
+
new_revision = "2"
|
429
|
+
|
430
|
+
lockfile = File.read(bundled_app("Gemfile.lock"))
|
431
|
+
File.open(bundled_app("Gemfile.lock"), "w") do |file|
|
432
|
+
file.puts lockfile.gsub(/revision: #{old_revision}/, "revision: #{new_revision}")
|
433
|
+
end
|
434
|
+
|
435
|
+
bundle "install"
|
436
|
+
|
437
|
+
run <<-R
|
438
|
+
require "valim"
|
439
|
+
R
|
440
|
+
|
441
|
+
expect(out).to eq(old_revision)
|
442
|
+
end
|
443
|
+
end
|
444
|
+
|
445
|
+
describe "bundle install --deployment with svn sources" do
|
446
|
+
it "works" do
|
447
|
+
build_svn "valim", :path => lib_path('valim')
|
448
|
+
|
449
|
+
install_gemfile <<-G
|
450
|
+
source "file://#{gem_repo1}"
|
451
|
+
gem "valim", "= 1.0", :svn => "file://#{lib_path('valim')}"
|
452
|
+
G
|
453
|
+
|
454
|
+
simulate_new_machine
|
455
|
+
|
456
|
+
bundle "install --deployment", :exitstatus => true
|
457
|
+
expect(exitstatus).to eq(0)
|
458
|
+
end
|
459
|
+
end
|
460
|
+
|
461
|
+
describe "gem install hooks" do
|
462
|
+
it "runs pre-install hooks" do
|
463
|
+
build_svn "foo"
|
464
|
+
gemfile <<-G
|
465
|
+
gem "foo", :svn => "file://#{lib_path('foo-1.0')}"
|
466
|
+
G
|
467
|
+
|
468
|
+
File.open(lib_path("install_hooks.rb"), "w") do |h|
|
469
|
+
h.write <<-H
|
470
|
+
require 'rubygems'
|
471
|
+
Gem.pre_install_hooks << lambda do |inst|
|
472
|
+
STDERR.puts "Ran pre-install hook: \#{inst.spec.full_name}"
|
473
|
+
end
|
474
|
+
H
|
475
|
+
end
|
476
|
+
|
477
|
+
bundle :install, :expect_err => true,
|
478
|
+
:requires => [lib_path('install_hooks.rb')]
|
479
|
+
expect(err).to eq("Ran pre-install hook: foo-1.0")
|
480
|
+
end
|
481
|
+
|
482
|
+
it "runs post-install hooks" do
|
483
|
+
build_svn "foo"
|
484
|
+
gemfile <<-G
|
485
|
+
gem "foo", :svn => "file://#{lib_path('foo-1.0')}"
|
486
|
+
G
|
487
|
+
|
488
|
+
File.open(lib_path("install_hooks.rb"), "w") do |h|
|
489
|
+
h.write <<-H
|
490
|
+
require 'rubygems'
|
491
|
+
Gem.post_install_hooks << lambda do |inst|
|
492
|
+
STDERR.puts "Ran post-install hook: \#{inst.spec.full_name}"
|
493
|
+
end
|
494
|
+
H
|
495
|
+
end
|
496
|
+
|
497
|
+
bundle :install, :expect_err => true,
|
498
|
+
:requires => [lib_path('install_hooks.rb')]
|
499
|
+
expect(err).to eq("Ran post-install hook: foo-1.0")
|
500
|
+
end
|
501
|
+
|
502
|
+
it "complains if the install hook fails" do
|
503
|
+
build_svn "foo"
|
504
|
+
gemfile <<-G
|
505
|
+
gem "foo", :svn => "file://#{lib_path('foo-1.0')}"
|
506
|
+
G
|
507
|
+
|
508
|
+
File.open(lib_path("install_hooks.rb"), "w") do |h|
|
509
|
+
h.write <<-H
|
510
|
+
require 'rubygems'
|
511
|
+
Gem.pre_install_hooks << lambda do |inst|
|
512
|
+
false
|
513
|
+
end
|
514
|
+
H
|
515
|
+
end
|
516
|
+
|
517
|
+
bundle :install, :expect_err => true,
|
518
|
+
:requires => [lib_path('install_hooks.rb')]
|
519
|
+
expect(out).to include("failed for foo-1.0")
|
520
|
+
end
|
521
|
+
end
|
522
|
+
|
523
|
+
context "with an extension" do
|
524
|
+
it "installs the extension" do
|
525
|
+
build_svn "foo" do |s|
|
526
|
+
s.add_dependency "rake"
|
527
|
+
s.extensions << "Rakefile"
|
528
|
+
s.write "Rakefile", <<-RUBY
|
529
|
+
task :default do
|
530
|
+
path = File.expand_path("../lib", __FILE__)
|
531
|
+
FileUtils.mkdir_p(path)
|
532
|
+
File.open("\#{path}/foo.rb", "w") do |f|
|
533
|
+
f.puts "FOO = 'YES'"
|
534
|
+
end
|
535
|
+
end
|
536
|
+
RUBY
|
537
|
+
end
|
538
|
+
|
539
|
+
install_gemfile <<-G
|
540
|
+
source "file://#{gem_repo1}"
|
541
|
+
gem "foo", :svn => "file://#{lib_path('foo-1.0')}"
|
542
|
+
G
|
543
|
+
|
544
|
+
run <<-R
|
545
|
+
require 'foo'
|
546
|
+
puts FOO
|
547
|
+
R
|
548
|
+
expect(out).to eq("YES")
|
549
|
+
end
|
550
|
+
end
|
551
|
+
|
552
|
+
describe "without svn installed" do
|
553
|
+
it "prints a better error message" do
|
554
|
+
build_svn "foo"
|
555
|
+
|
556
|
+
install_gemfile <<-G
|
557
|
+
svn "file://#{lib_path('foo-1.0')}" do
|
558
|
+
gem 'foo'
|
559
|
+
end
|
560
|
+
G
|
561
|
+
|
562
|
+
bundle "update", :env => {"PATH" => ""}
|
563
|
+
expect(out).to include("You need to install svn to be able to use gems from svn repositories. For help installing svn, please refer to SVNook's tutorial at http://svnbook.red-bean.com/en/1.7/svn.intro.install.html")
|
564
|
+
end
|
565
|
+
|
566
|
+
it "installs a packaged svn gem successfully" do
|
567
|
+
build_svn "foo"
|
568
|
+
|
569
|
+
install_gemfile <<-G
|
570
|
+
svn "file://#{lib_path('foo-1.0')}" do
|
571
|
+
gem 'foo'
|
572
|
+
end
|
573
|
+
G
|
574
|
+
bundle "package --all"
|
575
|
+
simulate_new_machine
|
576
|
+
|
577
|
+
bundle "install", :env => {"PATH" => ""}, :exitstatus => true
|
578
|
+
expect(out).to_not include("You need to install svn to be able to use gems from svn repositories.")
|
579
|
+
expect(exitstatus).to be_zero
|
580
|
+
end
|
581
|
+
end
|
582
|
+
end
|