specific_install 0.3.1 → 0.3.2
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/Gemfile.lock +2 -2
- data/lib/rubygems/commands/specific_install_command.rb +5 -4
- data/lib/specific_install/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1fe8a6271c3d89e452478cfc076268bf6fe91ee5
|
|
4
|
+
data.tar.gz: f1a63b315b574fda3606954aa97d36f91fd36cde
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9270ba07a8f3a8ed058926746ebf29534e2712a4f355a8fcfa46f9df65e3dc6af2e99e8ebb2df312961ee59c001a59815e6e6d586babb98d54b4c02bc0bcb6c9
|
|
7
|
+
data.tar.gz: bf50d8fee05d38a639dcfa6d5b58da2df6f95e4dbb9afc429ebe3a722b703a03ab32292b83cc42570b31d19a83de69f712930546bcfa26b58ec5883cf1a03c60
|
data/Gemfile.lock
CHANGED
|
@@ -133,11 +133,12 @@ class Gem::Commands::SpecificInstallCommand < Gem::Command
|
|
|
133
133
|
end
|
|
134
134
|
|
|
135
135
|
def install_from_git(dir)
|
|
136
|
+
Dir.chdir @top_dir do
|
|
137
|
+
change_to_branch(@branch) if @branch
|
|
138
|
+
system("git submodule update --init --recursive") # issue 25
|
|
139
|
+
end
|
|
140
|
+
|
|
136
141
|
Dir.chdir dir do
|
|
137
|
-
Dir.chdir @top_dir do
|
|
138
|
-
change_to_branch(@branch) if @branch
|
|
139
|
-
system("git submodule update --init --recursive") # issue 25
|
|
140
|
-
end
|
|
141
142
|
# reliable method
|
|
142
143
|
if install_gemspec
|
|
143
144
|
success_message
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: specific_install
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Roger Pack
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2016-03-20 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: backports
|
|
@@ -152,7 +152,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
152
152
|
version: '0'
|
|
153
153
|
requirements: []
|
|
154
154
|
rubyforge_project: "[none]"
|
|
155
|
-
rubygems_version: 2.
|
|
155
|
+
rubygems_version: 2.2.2
|
|
156
156
|
signing_key:
|
|
157
157
|
specification_version: 4
|
|
158
158
|
summary: rubygems plugin that allows you you to install a gem from from its github
|