massa 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c2ba08bdec35891e253256b7ba9886ba361d72d2
4
- data.tar.gz: 1f9e9b2cb0b09545e2f87e53b32fd8015b5a674f
3
+ metadata.gz: aadc51e42acbcd653a9413bcb4614e7ae72dec4b
4
+ data.tar.gz: 73325f3affa4b659a750e64a27f957e2f86d361f
5
5
  SHA512:
6
- metadata.gz: 0d6f304f6f0dc662fd5d171c8b47e8126a49835b6fcf419a98750efc36c8e3d7a0e1707590b824ee361ede8cb0a8f267a68dd2f5ee8eb498f28423c7078095b6
7
- data.tar.gz: a263467e79bf57730572ce65a39dc8f2202482d8ac8dd654024a80589acac0a1002b663655b14aa8dce9dff0ef2e687efe30780b7a8b193a83c6a246aed207bc
6
+ metadata.gz: 273760242503e483a770ddc0df15838279f347c08c8c4aaa29bf0fb6fe99881384bfadb40f475582a38e4293870f5303d1a57007e34d8109ada98d11382db6c3
7
+ data.tar.gz: de72518c9811742b803b4dbfda809a6a8b87719acf2626fc55632ebcebb36819b4185d0251ec4b6304b07ff4744e6211a03604ebc944724d9bcd821cdfc4f6ac
@@ -4,7 +4,13 @@ module Massa
4
4
  class Tool
5
5
  class << self
6
6
  def list
7
- YAML.load_file(config_file_from_gem).merge YAML.load_file(config_file_from_project)
7
+ default_tools = YAML.load_file(config_file_from_gem)
8
+
9
+ if File.exist?(config_file_from_project)
10
+ default_tools.merge YAML.load_file(config_file_from_project)
11
+ else
12
+ default_tools
13
+ end
8
14
  end
9
15
 
10
16
  def config_file_from_gem
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Massa
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
@@ -14,7 +14,7 @@ Gem::Specification.new do |spec|
14
14
  spec.homepage = 'http://github.com/lucascaton/massa'
15
15
  spec.license = 'MIT'
16
16
 
17
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec)/}) }
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(readme|spec)/}) }
18
18
  spec.bindir = 'bin'
19
19
  spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
20
20
  spec.require_paths = ['lib']
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: massa
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lucas Caton
@@ -134,8 +134,6 @@ files:
134
134
  - lib/massa/tool.rb
135
135
  - lib/massa/version.rb
136
136
  - massa.gemspec
137
- - readme/massa-v.gif
138
- - readme/massa.gif
139
137
  homepage: http://github.com/lucascaton/massa
140
138
  licenses:
141
139
  - MIT
Binary file
Binary file