warder 0.1.7 → 0.1.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: b864c54097bcb93f454fc147be1e537f9576356e
4
- data.tar.gz: af7fde372eaf74e95b8b5dab73f7c6d724685e5c
3
+ metadata.gz: f653ea9f91c3d9f3a71238c976780c9e7467a313
4
+ data.tar.gz: 0563dae45388c33e8c07271849aaa9d468141656
5
5
  SHA512:
6
- metadata.gz: 6cc1754aa316c2ea9172d6d6190d8681126f82ec8b8846908b2a0cf6d752ba203439b9da08b483d8aff21c3e2fe6f863b23fcaef83a06d8909bf79fae6439486
7
- data.tar.gz: 4df26aece35d2a73f1b0f71dee59f912f69057dba4bc063a96abb73b9b0a453335ce0a45e0a01df1bdd6ef0fcd54f4a2314d21a861dab1e21969f4fd0e935bb4
6
+ metadata.gz: 281174bf428c4675c617ee9ed6965e75abda663c8f518e071c9309f9d05f865788c75aeaba0457a62e94b8d5450c480682e780cd5823a084f8bdd2f7956d321a
7
+ data.tar.gz: f531a80c2249fb76518943364f2dc2d0e7fe3e198af948c94dd6977f2752790519903f2158b6b617689754aaa10368e33e8f422411db101d8a5ee93ec57a971c
data/.travis.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.0.0
4
- - 2.1.0
3
+ - 2.0
4
+ - 2.1
5
5
  gemfile:
6
6
  - Gemfile
7
7
  script:
@@ -1,5 +1,5 @@
1
1
  def executing_code_smells
2
- "executing 'reek .'"
2
+ "executing 'reek --no-color .'"
3
3
  end
4
4
 
5
5
  def code_smells_output
@@ -1,5 +1,5 @@
1
1
  def executing_style_guide
2
- "executing 'rubocop .'"
2
+ "executing 'rubocop --no-color .'"
3
3
  end
4
4
 
5
5
  def style_guide_output
@@ -38,7 +38,7 @@ module Warder
38
38
  end
39
39
 
40
40
  def version(opts)
41
- opts.on('-v', '--version', 'Show version') do |value|
41
+ opts.on('-v', '--version', 'Show version') do |_|
42
42
  @stdout.puts Warder::VERSION
43
43
  @kernel.exit 0
44
44
  end
@@ -4,7 +4,7 @@ module Warder
4
4
  CLI_OPTION = 's'
5
5
  CLI_FULL_OPTION = 'code-smells'
6
6
  DESCRIPTION = 'Run code smells validation'
7
- COMMAND_NAME = 'reek'
7
+ COMMAND_NAME = 'reek --no-color'
8
8
  FAILURE_REGEXP = /(\d+) warnings?/
9
9
  end
10
10
  end
@@ -4,7 +4,7 @@ module Warder
4
4
  CLI_OPTION = 'g'
5
5
  CLI_FULL_OPTION = 'style-guide'
6
6
  DESCRIPTION = 'Run style guide validation'
7
- COMMAND_NAME = 'rubocop'
7
+ COMMAND_NAME = 'rubocop --no-color'
8
8
  FAILURE_REGEXP = /(\d+|no) offense/
9
9
  end
10
10
  end
@@ -1,4 +1,4 @@
1
1
  # define warder version
2
2
  module Warder
3
- VERSION = '0.1.7'
3
+ VERSION = '0.1.8'
4
4
  end
@@ -1,25 +1,25 @@
1
1
  GEM
2
2
  remote: https://rubygems.org/
3
3
  specs:
4
- actionmailer (4.0.4)
5
- actionpack (= 4.0.4)
4
+ actionmailer (4.0.5)
5
+ actionpack (= 4.0.5)
6
6
  mail (~> 2.5.4)
7
- actionpack (4.0.4)
8
- activesupport (= 4.0.4)
7
+ actionpack (4.0.5)
8
+ activesupport (= 4.0.5)
9
9
  builder (~> 3.1.0)
10
10
  erubis (~> 2.7.0)
11
11
  rack (~> 1.5.2)
12
12
  rack-test (~> 0.6.2)
13
- activemodel (4.0.4)
14
- activesupport (= 4.0.4)
13
+ activemodel (4.0.5)
14
+ activesupport (= 4.0.5)
15
15
  builder (~> 3.1.0)
16
- activerecord (4.0.4)
17
- activemodel (= 4.0.4)
16
+ activerecord (4.0.5)
17
+ activemodel (= 4.0.5)
18
18
  activerecord-deprecated_finders (~> 1.0.2)
19
- activesupport (= 4.0.4)
19
+ activesupport (= 4.0.5)
20
20
  arel (~> 4.0.0)
21
21
  activerecord-deprecated_finders (1.0.3)
22
- activesupport (4.0.4)
22
+ activesupport (4.0.5)
23
23
  i18n (~> 0.6, >= 0.6.9)
24
24
  minitest (~> 4.2)
25
25
  multi_json (~> 1.3)
@@ -40,17 +40,17 @@ GEM
40
40
  rack (1.5.2)
41
41
  rack-test (0.6.2)
42
42
  rack (>= 1.0)
43
- rails (4.0.4)
44
- actionmailer (= 4.0.4)
45
- actionpack (= 4.0.4)
46
- activerecord (= 4.0.4)
47
- activesupport (= 4.0.4)
43
+ rails (4.0.5)
44
+ actionmailer (= 4.0.5)
45
+ actionpack (= 4.0.5)
46
+ activerecord (= 4.0.5)
47
+ activesupport (= 4.0.5)
48
48
  bundler (>= 1.3.0, < 2.0)
49
- railties (= 4.0.4)
49
+ railties (= 4.0.5)
50
50
  sprockets-rails (~> 2.0.0)
51
- railties (4.0.4)
52
- actionpack (= 4.0.4)
53
- activesupport (= 4.0.4)
51
+ railties (4.0.5)
52
+ actionpack (= 4.0.5)
53
+ activesupport (= 4.0.5)
54
54
  rake (>= 0.8.7)
55
55
  thor (>= 0.18.1, < 2.0)
56
56
  rake (10.3.1)
@@ -76,5 +76,5 @@ PLATFORMS
76
76
  ruby
77
77
 
78
78
  DEPENDENCIES
79
- rails (~> 4.0.4)
79
+ rails (~> 4.0.5)
80
80
  sqlite3
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: warder
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yura Tolstik
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-04-23 00:00:00.000000000 Z
11
+ date: 2014-05-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop