brewgem 0.0.6 → 0.0.7
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/lib/brewgem/version.rb +1 -1
- data/lib/brewgem.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9777e158044949d398a53dca1497cca994e667a2
|
|
4
|
+
data.tar.gz: 4d82542210b80fc4d76ffe48589f545d55bf8b11
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9149a85d99c56c0b9fbfc6b159cbb9677e47cfc420d6b78dc9a6c4ba9c08c95f13d2eae54fa6a2fc8e4806572a56606d308e28d51bfd70f7a85ea78ea47cb09a
|
|
7
|
+
data.tar.gz: 634d19ec9d5c7f8a9ad082f220aa74e05e868bccdbf62ba8157e1c7644fa99cba22b118e992578cf09570623a341ed236e6c60f2d870b1e9a9f0be5061899862
|
data/lib/brewgem/version.rb
CHANGED
data/lib/brewgem.rb
CHANGED
|
@@ -46,7 +46,7 @@ module BrewGem
|
|
|
46
46
|
|
|
47
47
|
# find the .gem that was built
|
|
48
48
|
gemspec = Gem::Specification::load(gemspec_path)
|
|
49
|
-
gem_path = "#{gemspec.full_gem_path}.gem"
|
|
49
|
+
gem_path = File.join(local_path, "#{File.basename(gemspec.full_gem_path)}.gem")
|
|
50
50
|
|
|
51
51
|
# recursively call self to install from local gem
|
|
52
52
|
install(local: gem_path)
|