massa 0.2.0.rc1 → 0.2.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/massa/tool.rb +2 -2
- data/lib/massa/version.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: d0a599d19faf68ceb42c8d18a16af465a1d3c32c
|
4
|
+
data.tar.gz: d1d276572d14eeb5e7dca110c458c274d69f5860
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe829944407a66a6600d0bf4b787f91c65d4a36a874d282f7e64a6f06b3ddba6f0265eecaa632728133d9ffefa10bd0fdf7af65ccaae76804177d5431d7000d2
|
7
|
+
data.tar.gz: bc7aac46e5f9080dfbdca5f35281061da797c624930b17bdbeb93856fd7a67535ac4ab29c479f33900e42b6757ae2ab8b3cfdee6f0daa2b3da95c54eb8253e0a
|
data/Gemfile.lock
CHANGED
data/lib/massa/tool.rb
CHANGED
@@ -7,9 +7,9 @@ module Massa
|
|
7
7
|
def initialize(name, attributes)
|
8
8
|
@name = name
|
9
9
|
@description = attributes['description']
|
10
|
-
@gem = attributes['gem'].nil? ? true : attributes[
|
10
|
+
@gem = attributes['gem'].nil? ? true : attributes['gem']
|
11
11
|
@command = attributes['command']
|
12
|
-
@required = attributes['required'].nil? ? true : attributes[
|
12
|
+
@required = attributes['required'].nil? ? true : attributes['required']
|
13
13
|
end
|
14
14
|
|
15
15
|
alias required? required
|
data/lib/massa/version.rb
CHANGED