massa 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 174cf1ca8b3d05a44bbead3b73423a68f74696ed
4
- data.tar.gz: 41f65f81bcfad122bec51981f896651958e9a18d
3
+ metadata.gz: c52274a43d63d062e9bcd0649ef1530cbf1d0de4
4
+ data.tar.gz: ab38da2ee61e6ceb71caab37ea63c8c9a00f2ebb
5
5
  SHA512:
6
- metadata.gz: caec0e7a48e5508b1cd4ab087b8da35e5b848825690a85768f84e929ea9b7d5a3ea88fbf05467cda19442bd182a2d908e7d714da3b620c3d3d06ceb9329b2ecd
7
- data.tar.gz: 8e184951cd8e069b0b6a18c00f7014d28d34fbefe7a3e4dcf89a636f72ee3d34c75c68a4ac76dd631ff0a3039faeac2bbbeab255ada03296796692b416e1988a
6
+ metadata.gz: fa1185c410002f9396dc0ea523d9b5fa2fcc935a3f6e3dd4a60e381b5a7a275273737c7f47fa04f63597ee17d95cbe4c28f05b437eaa3176efe1bae0bf031e74
7
+ data.tar.gz: 9f6842fd7d112004b0e57e9fc82d8d0cad620aed7002b5824b75ba4c159753dfa7e18a59d96905f5c780888a52bda9398131c2542fb6059b0259f0417ec648b1
@@ -20,3 +20,6 @@ Style/Documentation:
20
20
  RSpec/DescribeClass:
21
21
  Exclude:
22
22
  - 'spec/bin/**/*'
23
+
24
+ Metrics/AbcSize:
25
+ Max: 25
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  # Specify your gem's dependencies in massa.gemspec
data/Rakefile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'bundler/gem_tasks'
2
4
  require 'rspec/core/rake_task'
3
5
 
data/bin/massa CHANGED
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
4
  require 'optparse'
4
5
  $LOAD_PATH.push File.expand_path('../../lib', __FILE__)
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Massa
2
4
  end
3
5
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'bundler/setup' # Set up gems listed in the Gemfile.
2
4
  require 'ostruct'
3
5
  require 'yaml'
@@ -46,7 +48,7 @@ module Massa
46
48
  end
47
49
 
48
50
  unless $CHILD_STATUS.success?
49
- Massa::CLI.colorize :red, "¯\\_(ツ)_/¯ #{tool.description} failed."
51
+ Massa::CLI.colorize :red, "¯\\_(ツ)_/¯ #{tool.description} failed:"
50
52
  Massa::CLI.colorize :yellow, "$ #{tool.command}"
51
53
 
52
54
  puts command_output if command_output.to_s != ''
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Massa
2
4
  class CLI
3
5
  class << self
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Massa
2
4
  class Tool
3
5
  class << self
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Massa
4
- VERSION = '0.0.7'.freeze
4
+ VERSION = '0.0.8'
5
5
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  lib = File.expand_path('../lib', __FILE__)
2
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
5
  require 'massa/version'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: massa
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lucas Caton
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-09 00:00:00.000000000 Z
11
+ date: 2016-02-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler