bundler 2.0.2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of bundler might be problematic. Click here for more details.
- checksums.yaml +7 -0
- data/CHANGELOG.md +3111 -0
- data/LICENSE.md +23 -0
- data/README.md +63 -0
- data/bundler.gemspec +65 -0
- data/exe/bundle +31 -0
- data/exe/bundle_ruby +60 -0
- data/exe/bundler +4 -0
- data/lib/bundler.rb +567 -0
- data/lib/bundler/build_metadata.rb +53 -0
- data/lib/bundler/capistrano.rb +22 -0
- data/lib/bundler/cli.rb +792 -0
- data/lib/bundler/cli/add.rb +35 -0
- data/lib/bundler/cli/binstubs.rb +49 -0
- data/lib/bundler/cli/cache.rb +36 -0
- data/lib/bundler/cli/check.rb +38 -0
- data/lib/bundler/cli/clean.rb +25 -0
- data/lib/bundler/cli/common.rb +102 -0
- data/lib/bundler/cli/config.rb +119 -0
- data/lib/bundler/cli/console.rb +43 -0
- data/lib/bundler/cli/doctor.rb +140 -0
- data/lib/bundler/cli/exec.rb +105 -0
- data/lib/bundler/cli/gem.rb +252 -0
- data/lib/bundler/cli/info.rb +50 -0
- data/lib/bundler/cli/init.rb +47 -0
- data/lib/bundler/cli/inject.rb +60 -0
- data/lib/bundler/cli/install.rb +218 -0
- data/lib/bundler/cli/issue.rb +40 -0
- data/lib/bundler/cli/list.rb +58 -0
- data/lib/bundler/cli/lock.rb +63 -0
- data/lib/bundler/cli/open.rb +26 -0
- data/lib/bundler/cli/outdated.rb +266 -0
- data/lib/bundler/cli/package.rb +49 -0
- data/lib/bundler/cli/platform.rb +46 -0
- data/lib/bundler/cli/plugin.rb +24 -0
- data/lib/bundler/cli/pristine.rb +47 -0
- data/lib/bundler/cli/remove.rb +18 -0
- data/lib/bundler/cli/show.rb +75 -0
- data/lib/bundler/cli/update.rb +91 -0
- data/lib/bundler/cli/viz.rb +31 -0
- data/lib/bundler/compact_index_client.rb +109 -0
- data/lib/bundler/compact_index_client/cache.rb +118 -0
- data/lib/bundler/compact_index_client/updater.rb +116 -0
- data/lib/bundler/compatibility_guard.rb +13 -0
- data/lib/bundler/constants.rb +7 -0
- data/lib/bundler/current_ruby.rb +94 -0
- data/lib/bundler/definition.rb +995 -0
- data/lib/bundler/dep_proxy.rb +48 -0
- data/lib/bundler/dependency.rb +139 -0
- data/lib/bundler/deployment.rb +69 -0
- data/lib/bundler/deprecate.rb +44 -0
- data/lib/bundler/dsl.rb +615 -0
- data/lib/bundler/endpoint_specification.rb +141 -0
- data/lib/bundler/env.rb +149 -0
- data/lib/bundler/environment_preserver.rb +59 -0
- data/lib/bundler/errors.rb +158 -0
- data/lib/bundler/feature_flag.rb +75 -0
- data/lib/bundler/fetcher.rb +312 -0
- data/lib/bundler/fetcher/base.rb +52 -0
- data/lib/bundler/fetcher/compact_index.rb +126 -0
- data/lib/bundler/fetcher/dependency.rb +82 -0
- data/lib/bundler/fetcher/downloader.rb +84 -0
- data/lib/bundler/fetcher/index.rb +52 -0
- data/lib/bundler/friendly_errors.rb +131 -0
- data/lib/bundler/gem_helper.rb +217 -0
- data/lib/bundler/gem_helpers.rb +101 -0
- data/lib/bundler/gem_remote_fetcher.rb +43 -0
- data/lib/bundler/gem_tasks.rb +7 -0
- data/lib/bundler/gem_version_promoter.rb +190 -0
- data/lib/bundler/gemdeps.rb +29 -0
- data/lib/bundler/graph.rb +152 -0
- data/lib/bundler/index.rb +213 -0
- data/lib/bundler/injector.rb +253 -0
- data/lib/bundler/inline.rb +74 -0
- data/lib/bundler/installer.rb +318 -0
- data/lib/bundler/installer/gem_installer.rb +85 -0
- data/lib/bundler/installer/parallel_installer.rb +229 -0
- data/lib/bundler/installer/standalone.rb +53 -0
- data/lib/bundler/lazy_specification.rb +123 -0
- data/lib/bundler/lockfile_generator.rb +95 -0
- data/lib/bundler/lockfile_parser.rb +256 -0
- data/lib/bundler/match_platform.rb +24 -0
- data/lib/bundler/mirror.rb +223 -0
- data/lib/bundler/plugin.rb +294 -0
- data/lib/bundler/plugin/api.rb +81 -0
- data/lib/bundler/plugin/api/source.rb +306 -0
- data/lib/bundler/plugin/dsl.rb +53 -0
- data/lib/bundler/plugin/events.rb +61 -0
- data/lib/bundler/plugin/index.rb +165 -0
- data/lib/bundler/plugin/installer.rb +96 -0
- data/lib/bundler/plugin/installer/git.rb +38 -0
- data/lib/bundler/plugin/installer/rubygems.rb +27 -0
- data/lib/bundler/plugin/source_list.rb +27 -0
- data/lib/bundler/process_lock.rb +24 -0
- data/lib/bundler/psyched_yaml.rb +37 -0
- data/lib/bundler/remote_specification.rb +114 -0
- data/lib/bundler/resolver.rb +373 -0
- data/lib/bundler/resolver/spec_group.rb +106 -0
- data/lib/bundler/retry.rb +66 -0
- data/lib/bundler/ruby_dsl.rb +18 -0
- data/lib/bundler/ruby_version.rb +152 -0
- data/lib/bundler/rubygems_ext.rb +209 -0
- data/lib/bundler/rubygems_gem_installer.rb +99 -0
- data/lib/bundler/rubygems_integration.rb +915 -0
- data/lib/bundler/runtime.rb +322 -0
- data/lib/bundler/settings.rb +464 -0
- data/lib/bundler/settings/validator.rb +102 -0
- data/lib/bundler/setup.rb +28 -0
- data/lib/bundler/shared_helpers.rb +386 -0
- data/lib/bundler/similarity_detector.rb +63 -0
- data/lib/bundler/source.rb +94 -0
- data/lib/bundler/source/gemspec.rb +18 -0
- data/lib/bundler/source/git.rb +329 -0
- data/lib/bundler/source/git/git_proxy.rb +262 -0
- data/lib/bundler/source/metadata.rb +62 -0
- data/lib/bundler/source/path.rb +249 -0
- data/lib/bundler/source/path/installer.rb +74 -0
- data/lib/bundler/source/rubygems.rb +539 -0
- data/lib/bundler/source/rubygems/remote.rb +69 -0
- data/lib/bundler/source_list.rb +186 -0
- data/lib/bundler/spec_set.rb +208 -0
- data/lib/bundler/ssl_certs/.document +1 -0
- data/lib/bundler/ssl_certs/certificate_manager.rb +66 -0
- data/lib/bundler/ssl_certs/index.rubygems.org/GlobalSignRootCA.pem +21 -0
- data/lib/bundler/ssl_certs/rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem +23 -0
- data/lib/bundler/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem +25 -0
- data/lib/bundler/stub_specification.rb +108 -0
- data/lib/bundler/templates/.document +1 -0
- data/lib/bundler/templates/Executable +29 -0
- data/lib/bundler/templates/Executable.bundler +105 -0
- data/lib/bundler/templates/Executable.standalone +14 -0
- data/lib/bundler/templates/Gemfile +7 -0
- data/lib/bundler/templates/gems.rb +8 -0
- data/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +74 -0
- data/lib/bundler/templates/newgem/Gemfile.tt +4 -0
- data/lib/bundler/templates/newgem/LICENSE.txt.tt +21 -0
- data/lib/bundler/templates/newgem/README.md.tt +47 -0
- data/lib/bundler/templates/newgem/Rakefile.tt +29 -0
- data/lib/bundler/templates/newgem/bin/console.tt +14 -0
- data/lib/bundler/templates/newgem/bin/setup.tt +8 -0
- data/lib/bundler/templates/newgem/exe/newgem.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 +20 -0
- data/lib/bundler/templates/newgem/lib/newgem.rb.tt +13 -0
- data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +7 -0
- data/lib/bundler/templates/newgem/newgem.gemspec.tt +50 -0
- data/lib/bundler/templates/newgem/rspec.tt +3 -0
- data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +9 -0
- data/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +14 -0
- data/lib/bundler/templates/newgem/test/newgem_test.rb.tt +11 -0
- data/lib/bundler/templates/newgem/test/test_helper.rb.tt +8 -0
- data/lib/bundler/templates/newgem/travis.yml.tt +7 -0
- data/lib/bundler/ui.rb +9 -0
- data/lib/bundler/ui/rg_proxy.rb +19 -0
- data/lib/bundler/ui/shell.rb +146 -0
- data/lib/bundler/ui/silent.rb +69 -0
- data/lib/bundler/uri_credentials_filter.rb +37 -0
- data/lib/bundler/vendor/fileutils/lib/fileutils.rb +1741 -0
- data/lib/bundler/vendor/fileutils/lib/fileutils/version.rb +5 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo.rb +12 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb +26 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb +57 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +81 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +223 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/action.rb +36 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +66 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +62 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +63 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +61 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb +126 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb +46 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +36 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +136 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +143 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +6 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +101 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/modules/ui.rb +67 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +837 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb +46 -0
- data/lib/bundler/vendor/molinillo/lib/molinillo/state.rb +58 -0
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/faster.rb +27 -0
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +1233 -0
- data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/ssl_reuse.rb +129 -0
- data/lib/bundler/vendor/thor/lib/thor.rb +509 -0
- data/lib/bundler/vendor/thor/lib/thor/actions.rb +331 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/create_file.rb +104 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +60 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/directory.rb +118 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/empty_directory.rb +143 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +373 -0
- data/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb +109 -0
- data/lib/bundler/vendor/thor/lib/thor/base.rb +678 -0
- data/lib/bundler/vendor/thor/lib/thor/command.rb +135 -0
- data/lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +97 -0
- data/lib/bundler/vendor/thor/lib/thor/core_ext/io_binary_read.rb +12 -0
- data/lib/bundler/vendor/thor/lib/thor/core_ext/ordered_hash.rb +129 -0
- data/lib/bundler/vendor/thor/lib/thor/error.rb +114 -0
- data/lib/bundler/vendor/thor/lib/thor/group.rb +281 -0
- data/lib/bundler/vendor/thor/lib/thor/invocation.rb +177 -0
- data/lib/bundler/vendor/thor/lib/thor/line_editor.rb +17 -0
- data/lib/bundler/vendor/thor/lib/thor/line_editor/basic.rb +37 -0
- data/lib/bundler/vendor/thor/lib/thor/line_editor/readline.rb +88 -0
- data/lib/bundler/vendor/thor/lib/thor/parser.rb +4 -0
- data/lib/bundler/vendor/thor/lib/thor/parser/argument.rb +70 -0
- data/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb +175 -0
- data/lib/bundler/vendor/thor/lib/thor/parser/option.rb +146 -0
- data/lib/bundler/vendor/thor/lib/thor/parser/options.rb +226 -0
- data/lib/bundler/vendor/thor/lib/thor/rake_compat.rb +71 -0
- data/lib/bundler/vendor/thor/lib/thor/runner.rb +324 -0
- data/lib/bundler/vendor/thor/lib/thor/shell.rb +81 -0
- data/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +482 -0
- data/lib/bundler/vendor/thor/lib/thor/shell/color.rb +149 -0
- data/lib/bundler/vendor/thor/lib/thor/shell/html.rb +126 -0
- data/lib/bundler/vendor/thor/lib/thor/util.rb +268 -0
- data/lib/bundler/vendor/thor/lib/thor/version.rb +3 -0
- data/lib/bundler/vendored_fileutils.rb +9 -0
- data/lib/bundler/vendored_molinillo.rb +4 -0
- data/lib/bundler/vendored_persistent.rb +52 -0
- data/lib/bundler/vendored_thor.rb +8 -0
- data/lib/bundler/version.rb +28 -0
- data/lib/bundler/version_ranges.rb +76 -0
- data/lib/bundler/vlad.rb +17 -0
- data/lib/bundler/worker.rb +106 -0
- data/lib/bundler/yaml_serializer.rb +90 -0
- data/man/bundle-add.1 +58 -0
- data/man/bundle-add.1.txt +52 -0
- data/man/bundle-add.ronn +40 -0
- data/man/bundle-binstubs.1 +40 -0
- data/man/bundle-binstubs.1.txt +48 -0
- data/man/bundle-binstubs.ronn +43 -0
- data/man/bundle-check.1 +31 -0
- data/man/bundle-check.1.txt +33 -0
- data/man/bundle-check.ronn +26 -0
- data/man/bundle-clean.1 +24 -0
- data/man/bundle-clean.1.txt +26 -0
- data/man/bundle-clean.ronn +18 -0
- data/man/bundle-config.1 +497 -0
- data/man/bundle-config.1.txt +529 -0
- data/man/bundle-config.ronn +397 -0
- data/man/bundle-doctor.1 +44 -0
- data/man/bundle-doctor.1.txt +44 -0
- data/man/bundle-doctor.ronn +33 -0
- data/man/bundle-exec.1 +165 -0
- data/man/bundle-exec.1.txt +178 -0
- data/man/bundle-exec.ronn +152 -0
- data/man/bundle-gem.1 +80 -0
- data/man/bundle-gem.1.txt +91 -0
- data/man/bundle-gem.ronn +78 -0
- data/man/bundle-info.1 +20 -0
- data/man/bundle-info.1.txt +21 -0
- data/man/bundle-info.ronn +17 -0
- data/man/bundle-init.1 +25 -0
- data/man/bundle-init.1.txt +34 -0
- data/man/bundle-init.ronn +29 -0
- data/man/bundle-inject.1 +33 -0
- data/man/bundle-inject.1.txt +32 -0
- data/man/bundle-inject.ronn +22 -0
- data/man/bundle-install.1 +308 -0
- data/man/bundle-install.1.txt +396 -0
- data/man/bundle-install.ronn +378 -0
- data/man/bundle-list.1 +50 -0
- data/man/bundle-list.1.txt +43 -0
- data/man/bundle-list.ronn +33 -0
- data/man/bundle-lock.1 +84 -0
- data/man/bundle-lock.1.txt +93 -0
- data/man/bundle-lock.ronn +94 -0
- data/man/bundle-open.1 +32 -0
- data/man/bundle-open.1.txt +29 -0
- data/man/bundle-open.ronn +19 -0
- data/man/bundle-outdated.1 +155 -0
- data/man/bundle-outdated.1.txt +131 -0
- data/man/bundle-outdated.ronn +111 -0
- data/man/bundle-package.1 +55 -0
- data/man/bundle-package.1.txt +79 -0
- data/man/bundle-package.ronn +72 -0
- data/man/bundle-platform.1 +61 -0
- data/man/bundle-platform.1.txt +57 -0
- data/man/bundle-platform.ronn +42 -0
- data/man/bundle-pristine.1 +34 -0
- data/man/bundle-pristine.1.txt +44 -0
- data/man/bundle-pristine.ronn +34 -0
- data/man/bundle-remove.1 +31 -0
- data/man/bundle-remove.1.txt +34 -0
- data/man/bundle-remove.ronn +23 -0
- data/man/bundle-show.1 +23 -0
- data/man/bundle-show.1.txt +27 -0
- data/man/bundle-show.ronn +21 -0
- data/man/bundle-update.1 +394 -0
- data/man/bundle-update.1.txt +391 -0
- data/man/bundle-update.ronn +350 -0
- data/man/bundle-viz.1 +39 -0
- data/man/bundle-viz.1.txt +39 -0
- data/man/bundle-viz.ronn +30 -0
- data/man/bundle.1 +136 -0
- data/man/bundle.1.txt +116 -0
- data/man/bundle.ronn +111 -0
- data/man/gemfile.5 +689 -0
- data/man/gemfile.5.ronn +521 -0
- data/man/gemfile.5.txt +653 -0
- data/man/index.txt +25 -0
- metadata +463 -0
@@ -0,0 +1,331 @@
|
|
1
|
+
require "uri"
|
2
|
+
require "bundler/vendor/thor/lib/thor/core_ext/io_binary_read"
|
3
|
+
require "bundler/vendor/thor/lib/thor/actions/create_file"
|
4
|
+
require "bundler/vendor/thor/lib/thor/actions/create_link"
|
5
|
+
require "bundler/vendor/thor/lib/thor/actions/directory"
|
6
|
+
require "bundler/vendor/thor/lib/thor/actions/empty_directory"
|
7
|
+
require "bundler/vendor/thor/lib/thor/actions/file_manipulation"
|
8
|
+
require "bundler/vendor/thor/lib/thor/actions/inject_into_file"
|
9
|
+
|
10
|
+
class Bundler::Thor
|
11
|
+
module Actions
|
12
|
+
attr_accessor :behavior
|
13
|
+
|
14
|
+
def self.included(base) #:nodoc:
|
15
|
+
base.extend ClassMethods
|
16
|
+
end
|
17
|
+
|
18
|
+
module ClassMethods
|
19
|
+
# Hold source paths for one Bundler::Thor instance. source_paths_for_search is the
|
20
|
+
# method responsible to gather source_paths from this current class,
|
21
|
+
# inherited paths and the source root.
|
22
|
+
#
|
23
|
+
def source_paths
|
24
|
+
@_source_paths ||= []
|
25
|
+
end
|
26
|
+
|
27
|
+
# Stores and return the source root for this class
|
28
|
+
def source_root(path = nil)
|
29
|
+
@_source_root = path if path
|
30
|
+
@_source_root ||= nil
|
31
|
+
end
|
32
|
+
|
33
|
+
# Returns the source paths in the following order:
|
34
|
+
#
|
35
|
+
# 1) This class source paths
|
36
|
+
# 2) Source root
|
37
|
+
# 3) Parents source paths
|
38
|
+
#
|
39
|
+
def source_paths_for_search
|
40
|
+
paths = []
|
41
|
+
paths += source_paths
|
42
|
+
paths << source_root if source_root
|
43
|
+
paths += from_superclass(:source_paths, [])
|
44
|
+
paths
|
45
|
+
end
|
46
|
+
|
47
|
+
# Add runtime options that help actions execution.
|
48
|
+
#
|
49
|
+
def add_runtime_options!
|
50
|
+
class_option :force, :type => :boolean, :aliases => "-f", :group => :runtime,
|
51
|
+
:desc => "Overwrite files that already exist"
|
52
|
+
|
53
|
+
class_option :pretend, :type => :boolean, :aliases => "-p", :group => :runtime,
|
54
|
+
:desc => "Run but do not make any changes"
|
55
|
+
|
56
|
+
class_option :quiet, :type => :boolean, :aliases => "-q", :group => :runtime,
|
57
|
+
:desc => "Suppress status output"
|
58
|
+
|
59
|
+
class_option :skip, :type => :boolean, :aliases => "-s", :group => :runtime,
|
60
|
+
:desc => "Skip files that already exist"
|
61
|
+
end
|
62
|
+
end
|
63
|
+
|
64
|
+
# Extends initializer to add more configuration options.
|
65
|
+
#
|
66
|
+
# ==== Configuration
|
67
|
+
# behavior<Symbol>:: The actions default behavior. Can be :invoke or :revoke.
|
68
|
+
# It also accepts :force, :skip and :pretend to set the behavior
|
69
|
+
# and the respective option.
|
70
|
+
#
|
71
|
+
# destination_root<String>:: The root directory needed for some actions.
|
72
|
+
#
|
73
|
+
def initialize(args = [], options = {}, config = {})
|
74
|
+
self.behavior = case config[:behavior].to_s
|
75
|
+
when "force", "skip"
|
76
|
+
_cleanup_options_and_set(options, config[:behavior])
|
77
|
+
:invoke
|
78
|
+
when "revoke"
|
79
|
+
:revoke
|
80
|
+
else
|
81
|
+
:invoke
|
82
|
+
end
|
83
|
+
|
84
|
+
super
|
85
|
+
self.destination_root = config[:destination_root]
|
86
|
+
end
|
87
|
+
|
88
|
+
# Wraps an action object and call it accordingly to the thor class behavior.
|
89
|
+
#
|
90
|
+
def action(instance) #:nodoc:
|
91
|
+
if behavior == :revoke
|
92
|
+
instance.revoke!
|
93
|
+
else
|
94
|
+
instance.invoke!
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
98
|
+
# Returns the root for this thor class (also aliased as destination root).
|
99
|
+
#
|
100
|
+
def destination_root
|
101
|
+
@destination_stack.last
|
102
|
+
end
|
103
|
+
|
104
|
+
# Sets the root for this thor class. Relatives path are added to the
|
105
|
+
# directory where the script was invoked and expanded.
|
106
|
+
#
|
107
|
+
def destination_root=(root)
|
108
|
+
@destination_stack ||= []
|
109
|
+
@destination_stack[0] = File.expand_path(root || "")
|
110
|
+
end
|
111
|
+
|
112
|
+
# Returns the given path relative to the absolute root (ie, root where
|
113
|
+
# the script started).
|
114
|
+
#
|
115
|
+
def relative_to_original_destination_root(path, remove_dot = true)
|
116
|
+
root = @destination_stack[0]
|
117
|
+
if path.start_with?(root) && [File::SEPARATOR, File::ALT_SEPARATOR, nil, ''].include?(path[root.size..root.size])
|
118
|
+
path = path.dup
|
119
|
+
path[0...root.size] = '.'
|
120
|
+
remove_dot ? (path[2..-1] || "") : path
|
121
|
+
else
|
122
|
+
path
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
# Holds source paths in instance so they can be manipulated.
|
127
|
+
#
|
128
|
+
def source_paths
|
129
|
+
@source_paths ||= self.class.source_paths_for_search
|
130
|
+
end
|
131
|
+
|
132
|
+
# Receives a file or directory and search for it in the source paths.
|
133
|
+
#
|
134
|
+
def find_in_source_paths(file)
|
135
|
+
possible_files = [file, file + TEMPLATE_EXTNAME]
|
136
|
+
relative_root = relative_to_original_destination_root(destination_root, false)
|
137
|
+
|
138
|
+
source_paths.each do |source|
|
139
|
+
possible_files.each do |f|
|
140
|
+
source_file = File.expand_path(f, File.join(source, relative_root))
|
141
|
+
return source_file if File.exist?(source_file)
|
142
|
+
end
|
143
|
+
end
|
144
|
+
|
145
|
+
message = "Could not find #{file.inspect} in any of your source paths. ".dup
|
146
|
+
|
147
|
+
unless self.class.source_root
|
148
|
+
message << "Please invoke #{self.class.name}.source_root(PATH) with the PATH containing your templates. "
|
149
|
+
end
|
150
|
+
|
151
|
+
message << if source_paths.empty?
|
152
|
+
"Currently you have no source paths."
|
153
|
+
else
|
154
|
+
"Your current source paths are: \n#{source_paths.join("\n")}"
|
155
|
+
end
|
156
|
+
|
157
|
+
raise Error, message
|
158
|
+
end
|
159
|
+
|
160
|
+
# Do something in the root or on a provided subfolder. If a relative path
|
161
|
+
# is given it's referenced from the current root. The full path is yielded
|
162
|
+
# to the block you provide. The path is set back to the previous path when
|
163
|
+
# the method exits.
|
164
|
+
#
|
165
|
+
# ==== Parameters
|
166
|
+
# dir<String>:: the directory to move to.
|
167
|
+
# config<Hash>:: give :verbose => true to log and use padding.
|
168
|
+
#
|
169
|
+
def inside(dir = "", config = {}, &block)
|
170
|
+
verbose = config.fetch(:verbose, false)
|
171
|
+
pretend = options[:pretend]
|
172
|
+
|
173
|
+
say_status :inside, dir, verbose
|
174
|
+
shell.padding += 1 if verbose
|
175
|
+
@destination_stack.push File.expand_path(dir, destination_root)
|
176
|
+
|
177
|
+
# If the directory doesnt exist and we're not pretending
|
178
|
+
if !File.exist?(destination_root) && !pretend
|
179
|
+
require "fileutils"
|
180
|
+
FileUtils.mkdir_p(destination_root)
|
181
|
+
end
|
182
|
+
|
183
|
+
if pretend
|
184
|
+
# In pretend mode, just yield down to the block
|
185
|
+
block.arity == 1 ? yield(destination_root) : yield
|
186
|
+
else
|
187
|
+
require "fileutils"
|
188
|
+
FileUtils.cd(destination_root) { block.arity == 1 ? yield(destination_root) : yield }
|
189
|
+
end
|
190
|
+
|
191
|
+
@destination_stack.pop
|
192
|
+
shell.padding -= 1 if verbose
|
193
|
+
end
|
194
|
+
|
195
|
+
# Goes to the root and execute the given block.
|
196
|
+
#
|
197
|
+
def in_root
|
198
|
+
inside(@destination_stack.first) { yield }
|
199
|
+
end
|
200
|
+
|
201
|
+
# Loads an external file and execute it in the instance binding.
|
202
|
+
#
|
203
|
+
# ==== Parameters
|
204
|
+
# path<String>:: The path to the file to execute. Can be a web address or
|
205
|
+
# a relative path from the source root.
|
206
|
+
#
|
207
|
+
# ==== Examples
|
208
|
+
#
|
209
|
+
# apply "http://gist.github.com/103208"
|
210
|
+
#
|
211
|
+
# apply "recipes/jquery.rb"
|
212
|
+
#
|
213
|
+
def apply(path, config = {})
|
214
|
+
verbose = config.fetch(:verbose, true)
|
215
|
+
is_uri = path =~ %r{^https?\://}
|
216
|
+
path = find_in_source_paths(path) unless is_uri
|
217
|
+
|
218
|
+
say_status :apply, path, verbose
|
219
|
+
shell.padding += 1 if verbose
|
220
|
+
|
221
|
+
contents = if is_uri
|
222
|
+
require "open-uri"
|
223
|
+
open(path, "Accept" => "application/x-thor-template", &:read)
|
224
|
+
else
|
225
|
+
open(path, &:read)
|
226
|
+
end
|
227
|
+
|
228
|
+
instance_eval(contents, path)
|
229
|
+
shell.padding -= 1 if verbose
|
230
|
+
end
|
231
|
+
|
232
|
+
# Executes a command returning the contents of the command.
|
233
|
+
#
|
234
|
+
# ==== Parameters
|
235
|
+
# command<String>:: the command to be executed.
|
236
|
+
# config<Hash>:: give :verbose => false to not log the status, :capture => true to hide to output. Specify :with
|
237
|
+
# to append an executable to command execution.
|
238
|
+
#
|
239
|
+
# ==== Example
|
240
|
+
#
|
241
|
+
# inside('vendor') do
|
242
|
+
# run('ln -s ~/edge rails')
|
243
|
+
# end
|
244
|
+
#
|
245
|
+
def run(command, config = {})
|
246
|
+
return unless behavior == :invoke
|
247
|
+
|
248
|
+
destination = relative_to_original_destination_root(destination_root, false)
|
249
|
+
desc = "#{command} from #{destination.inspect}"
|
250
|
+
|
251
|
+
if config[:with]
|
252
|
+
desc = "#{File.basename(config[:with].to_s)} #{desc}"
|
253
|
+
command = "#{config[:with]} #{command}"
|
254
|
+
end
|
255
|
+
|
256
|
+
say_status :run, desc, config.fetch(:verbose, true)
|
257
|
+
|
258
|
+
return if options[:pretend]
|
259
|
+
|
260
|
+
result = config[:capture] ? `#{command}` : system(command.to_s)
|
261
|
+
|
262
|
+
if config[:abort_on_failure]
|
263
|
+
success = config[:capture] ? $?.success? : result
|
264
|
+
abort unless success
|
265
|
+
end
|
266
|
+
|
267
|
+
result
|
268
|
+
end
|
269
|
+
|
270
|
+
# Executes a ruby script (taking into account WIN32 platform quirks).
|
271
|
+
#
|
272
|
+
# ==== Parameters
|
273
|
+
# command<String>:: the command to be executed.
|
274
|
+
# config<Hash>:: give :verbose => false to not log the status.
|
275
|
+
#
|
276
|
+
def run_ruby_script(command, config = {})
|
277
|
+
return unless behavior == :invoke
|
278
|
+
run command, config.merge(:with => Bundler::Thor::Util.ruby_command)
|
279
|
+
end
|
280
|
+
|
281
|
+
# Run a thor command. A hash of options can be given and it's converted to
|
282
|
+
# switches.
|
283
|
+
#
|
284
|
+
# ==== Parameters
|
285
|
+
# command<String>:: the command to be invoked
|
286
|
+
# args<Array>:: arguments to the command
|
287
|
+
# config<Hash>:: give :verbose => false to not log the status, :capture => true to hide to output.
|
288
|
+
# Other options are given as parameter to Bundler::Thor.
|
289
|
+
#
|
290
|
+
#
|
291
|
+
# ==== Examples
|
292
|
+
#
|
293
|
+
# thor :install, "http://gist.github.com/103208"
|
294
|
+
# #=> thor install http://gist.github.com/103208
|
295
|
+
#
|
296
|
+
# thor :list, :all => true, :substring => 'rails'
|
297
|
+
# #=> thor list --all --substring=rails
|
298
|
+
#
|
299
|
+
def thor(command, *args)
|
300
|
+
config = args.last.is_a?(Hash) ? args.pop : {}
|
301
|
+
verbose = config.key?(:verbose) ? config.delete(:verbose) : true
|
302
|
+
pretend = config.key?(:pretend) ? config.delete(:pretend) : false
|
303
|
+
capture = config.key?(:capture) ? config.delete(:capture) : false
|
304
|
+
|
305
|
+
args.unshift(command)
|
306
|
+
args.push Bundler::Thor::Options.to_switches(config)
|
307
|
+
command = args.join(" ").strip
|
308
|
+
|
309
|
+
run command, :with => :thor, :verbose => verbose, :pretend => pretend, :capture => capture
|
310
|
+
end
|
311
|
+
|
312
|
+
protected
|
313
|
+
|
314
|
+
# Allow current root to be shared between invocations.
|
315
|
+
#
|
316
|
+
def _shared_configuration #:nodoc:
|
317
|
+
super.merge!(:destination_root => destination_root)
|
318
|
+
end
|
319
|
+
|
320
|
+
def _cleanup_options_and_set(options, key) #:nodoc:
|
321
|
+
case options
|
322
|
+
when Array
|
323
|
+
%w(--force -f --skip -s).each { |i| options.delete(i) }
|
324
|
+
options << "--#{key}"
|
325
|
+
when Hash
|
326
|
+
[:force, :skip, "force", "skip"].each { |i| options.delete(i) }
|
327
|
+
options.merge!(key => true)
|
328
|
+
end
|
329
|
+
end
|
330
|
+
end
|
331
|
+
end
|
@@ -0,0 +1,104 @@
|
|
1
|
+
require "bundler/vendor/thor/lib/thor/actions/empty_directory"
|
2
|
+
|
3
|
+
class Bundler::Thor
|
4
|
+
module Actions
|
5
|
+
# Create a new file relative to the destination root with the given data,
|
6
|
+
# which is the return value of a block or a data string.
|
7
|
+
#
|
8
|
+
# ==== Parameters
|
9
|
+
# destination<String>:: the relative path to the destination root.
|
10
|
+
# data<String|NilClass>:: the data to append to the file.
|
11
|
+
# config<Hash>:: give :verbose => false to not log the status.
|
12
|
+
#
|
13
|
+
# ==== Examples
|
14
|
+
#
|
15
|
+
# create_file "lib/fun_party.rb" do
|
16
|
+
# hostname = ask("What is the virtual hostname I should use?")
|
17
|
+
# "vhost.name = #{hostname}"
|
18
|
+
# end
|
19
|
+
#
|
20
|
+
# create_file "config/apache.conf", "your apache config"
|
21
|
+
#
|
22
|
+
def create_file(destination, *args, &block)
|
23
|
+
config = args.last.is_a?(Hash) ? args.pop : {}
|
24
|
+
data = args.first
|
25
|
+
action CreateFile.new(self, destination, block || data.to_s, config)
|
26
|
+
end
|
27
|
+
alias_method :add_file, :create_file
|
28
|
+
|
29
|
+
# CreateFile is a subset of Template, which instead of rendering a file with
|
30
|
+
# ERB, it gets the content from the user.
|
31
|
+
#
|
32
|
+
class CreateFile < EmptyDirectory #:nodoc:
|
33
|
+
attr_reader :data
|
34
|
+
|
35
|
+
def initialize(base, destination, data, config = {})
|
36
|
+
@data = data
|
37
|
+
super(base, destination, config)
|
38
|
+
end
|
39
|
+
|
40
|
+
# Checks if the content of the file at the destination is identical to the rendered result.
|
41
|
+
#
|
42
|
+
# ==== Returns
|
43
|
+
# Boolean:: true if it is identical, false otherwise.
|
44
|
+
#
|
45
|
+
def identical?
|
46
|
+
exists? && File.binread(destination) == render
|
47
|
+
end
|
48
|
+
|
49
|
+
# Holds the content to be added to the file.
|
50
|
+
#
|
51
|
+
def render
|
52
|
+
@render ||= if data.is_a?(Proc)
|
53
|
+
data.call
|
54
|
+
else
|
55
|
+
data
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
def invoke!
|
60
|
+
invoke_with_conflict_check do
|
61
|
+
require "fileutils"
|
62
|
+
FileUtils.mkdir_p(File.dirname(destination))
|
63
|
+
File.open(destination, "wb") { |f| f.write render }
|
64
|
+
end
|
65
|
+
given_destination
|
66
|
+
end
|
67
|
+
|
68
|
+
protected
|
69
|
+
|
70
|
+
# Now on conflict we check if the file is identical or not.
|
71
|
+
#
|
72
|
+
def on_conflict_behavior(&block)
|
73
|
+
if identical?
|
74
|
+
say_status :identical, :blue
|
75
|
+
else
|
76
|
+
options = base.options.merge(config)
|
77
|
+
force_or_skip_or_conflict(options[:force], options[:skip], &block)
|
78
|
+
end
|
79
|
+
end
|
80
|
+
|
81
|
+
# If force is true, run the action, otherwise check if it's not being
|
82
|
+
# skipped. If both are false, show the file_collision menu, if the menu
|
83
|
+
# returns true, force it, otherwise skip.
|
84
|
+
#
|
85
|
+
def force_or_skip_or_conflict(force, skip, &block)
|
86
|
+
if force
|
87
|
+
say_status :force, :yellow
|
88
|
+
yield unless pretend?
|
89
|
+
elsif skip
|
90
|
+
say_status :skip, :yellow
|
91
|
+
else
|
92
|
+
say_status :conflict, :red
|
93
|
+
force_or_skip_or_conflict(force_on_collision?, true, &block)
|
94
|
+
end
|
95
|
+
end
|
96
|
+
|
97
|
+
# Shows the file collision menu to the user and gets the result.
|
98
|
+
#
|
99
|
+
def force_on_collision?
|
100
|
+
base.shell.file_collision(destination) { render }
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
104
|
+
end
|
@@ -0,0 +1,60 @@
|
|
1
|
+
require "bundler/vendor/thor/lib/thor/actions/create_file"
|
2
|
+
|
3
|
+
class Bundler::Thor
|
4
|
+
module Actions
|
5
|
+
# Create a new file relative to the destination root from the given source.
|
6
|
+
#
|
7
|
+
# ==== Parameters
|
8
|
+
# destination<String>:: the relative path to the destination root.
|
9
|
+
# source<String|NilClass>:: the relative path to the source root.
|
10
|
+
# config<Hash>:: give :verbose => false to not log the status.
|
11
|
+
# :: give :symbolic => false for hard link.
|
12
|
+
#
|
13
|
+
# ==== Examples
|
14
|
+
#
|
15
|
+
# create_link "config/apache.conf", "/etc/apache.conf"
|
16
|
+
#
|
17
|
+
def create_link(destination, *args)
|
18
|
+
config = args.last.is_a?(Hash) ? args.pop : {}
|
19
|
+
source = args.first
|
20
|
+
action CreateLink.new(self, destination, source, config)
|
21
|
+
end
|
22
|
+
alias_method :add_link, :create_link
|
23
|
+
|
24
|
+
# CreateLink is a subset of CreateFile, which instead of taking a block of
|
25
|
+
# data, just takes a source string from the user.
|
26
|
+
#
|
27
|
+
class CreateLink < CreateFile #:nodoc:
|
28
|
+
attr_reader :data
|
29
|
+
|
30
|
+
# Checks if the content of the file at the destination is identical to the rendered result.
|
31
|
+
#
|
32
|
+
# ==== Returns
|
33
|
+
# Boolean:: true if it is identical, false otherwise.
|
34
|
+
#
|
35
|
+
def identical?
|
36
|
+
exists? && File.identical?(render, destination)
|
37
|
+
end
|
38
|
+
|
39
|
+
def invoke!
|
40
|
+
invoke_with_conflict_check do
|
41
|
+
require "fileutils"
|
42
|
+
FileUtils.mkdir_p(File.dirname(destination))
|
43
|
+
# Create a symlink by default
|
44
|
+
config[:symbolic] = true if config[:symbolic].nil?
|
45
|
+
File.unlink(destination) if exists?
|
46
|
+
if config[:symbolic]
|
47
|
+
File.symlink(render, destination)
|
48
|
+
else
|
49
|
+
File.link(render, destination)
|
50
|
+
end
|
51
|
+
end
|
52
|
+
given_destination
|
53
|
+
end
|
54
|
+
|
55
|
+
def exists?
|
56
|
+
super || File.symlink?(destination)
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|