brpm_content 0.1.50 → 0.1.51
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 +8 -8
- data/config.yml +1 -1
- data/modules/framework/lib/module_installer.rb +1 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NjcyOWZhZTcyNjUwOWU0ZDI5MmJiNTg4MmJhM2FlZTcyMjg3MmYwNw==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ODgxNzE0ZjJiZjlkYTEwOTk2NWZmMWRjZjljNjczODVlMGQ5ZTZmYg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
OTAxNzdkNTZmYzRiODllZDU1ZDRjNDYwNGI3YjVkNWEyNjhiYzFkMGMxYmIx
|
|
10
|
+
Y2Y1ZDk3MzdjODNmMWZiMzJhNzFiM2ZjNzA0ZTM1NTkyZDcwNmMzOWY3Mjdm
|
|
11
|
+
MGI4ZWU2MzA3NDIwZGNlNWE5NDhhYWFhZDA4ZWNlNTY2NmNhZGI=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
N2FiMzdkOGY2YjQyOGRmZTk3NGZkMjA2YjIzYTdiZjljNTU2YzEzNTE2Zjkx
|
|
14
|
+
NWIyYmQ5NzEzODIzZjY1ODZmY2JhMjRhNDMzNDk4ZjNjNzE1MjA1ZDk5Y2Fi
|
|
15
|
+
NzU1ZTUyYmI1ZTNmODRhNWMyYzVkNjk2ZTQ0MmFkYmZjNzNmYmM=
|
data/config.yml
CHANGED
|
@@ -134,6 +134,7 @@ class ModuleInstaller
|
|
|
134
134
|
def install_gem(module_name_or_path, module_version)
|
|
135
135
|
if module_name_or_path =~ /\.gem$/ and File.file? module_name_or_path
|
|
136
136
|
BrpmAuto.log "Installing gem #{module_name_or_path}#{module_version.nil? ? "" : " " + module_version} from file..."
|
|
137
|
+
require 'rubygems/name_tuple'
|
|
137
138
|
source = Gem::Source::SpecificFile.new module_name_or_path
|
|
138
139
|
module_spec = source.spec
|
|
139
140
|
|