prebundler 0.7.0 → 0.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/prebundler/cli/install.rb +2 -2
- data/lib/prebundler/git_gem_ref.rb +8 -0
- data/lib/prebundler/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d3399385c6aec102752f1911cef2055cfece33d5
|
|
4
|
+
data.tar.gz: 32ec1780d831695239cdc8294a1b523c923b9622
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0f65641a0c43e8152c553cad0434989b4fe688b3cc0691f84e3a09cab0f82415a3f4a5f1b39195461337bf3a85b2e03c9d20f2e7ce7f99b67718dad7d04218ed
|
|
7
|
+
data.tar.gz: d0a0eaf2ec0a60353b5ad355c34def8e5650d7654c2e8c8efc0329a963f8288106938bd3fade0df24073f79bdbdb00288add7815134701eb0ac8ff26c1a87821
|
data/CHANGELOG.md
CHANGED
|
@@ -136,8 +136,8 @@ module Prebundler
|
|
|
136
136
|
def bundle_install_args
|
|
137
137
|
[].tap do |args|
|
|
138
138
|
args << "--gemfile #{gemfile_path}"
|
|
139
|
-
args << "--with #{with_groups}" unless with_groups.empty?
|
|
140
|
-
args << "--without #{without_groups}" unless without_groups.empty?
|
|
139
|
+
args << "--with #{with_groups.join(',')}" unless with_groups.empty?
|
|
140
|
+
args << "--without #{without_groups.join(',')}" unless without_groups.empty?
|
|
141
141
|
args << "--jobs #{options[:jobs]}"
|
|
142
142
|
args << "--binstubs" if options[:binstubs]
|
|
143
143
|
end.join(' ')
|
|
@@ -73,6 +73,14 @@ module Prebundler
|
|
|
73
73
|
end
|
|
74
74
|
end
|
|
75
75
|
|
|
76
|
+
def install_dir
|
|
77
|
+
File.join(install_path, "#{repo_name}-#{version}")
|
|
78
|
+
end
|
|
79
|
+
|
|
80
|
+
def repo_name
|
|
81
|
+
@repo_name ||= URI.parse(uri).path.split('/').last.chomp('.git')
|
|
82
|
+
end
|
|
83
|
+
|
|
76
84
|
private
|
|
77
85
|
|
|
78
86
|
def gemspec_files
|
data/lib/prebundler/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: prebundler
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Cameron Dutro
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-02-02 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|