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
data/man/index.txt
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'spec_helper'
|
3
|
+
require 'bundler'
|
4
|
+
|
5
|
+
describe Bundler do
|
6
|
+
describe "#load_gemspec_uncached" do
|
7
|
+
let(:app_gemspec_path) { tmp("test.gemspec") }
|
8
|
+
subject { Bundler.load_gemspec_uncached(app_gemspec_path) }
|
9
|
+
|
10
|
+
context "with incorrect YAML file" do
|
11
|
+
before do
|
12
|
+
File.open(app_gemspec_path, "wb") do |f|
|
13
|
+
f.write strip_whitespace(<<-GEMSPEC)
|
14
|
+
---
|
15
|
+
{:!00 ao=gu\g1= 7~f
|
16
|
+
GEMSPEC
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
context "on Ruby 1.8", :ruby => "1.8" do
|
21
|
+
it "catches YAML syntax errors" do
|
22
|
+
expect { subject }.to raise_error(Bundler::GemspecError)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
context "on Ruby 1.9", :ruby => "1.9" do
|
27
|
+
context "with Syck as YAML::Engine" do
|
28
|
+
it "raises a GemspecError after YAML load throws ArgumentError" do
|
29
|
+
orig_yamler, YAML::ENGINE.yamler = YAML::ENGINE.yamler, 'syck'
|
30
|
+
|
31
|
+
expect { subject }.to raise_error(Bundler::GemspecError)
|
32
|
+
|
33
|
+
YAML::ENGINE.yamler = orig_yamler
|
34
|
+
end
|
35
|
+
end
|
36
|
+
|
37
|
+
context "with Psych as YAML::Engine" do
|
38
|
+
it "raises a GemspecError after YAML load throws Psych::SyntaxError" do
|
39
|
+
orig_yamler, YAML::ENGINE.yamler = YAML::ENGINE.yamler, 'psych'
|
40
|
+
|
41
|
+
expect { subject }.to raise_error(Bundler::GemspecError)
|
42
|
+
|
43
|
+
YAML::ENGINE.yamler = orig_yamler
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
context "with correct YAML file" do
|
50
|
+
it "can load a gemspec with unicode characters with default ruby encoding" do
|
51
|
+
# spec_helper forces the external encoding to UTF-8 but that's not the
|
52
|
+
# ruby default.
|
53
|
+
if defined?(Encoding)
|
54
|
+
encoding = Encoding.default_external
|
55
|
+
Encoding.default_external = "ASCII"
|
56
|
+
end
|
57
|
+
|
58
|
+
File.open(app_gemspec_path, "wb") do |file|
|
59
|
+
file.puts <<-GEMSPEC.gsub(/^\s+/, '')
|
60
|
+
# -*- encoding: utf-8 -*-
|
61
|
+
Gem::Specification.new do |gem|
|
62
|
+
gem.author = "André the Giant"
|
63
|
+
end
|
64
|
+
GEMSPEC
|
65
|
+
end
|
66
|
+
|
67
|
+
expect(subject.author).to eq("André the Giant")
|
68
|
+
|
69
|
+
Encoding.default_external = encoding if defined?(Encoding)
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
end
|
74
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'bundler/cli'
|
3
|
+
|
4
|
+
describe "bundle executable" do
|
5
|
+
let(:source_uri) { "http://localgemserver.test" }
|
6
|
+
|
7
|
+
it "returns non-zero exit status when passed unrecognized options" do
|
8
|
+
bundle '--invalid_argument', :exitstatus => true
|
9
|
+
expect(exitstatus).to_not be_zero
|
10
|
+
end
|
11
|
+
|
12
|
+
it "returns non-zero exit status when passed unrecognized task" do
|
13
|
+
bundle 'unrecognized-tast', :exitstatus => true
|
14
|
+
expect(exitstatus).to_not be_zero
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
require 'bundler/definition'
|
3
|
+
|
4
|
+
describe Bundler::Definition do
|
5
|
+
before do
|
6
|
+
allow(Bundler).to receive(:settings){ Bundler::Settings.new(".") }
|
7
|
+
end
|
8
|
+
|
9
|
+
describe "#lock" do
|
10
|
+
context "when it's not possible to write to the file" do
|
11
|
+
subject{ Bundler::Definition.new(nil, [], [], []) }
|
12
|
+
|
13
|
+
it "raises an InstallError with explanation" do
|
14
|
+
expect(File).to receive(:open).with("Gemfile.lock", "wb").
|
15
|
+
and_raise(Errno::EACCES)
|
16
|
+
expect{ subject.lock("Gemfile.lock") }.
|
17
|
+
to raise_error(Bundler::InstallError)
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,108 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe Bundler::Dsl do
|
4
|
+
before do
|
5
|
+
@rubygems = double("rubygems")
|
6
|
+
allow(Bundler::Source::Rubygems).to receive(:new){ @rubygems }
|
7
|
+
end
|
8
|
+
|
9
|
+
describe "#git_source" do
|
10
|
+
it "registers custom hosts" do
|
11
|
+
subject.git_source(:example){ |repo_name| "git@git.example.com:#{repo_name}.git" }
|
12
|
+
subject.git_source(:foobar){ |repo_name| "git@foobar.com:#{repo_name}.git" }
|
13
|
+
subject.gem("dobry-pies", :example => "strzalek/dobry-pies")
|
14
|
+
example_uri = "git@git.example.com:strzalek/dobry-pies.git"
|
15
|
+
expect(subject.dependencies.first.source.uri).to eq(example_uri)
|
16
|
+
end
|
17
|
+
|
18
|
+
it "raises expection on invalid hostname" do
|
19
|
+
expect {
|
20
|
+
subject.git_source(:group){ |repo_name| "git@git.example.com:#{repo_name}.git" }
|
21
|
+
}.to raise_error(Bundler::InvalidOption)
|
22
|
+
end
|
23
|
+
|
24
|
+
it "expects block passed" do
|
25
|
+
expect{ subject.git_source(:example) }.to raise_error(Bundler::InvalidOption)
|
26
|
+
end
|
27
|
+
|
28
|
+
context "default hosts (git, gist)" do
|
29
|
+
it "converts :github to :git" do
|
30
|
+
subject.gem("sparks", :github => "indirect/sparks")
|
31
|
+
github_uri = "git://github.com/indirect/sparks.git"
|
32
|
+
expect(subject.dependencies.first.source.uri).to eq(github_uri)
|
33
|
+
end
|
34
|
+
|
35
|
+
it "converts numeric :gist to :git" do
|
36
|
+
subject.gem("not-really-a-gem", :gist => 2859988)
|
37
|
+
github_uri = "https://gist.github.com/2859988.git"
|
38
|
+
expect(subject.dependencies.first.source.uri).to eq(github_uri)
|
39
|
+
end
|
40
|
+
|
41
|
+
it "converts :gist to :git" do
|
42
|
+
subject.gem("not-really-a-gem", :gist => "2859988")
|
43
|
+
github_uri = "https://gist.github.com/2859988.git"
|
44
|
+
expect(subject.dependencies.first.source.uri).to eq(github_uri)
|
45
|
+
end
|
46
|
+
|
47
|
+
it "converts 'rails' to 'rails/rails'" do
|
48
|
+
subject.gem("rails", :github => "rails")
|
49
|
+
github_uri = "git://github.com/rails/rails.git"
|
50
|
+
expect(subject.dependencies.first.source.uri).to eq(github_uri)
|
51
|
+
end
|
52
|
+
|
53
|
+
it "converts :bitbucket to :git" do
|
54
|
+
subject.gem("not-really-a-gem", :bitbucket => "mcorp/flatlab-rails")
|
55
|
+
bitbucket_uri = "https://mcorp@bitbucket.org/mcorp/flatlab-rails.git"
|
56
|
+
expect(subject.dependencies.first.source.uri).to eq(bitbucket_uri)
|
57
|
+
end
|
58
|
+
|
59
|
+
it "converts 'mcorp' to 'mcorp/mcorp'" do
|
60
|
+
subject.gem("not-really-a-gem", :bitbucket => "mcorp")
|
61
|
+
bitbucket_uri = "https://mcorp@bitbucket.org/mcorp/mcorp.git"
|
62
|
+
expect(subject.dependencies.first.source.uri).to eq(bitbucket_uri)
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
describe "#method_missing" do
|
68
|
+
it "raises an error for unknown DSL methods" do
|
69
|
+
expect(Bundler).to receive(:read_file).with("Gemfile").
|
70
|
+
and_return("unknown")
|
71
|
+
|
72
|
+
error_msg = "Undefined local variable or method `unknown'" \
|
73
|
+
" for Gemfile\\s+from Gemfile:1"
|
74
|
+
expect { subject.eval_gemfile("Gemfile") }.
|
75
|
+
to raise_error(Bundler::GemfileError, Regexp.new(error_msg))
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
describe "#eval_gemfile" do
|
80
|
+
it "handles syntax errors with a useful message" do
|
81
|
+
expect(Bundler).to receive(:read_file).with("Gemfile").and_return("}")
|
82
|
+
expect { subject.eval_gemfile("Gemfile") }.
|
83
|
+
to raise_error(Bundler::GemfileError, /Gemfile syntax error/)
|
84
|
+
end
|
85
|
+
end
|
86
|
+
|
87
|
+
describe "#gem" do
|
88
|
+
[:ruby, :ruby_18, :ruby_19, :ruby_20, :ruby_21, :mri, :mri_18, :mri_19,
|
89
|
+
:mri_20, :mri_21, :jruby, :rbx].each do |platform|
|
90
|
+
it "allows #{platform} as a valid platform" do
|
91
|
+
subject.gem("foo", :platform => platform)
|
92
|
+
end
|
93
|
+
end
|
94
|
+
|
95
|
+
it "rejects invalid platforms" do
|
96
|
+
expect { subject.gem("foo", :platform => :bogus) }.
|
97
|
+
to raise_error(Bundler::GemfileError, /is not a valid platform/)
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
describe "syntax errors" do
|
102
|
+
it "will raise a Bundler::GemfileError" do
|
103
|
+
gemfile "gem 'foo', :path => /unquoted/string/syntax/error"
|
104
|
+
expect { Bundler::Dsl.evaluate(bundled_app("Gemfile"), nil, true) }.
|
105
|
+
to raise_error(Bundler::GemfileError, /Gemfile syntax error/)
|
106
|
+
end
|
107
|
+
end
|
108
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
require "bundler"
|
3
|
+
require "bundler/friendly_errors"
|
4
|
+
|
5
|
+
describe Bundler, "friendly errors" do
|
6
|
+
it "rescues Thor::AmbiguousTaskError and raises SystemExit" do
|
7
|
+
expect {
|
8
|
+
Bundler.with_friendly_errors do
|
9
|
+
raise Thor::AmbiguousTaskError.new("")
|
10
|
+
end
|
11
|
+
}.to raise_error(SystemExit)
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,225 @@
|
|
1
|
+
require "spec_helper"
|
2
|
+
require 'rake'
|
3
|
+
require 'bundler/gem_helper'
|
4
|
+
|
5
|
+
describe Bundler::GemHelper do
|
6
|
+
let(:app_name) { "test" }
|
7
|
+
let(:app_path) { bundled_app app_name }
|
8
|
+
let(:app_gemspec_path) { app_path.join("#{app_name}.gemspec") }
|
9
|
+
|
10
|
+
before(:each) do
|
11
|
+
bundle "gem #{app_name}"
|
12
|
+
end
|
13
|
+
|
14
|
+
context "determining gemspec" do
|
15
|
+
subject { Bundler::GemHelper.new(app_path) }
|
16
|
+
|
17
|
+
context "fails" do
|
18
|
+
it "when there is no gemspec" do
|
19
|
+
FileUtils.rm app_gemspec_path
|
20
|
+
expect { subject }.to raise_error(/Unable to determine name/)
|
21
|
+
end
|
22
|
+
|
23
|
+
it "when there are two gemspecs and the name isn't specified" do
|
24
|
+
FileUtils.touch app_path.join("#{app_name}-2.gemspec")
|
25
|
+
expect { subject }.to raise_error(/Unable to determine name/)
|
26
|
+
end
|
27
|
+
end
|
28
|
+
|
29
|
+
context "interpolates the name" do
|
30
|
+
it "when there is only one gemspec" do
|
31
|
+
expect(subject.gemspec.name).to eq(app_name)
|
32
|
+
end
|
33
|
+
|
34
|
+
it "for a hidden gemspec" do
|
35
|
+
FileUtils.mv app_gemspec_path, app_path.join(".gemspec")
|
36
|
+
expect(subject.gemspec.name).to eq(app_name)
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
it "handles namespaces and converts them to CamelCase" do
|
41
|
+
bundle "gem #{app_name}-foo_bar"
|
42
|
+
app_path = bundled_app "#{app_name}-foo_bar"
|
43
|
+
|
44
|
+
lib = app_path.join("lib/#{app_name}/foo_bar.rb").read
|
45
|
+
expect(lib).to include("module #{app_name.capitalize}")
|
46
|
+
expect(lib).to include("module FooBar")
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
context "gem management" do
|
51
|
+
def mock_confirm_message(message)
|
52
|
+
expect(Bundler.ui).to receive(:confirm).with(message)
|
53
|
+
end
|
54
|
+
|
55
|
+
def mock_build_message(name, version)
|
56
|
+
message = "#{name} #{version} built to pkg/#{name}-#{version}.gem."
|
57
|
+
mock_confirm_message message
|
58
|
+
end
|
59
|
+
|
60
|
+
subject! { Bundler::GemHelper.new(app_path) }
|
61
|
+
let(:app_version) { "0.0.1" }
|
62
|
+
let(:app_gem_dir) { app_path.join("pkg") }
|
63
|
+
let(:app_gem_path) { app_gem_dir.join("#{app_name}-#{app_version}.gem") }
|
64
|
+
let(:app_gemspec_content) { File.read(app_gemspec_path) }
|
65
|
+
|
66
|
+
before(:each) do
|
67
|
+
content = app_gemspec_content.gsub("TODO: ", "")
|
68
|
+
content.sub!(/homepage\s+= ".*"/, 'homepage = ""')
|
69
|
+
File.open(app_gemspec_path, "w") { |file| file << content }
|
70
|
+
end
|
71
|
+
|
72
|
+
it "uses a shell UI for output" do
|
73
|
+
expect(Bundler.ui).to be_a(Bundler::UI::Shell)
|
74
|
+
end
|
75
|
+
|
76
|
+
describe "#install" do
|
77
|
+
let!(:rake_application) { Rake.application }
|
78
|
+
|
79
|
+
before(:each) do
|
80
|
+
Rake.application = Rake::Application.new
|
81
|
+
end
|
82
|
+
|
83
|
+
after(:each) do
|
84
|
+
Rake.application = rake_application
|
85
|
+
end
|
86
|
+
|
87
|
+
context "defines Rake tasks" do
|
88
|
+
let(:task_names) { %w[build install release] }
|
89
|
+
|
90
|
+
context "before installation" do
|
91
|
+
it "raises an error with appropriate message" do
|
92
|
+
task_names.each do |name|
|
93
|
+
expect { Rake.application[name] }.
|
94
|
+
to raise_error("Don't know how to build task '#{name}'")
|
95
|
+
end
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
context "after installation" do
|
100
|
+
before do
|
101
|
+
subject.install
|
102
|
+
end
|
103
|
+
|
104
|
+
it "adds Rake tasks successfully" do
|
105
|
+
task_names.each do |name|
|
106
|
+
expect { Rake.application[name] }.not_to raise_error
|
107
|
+
expect(Rake.application[name]).to be_instance_of Rake::Task
|
108
|
+
end
|
109
|
+
end
|
110
|
+
|
111
|
+
it "provides a way to access the gemspec object" do
|
112
|
+
expect(subject.gemspec.name).to eq(app_name)
|
113
|
+
end
|
114
|
+
end
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
describe "#build_gem" do
|
119
|
+
context "when build failed" do
|
120
|
+
it "raises an error with appropriate message" do
|
121
|
+
# break the gemspec by adding back the TODOs
|
122
|
+
File.open(app_gemspec_path, "w"){ |file| file << app_gemspec_content }
|
123
|
+
expect { subject.build_gem }.to raise_error(/TODO/)
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
127
|
+
context "when build was successful" do
|
128
|
+
it "creates .gem file" do
|
129
|
+
mock_build_message app_name, app_version
|
130
|
+
subject.build_gem
|
131
|
+
expect(app_gem_path).to exist
|
132
|
+
end
|
133
|
+
end
|
134
|
+
end
|
135
|
+
|
136
|
+
describe "#install_gem" do
|
137
|
+
context "when installation was successful" do
|
138
|
+
it "gem is installed" do
|
139
|
+
mock_build_message app_name, app_version
|
140
|
+
mock_confirm_message "#{app_name} (#{app_version}) installed."
|
141
|
+
subject.install_gem
|
142
|
+
expect(app_gem_path).to exist
|
143
|
+
expect(`gem list`).to include("#{app_name} (#{app_version})")
|
144
|
+
end
|
145
|
+
end
|
146
|
+
|
147
|
+
context "when installation fails" do
|
148
|
+
it "raises an error with appropriate message" do
|
149
|
+
# create empty gem file in order to simulate install failure
|
150
|
+
allow(subject).to receive(:build_gem) do
|
151
|
+
FileUtils.mkdir_p(app_gem_dir)
|
152
|
+
FileUtils.touch app_gem_path
|
153
|
+
app_gem_path
|
154
|
+
end
|
155
|
+
expect { subject.install_gem }.to raise_error(/Couldn't install gem/)
|
156
|
+
end
|
157
|
+
end
|
158
|
+
end
|
159
|
+
|
160
|
+
describe "#release_gem" do
|
161
|
+
before do
|
162
|
+
Dir.chdir(app_path) do
|
163
|
+
`git init`
|
164
|
+
`git config user.email "you@example.com"`
|
165
|
+
`git config user.name "name"`
|
166
|
+
end
|
167
|
+
end
|
168
|
+
|
169
|
+
context "fails" do
|
170
|
+
it "when there are unstaged files" do
|
171
|
+
expect { subject.release_gem }.
|
172
|
+
to raise_error("There are files that need to be committed first.")
|
173
|
+
end
|
174
|
+
|
175
|
+
it "when there are uncommitted files" do
|
176
|
+
Dir.chdir(app_path) { `git add .` }
|
177
|
+
expect { subject.release_gem }.
|
178
|
+
to raise_error("There are files that need to be committed first.")
|
179
|
+
end
|
180
|
+
|
181
|
+
it "when there is no git remote" do
|
182
|
+
# silence messages
|
183
|
+
allow(Bundler.ui).to receive(:confirm)
|
184
|
+
allow(Bundler.ui).to receive(:error)
|
185
|
+
|
186
|
+
Dir.chdir(app_path) { `git commit -a -m "initial commit"` }
|
187
|
+
expect { subject.release_gem }.to raise_error
|
188
|
+
end
|
189
|
+
end
|
190
|
+
|
191
|
+
context "succeeds" do
|
192
|
+
before do
|
193
|
+
Dir.chdir(gem_repo1) { `git init --bare` }
|
194
|
+
Dir.chdir(app_path) do
|
195
|
+
`git remote add origin file://#{gem_repo1}`
|
196
|
+
`git commit -a -m "initial commit"`
|
197
|
+
end
|
198
|
+
end
|
199
|
+
|
200
|
+
it "on releasing" do
|
201
|
+
mock_build_message app_name, app_version
|
202
|
+
mock_confirm_message "Tagged v#{app_version}."
|
203
|
+
mock_confirm_message "Pushed git commits and tags."
|
204
|
+
expect(subject).to receive(:rubygem_push).with(app_gem_path.to_s)
|
205
|
+
|
206
|
+
Dir.chdir(app_path) { sys_exec("git push origin master", true) }
|
207
|
+
|
208
|
+
subject.release_gem
|
209
|
+
end
|
210
|
+
|
211
|
+
it "even if tag already exists" do
|
212
|
+
mock_build_message app_name, app_version
|
213
|
+
mock_confirm_message "Tag v#{app_version} has already been created."
|
214
|
+
expect(subject).to receive(:rubygem_push).with(app_gem_path.to_s)
|
215
|
+
|
216
|
+
Dir.chdir(app_path) do
|
217
|
+
`git tag -a -m \"Version #{app_version}\" v#{app_version}`
|
218
|
+
end
|
219
|
+
|
220
|
+
subject.release_gem
|
221
|
+
end
|
222
|
+
end
|
223
|
+
end
|
224
|
+
end
|
225
|
+
end
|