checker 0.7.0 → 0.8.0.beta

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.
Files changed (50) hide show
  1. checksums.yaml +5 -5
  2. data/.travis.yml +5 -6
  3. data/Gemfile +1 -1
  4. data/Gemfile.lock +89 -45
  5. data/Guardfile +16 -0
  6. data/Rakefile +2 -2
  7. data/bin/checker +2 -2
  8. data/checker.gemspec +13 -11
  9. data/lib/checker.rb +14 -16
  10. data/lib/checker/cli.rb +19 -22
  11. data/lib/checker/core_ext.rb +7 -9
  12. data/lib/checker/helper.rb +1 -1
  13. data/lib/checker/installator.rb +8 -8
  14. data/lib/checker/modules/base.rb +42 -44
  15. data/lib/checker/modules/coffeescript.rb +5 -3
  16. data/lib/checker/modules/conflict.rb +4 -4
  17. data/lib/checker/modules/console_log.rb +4 -3
  18. data/lib/checker/modules/haml.rb +4 -2
  19. data/lib/checker/modules/javascript.rb +5 -3
  20. data/lib/checker/modules/multifile.rb +16 -0
  21. data/lib/checker/modules/pry.rb +4 -4
  22. data/lib/checker/modules/rubocop.rb +12 -4
  23. data/lib/checker/modules/ruby.rb +6 -3
  24. data/lib/checker/modules/sass.rb +16 -14
  25. data/lib/checker/modules/slim.rb +4 -2
  26. data/lib/checker/modules/yaml.rb +5 -3
  27. data/lib/checker/options.rb +1 -1
  28. data/lib/checker/results/console_log.rb +1 -1
  29. data/lib/checker/rvm.rb +2 -2
  30. data/lib/checker/version.rb +1 -1
  31. data/spec/checker/cli_spec.rb +10 -8
  32. data/spec/checker/fixtures/conflict/without_conflict.rb +1 -2
  33. data/spec/checker/fixtures/pry/with_both.rb +1 -2
  34. data/spec/checker/fixtures/pry/with_pry.rb +1 -1
  35. data/spec/checker/fixtures/pry/with_pry_remote.rb +1 -1
  36. data/spec/checker/fixtures/pry/without_pry.rb +1 -2
  37. data/spec/checker/fixtures/ruby/good.rb +1 -1
  38. data/spec/checker/modules/base_spec.rb +15 -15
  39. data/spec/checker/modules/coffeescript_spec.rb +11 -11
  40. data/spec/checker/modules/conflict_spec.rb +8 -8
  41. data/spec/checker/modules/console_log_spec.rb +13 -13
  42. data/spec/checker/modules/haml_spec.rb +13 -13
  43. data/spec/checker/modules/javascript_spec.rb +22 -22
  44. data/spec/checker/modules/pry_spec.rb +10 -10
  45. data/spec/checker/modules/ruby_spec.rb +9 -10
  46. data/spec/checker/modules/sass_spec.rb +46 -46
  47. data/spec/checker/modules/slim_spec.rb +12 -12
  48. data/spec/checker/modules/yaml_spec.rb +12 -12
  49. data/spec/spec_helper.rb +6 -14
  50. metadata +39 -10
@@ -1,35 +1,35 @@
1
- require 'spec_helper'
1
+ require "spec_helper"
2
2
 
3
3
  describe Checker::Modules::Pry do
4
- it 'should check all files' do
5
- files = ['a.rb', 'b.js.erb', 'c.r', 'd.yaml', 'e.yml', 'f.coffee']
4
+ it "should check all files" do
5
+ files = ["a.rb", "b.js.erb", "c.r", "d.yaml", "e.yml", "f.coffee"]
6
6
  mod = Checker::Modules::Pry.new(files)
7
- mod.stub(:check_one).and_return(stub(:success? => true, :status => :ok))
8
- mod.should_receive(:check_one).exactly(6).times
9
- mod.check
7
+ allow(mod).to receive(:check_one).and_return(double(success?: true, status: :ok))
8
+ expect(mod).to receive(:check_one).exactly(6).times
9
+ mod.check
10
10
  end
11
11
 
12
12
  it "should not find the pry or remote_pry" do
13
13
  files = [fixture("pry", "without_pry.rb")]
14
14
  mod = Checker::Modules::Pry.new(files)
15
- mod.check.should be_true
15
+ expect(mod.check).to be true
16
16
  end
17
17
 
18
18
  it "should find the pry or remote_pry" do
19
19
  files = [fixture("pry", "with_pry.rb")]
20
20
  mod = Checker::Modules::Pry.new(files)
21
- mod.check.should be_false
21
+ expect(mod.check).to be false
22
22
  end
23
23
 
24
24
  it "should find the pry or remote_pry" do
25
25
  files = [fixture("pry", "with_pry_remote.rb")]
26
26
  mod = Checker::Modules::Pry.new(files)
27
- mod.check.should be_false
27
+ expect(mod.check).to be false
28
28
  end
29
29
 
30
30
  it "should find the pry or remote_pry" do
31
31
  files = [fixture("pry", "with_both.rb")]
32
32
  mod = Checker::Modules::Pry.new(files)
33
- mod.check.should be_false
33
+ expect(mod.check).to be false
34
34
  end
35
35
  end
@@ -1,26 +1,25 @@
1
- require 'spec_helper'
1
+ require "spec_helper"
2
2
 
3
3
  describe Checker::Modules::Ruby do
4
- it 'should only check .rb files' do
5
- files = ['a.rb', 'b.js.erb', 'c.r']
4
+ it "should only check .rb files" do
5
+ files = ["a.rb", "b.js.erb", "c.r"]
6
6
  mod = Checker::Modules::Ruby.new(files)
7
- mod.stub(:check_one_file).and_return(stub(:success? => true, :status => :ok))
8
- mod.should_receive(:check_one_file).with('a.rb')
9
- mod.should_not_receive(:check_one_file).with('b.js.erb')
10
- mod.should_not_receive(:check_one_file).with('c.r')
7
+ allow(mod).to receive(:check_one_file).and_return(double(success?: true, status: :ok))
8
+ expect(mod).to receive(:check_one_file).with("a.rb")
9
+ expect(mod).not_to receive(:check_one_file).with("b.js.erb")
10
+ expect(mod).not_to receive(:check_one_file).with("c.r")
11
11
  mod.check
12
12
  end
13
13
 
14
-
15
14
  it "should pass the syntax check" do
16
15
  files = [fixture("ruby", "good.rb")]
17
16
  mod = Checker::Modules::Ruby.new(files)
18
- mod.check.should be_true
17
+ expect(mod.check).to be true
19
18
  end
20
19
 
21
20
  it "should not pass the syntax check" do
22
21
  files = [fixture("ruby", "bad.rb")]
23
22
  mod = Checker::Modules::Ruby.new(files)
24
- mod.check.should be_false
23
+ expect(mod.check).to be false
25
24
  end
26
25
  end
@@ -1,49 +1,49 @@
1
- require 'spec_helper'
1
+ require "spec_helper"
2
2
 
3
3
  describe Checker::Modules::Sass do
4
- it 'should only check .sass and .scss files' do
5
- files = ['a.rb', 'b.js.erb', 'c.r', 'd.yml', 'e.yaml', 'f.coffee', 'g.haml', 'h.js', 'i.scss', 'j.sass']
4
+ it "should only check .sass and .scss files" do
5
+ files = ["a.rb", "b.js.erb", "c.r", "d.yml", "e.yaml", "f.coffee", "g.haml", "h.js", "i.scss", "j.sass"]
6
6
  mod = Checker::Modules::Sass.new(files)
7
- mod.stub(:check_for_executable).and_return(true)
8
- mod.stub(:check_one_file).and_return(stub(:success? => true, :status => :ok))
9
- mod.should_receive(:check_one_file).with('j.sass')
10
- mod.should_receive(:check_one_file).with('i.scss')
11
- mod.should_not_receive(:check_one_file).with('h.js')
12
- mod.should_not_receive(:check_one_file).with('g.haml')
13
- mod.should_not_receive(:check_one_file).with('f.coffee')
14
- mod.should_not_receive(:check_one_file).with('e.yaml')
15
- mod.should_not_receive(:check_one_file).with('d.yml')
16
- mod.should_not_receive(:check_one_file).with('a.rb')
17
- mod.should_not_receive(:check_one_file).with('b.js.erb')
18
- mod.should_not_receive(:check_one_file).with('c.r')
19
- mod.check
7
+ allow(mod).to receive(:check_for_executable).and_return(true)
8
+ allow(mod).to receive(:check_one_file).and_return(double(success?: true, status: :ok))
9
+ expect(mod).to receive(:check_one_file).with("j.sass")
10
+ expect(mod).to receive(:check_one_file).with("i.scss")
11
+ expect(mod).not_to receive(:check_one_file).with("h.js")
12
+ expect(mod).not_to receive(:check_one_file).with("g.haml")
13
+ expect(mod).not_to receive(:check_one_file).with("f.coffee")
14
+ expect(mod).not_to receive(:check_one_file).with("e.yaml")
15
+ expect(mod).not_to receive(:check_one_file).with("d.yml")
16
+ expect(mod).not_to receive(:check_one_file).with("a.rb")
17
+ expect(mod).not_to receive(:check_one_file).with("b.js.erb")
18
+ expect(mod).not_to receive(:check_one_file).with("c.r")
19
+ mod.check
20
20
  end
21
21
 
22
22
  context "normal check" do
23
23
  before do
24
- Checker::Options.stub(:use_rails_for_sass).and_return(false)
24
+ allow(Checker::Options).to receive(:use_rails_for_sass).and_return(false)
25
25
  end
26
26
 
27
27
  it "gives proper command to sass module while checking .sass files" do
28
28
  files = ["a.sass"]
29
29
  mod = Checker::Modules::Sass.new(files)
30
- mod.stub(:check_for_executable).and_return(true)
31
- mod.should_receive(:plain_command).with("sass -c .checker-cache/69cb154f5eeff19216d2879872ba6569").and_return(0)
30
+ allow(mod).to receive(:check_for_executable).and_return(true)
31
+ expect(mod).to receive(:plain_command).with("sass -c a.sass").and_return(0)
32
32
  mod.check
33
33
  end
34
34
 
35
35
  it "gives proper command to sass module while checking .scss files" do
36
36
  files = ["a.scss"]
37
37
  mod = Checker::Modules::Sass.new(files)
38
- mod.stub(:check_for_executable).and_return(true)
39
- mod.should_receive(:plain_command).with("sass --scss -c .checker-cache/13dbadc466ed1f9bdfbb2b545e45d012").and_return(0)
38
+ allow(mod).to receive(:check_for_executable).and_return(true)
39
+ expect(mod).to receive(:plain_command).with("sass --scss -c a.scss").and_return(0)
40
40
  mod.check
41
41
  end
42
42
  end
43
43
 
44
44
  context "rails check" do
45
45
  before do
46
- Checker::Options.stub(:use_rails_for_sass).and_return(true)
46
+ allow(Checker::Options).to receive(:use_rails_for_sass).and_return(true)
47
47
  end
48
48
 
49
49
  after do
@@ -53,48 +53,48 @@ describe Checker::Modules::Sass do
53
53
  it "runs rails check if preconditions_for_rails are met" do
54
54
  files = ["a.sass"]
55
55
  mod = Checker::Modules::Sass.new(files)
56
- mod.stub(:preconditions_for_rails?).and_return(true)
57
- mod.stub(:rails_project?).and_return(true)
58
- mod.stub(:rails_with_ap?).and_return(true)
59
- mod.stub(:check_for_executable).and_return(true)
60
- mod.stub(:stylesheets_dir).and_return("spec/assets/stylesheets/")
61
- mod.should_receive(:rails_check).and_return(Checker::Result.result(mod, 0))
56
+ allow(mod).to receive(:preconditions_for_rails?).and_return(true)
57
+ allow(mod).to receive(:rails_project?).and_return(true)
58
+ allow(mod).to receive(:rails_with_ap?).and_return(true)
59
+ allow(mod).to receive(:check_for_executable).and_return(true)
60
+ allow(mod).to receive(:stylesheets_dir).and_return("spec/assets/stylesheets/")
61
+ expect(mod).to receive(:rails_check).and_return(Checker::Result.result(mod, 0))
62
62
  mod.check
63
63
  end
64
64
 
65
65
  it "runs normal check if preconditions_for_rails aren't met" do
66
66
  files = ["a.sass"]
67
67
  mod = Checker::Modules::Sass.new(files)
68
- mod.stub(:preconditions_for_rails?).and_return(false)
69
- mod.stub(:rails_project?).and_return(true)
70
- mod.stub(:rails_with_ap?).and_return(true)
71
- mod.stub(:check_for_executable).and_return(true)
72
- mod.stub(:stylesheets_dir).and_return("spec/assets/stylesheets/")
73
- mod.should_receive(:normal_check).and_return(Checker::Result.result(mod, 0))
68
+ allow(mod).to receive(:preconditions_for_rails?).and_return(false)
69
+ allow(mod).to receive(:rails_project?).and_return(true)
70
+ allow(mod).to receive(:rails_with_ap?).and_return(true)
71
+ allow(mod).to receive(:check_for_executable).and_return(true)
72
+ allow(mod).to receive(:stylesheets_dir).and_return("spec/assets/stylesheets/")
73
+ expect(mod).to receive(:normal_check).and_return(Checker::Result.result(mod, 0))
74
74
  mod.check
75
75
  end
76
76
 
77
77
  it "gives proper command to sass module while checking .sass files" do
78
78
  files = ["a.sass"]
79
79
  mod = Checker::Modules::Sass.new(files)
80
- mod.stub(:preconditions_for_rails?).and_return(true)
81
- mod.stub(:rails_project?).and_return(true)
82
- mod.stub(:rails_with_ap?).and_return(true)
83
- mod.stub(:check_for_executable).and_return(true)
84
- mod.stub(:stylesheets_dir).and_return("spec/assets/stylesheets/")
85
- mod.should_receive(:plain_command).with("rails runner \"Rails.application.assets.find_asset(\\\"#{Dir.pwd}/spec/assets/stylesheets/checker-cachea.sass\\\").to_s\"").and_return(0)
80
+ allow(mod).to receive(:preconditions_for_rails?).and_return(true)
81
+ allow(mod).to receive(:rails_project?).and_return(true)
82
+ allow(mod).to receive(:rails_with_ap?).and_return(true)
83
+ allow(mod).to receive(:check_for_executable).and_return(true)
84
+ allow(mod).to receive(:stylesheets_dir).and_return("spec/assets/stylesheets/")
85
+ expect(mod).to receive(:plain_command).with("rails runner \"Rails.application.assets.find_asset(\\\"#{Dir.pwd}/spec/assets/stylesheets/checker-cachea.sass\\\").to_s\"").and_return(0)
86
86
  mod.check
87
87
  end
88
88
 
89
89
  it "gives proper command to sass module while checking .scss files" do
90
90
  files = ["a.scss"]
91
91
  mod = Checker::Modules::Sass.new(files)
92
- mod.stub(:preconditions_for_rails?).and_return(true)
93
- mod.stub(:rails_project?).and_return(true)
94
- mod.stub(:rails_with_ap?).and_return(true)
95
- mod.stub(:check_for_executable).and_return(true)
96
- mod.stub(:stylesheets_dir).and_return("spec/assets/stylesheets/")
97
- mod.should_receive(:plain_command).with("rails runner \"Rails.application.assets.find_asset(\\\"#{Dir.pwd}/spec/assets/stylesheets/checker-cachea.scss\\\").to_s\"").and_return(0)
92
+ allow(mod).to receive(:preconditions_for_rails?).and_return(true)
93
+ allow(mod).to receive(:rails_project?).and_return(true)
94
+ allow(mod).to receive(:rails_with_ap?).and_return(true)
95
+ allow(mod).to receive(:check_for_executable).and_return(true)
96
+ allow(mod).to receive(:stylesheets_dir).and_return("spec/assets/stylesheets/")
97
+ expect(mod).to receive(:plain_command).with("rails runner \"Rails.application.assets.find_asset(\\\"#{Dir.pwd}/spec/assets/stylesheets/checker-cachea.scss\\\").to_s\"").and_return(0)
98
98
  mod.check
99
99
  end
100
100
  end
@@ -1,18 +1,18 @@
1
- require 'spec_helper'
1
+ require "spec_helper"
2
2
 
3
3
  describe Checker::Modules::Slim do
4
- it 'should only check .slim files' do
5
- files = ['a.rb', 'b.js.erb', 'c.r', 'd.yml', 'e.yaml', 'f.coffee', 'g.slim']
4
+ it "should only check .slim files" do
5
+ files = ["a.rb", "b.js.erb", "c.r", "d.yml", "e.yaml", "f.coffee", "g.slim"]
6
6
  mod = Checker::Modules::Slim.new(files)
7
- mod.stub(:check_for_executable).and_return(true)
8
- mod.stub(:check_one_file).and_return(stub(:success? => true, :status => :ok))
9
- mod.should_receive(:check_one_file).with('g.slim')
10
- mod.should_not_receive(:check_one_file).with('f.coffee')
11
- mod.should_not_receive(:check_one_file).with('e.yaml')
12
- mod.should_not_receive(:check_one_file).with('d.yml')
13
- mod.should_not_receive(:check_one_file).with('a.rb')
14
- mod.should_not_receive(:check_one_file).with('b.js.erb')
15
- mod.should_not_receive(:check_one_file).with('c.r')
7
+ allow(mod).to receive(:check_for_executable).and_return(true)
8
+ allow(mod).to receive(:check_one_file).and_return(double(success?: true, status: :ok))
9
+ expect(mod).to receive(:check_one_file).with("g.slim")
10
+ expect(mod).not_to receive(:check_one_file).with("f.coffee")
11
+ expect(mod).not_to receive(:check_one_file).with("e.yaml")
12
+ expect(mod).not_to receive(:check_one_file).with("d.yml")
13
+ expect(mod).not_to receive(:check_one_file).with("a.rb")
14
+ expect(mod).not_to receive(:check_one_file).with("b.js.erb")
15
+ expect(mod).not_to receive(:check_one_file).with("c.r")
16
16
  mod.check
17
17
  end
18
18
  end
@@ -1,27 +1,27 @@
1
- require 'spec_helper'
1
+ require "spec_helper"
2
2
 
3
3
  describe Checker::Modules::Yaml do
4
- it 'should only check .yaml and .yml files' do
5
- files = ['a.rb', 'b.js.erb', 'c.r', 'd.yml', 'e.yaml']
4
+ it "should only check .yaml and .yml files" do
5
+ files = ["a.rb", "b.js.erb", "c.r", "d.yml", "e.yaml"]
6
6
  mod = Checker::Modules::Yaml.new(files)
7
- mod.stub(:check_one_file).and_return(stub(:success? => true, :status => :ok))
8
- mod.should_receive(:check_one_file).with('d.yml')
9
- mod.should_receive(:check_one_file).with('e.yaml')
10
- mod.should_not_receive(:check_one_file).with('a.rb')
11
- mod.should_not_receive(:check_one_file).with('b.js.erb')
12
- mod.should_not_receive(:check_one_file).with('c.r')
13
- mod.check
7
+ allow(mod).to receive(:check_one_file).and_return(double(success?: true, status: :ok))
8
+ expect(mod).to receive(:check_one_file).with("d.yml")
9
+ expect(mod).to receive(:check_one_file).with("e.yaml")
10
+ expect(mod).not_to receive(:check_one_file).with("a.rb")
11
+ expect(mod).not_to receive(:check_one_file).with("b.js.erb")
12
+ expect(mod).not_to receive(:check_one_file).with("c.r")
13
+ mod.check
14
14
  end
15
15
 
16
16
  it "should properly fetch yaml files" do
17
17
  files = [fixture("yaml", "good.yaml")]
18
18
  mod = Checker::Modules::Yaml.new(files)
19
- mod.check.should be_true
19
+ expect(mod.check).to be true
20
20
  end
21
21
 
22
22
  it "should not pass the syntax check" do
23
23
  files = [fixture("yaml", "bad.yaml")]
24
24
  mod = Checker::Modules::Yaml.new(files)
25
- mod.check.should be_false
25
+ expect(mod.check).to be false
26
26
  end
27
27
  end
@@ -1,8 +1,8 @@
1
- require 'digest/md5'
2
- require 'coveralls'
1
+ require "digest/md5"
2
+ require "coveralls"
3
3
  Coveralls.wear!
4
4
 
5
- $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
5
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), "..", "lib"))
6
6
 
7
7
  FIXTURES_PATH = File.join(File.dirname(__FILE__), "checker", "fixtures")
8
8
 
@@ -10,18 +10,10 @@ def fixture(dir, filename)
10
10
  "#{FIXTURES_PATH}/#{dir}/#{filename}"
11
11
  end
12
12
 
13
- def digest filename
13
+ def digest(filename)
14
14
  Digest::MD5.hexdigest(filename)
15
15
  end
16
16
 
17
- require 'checker/cli'
17
+ require "checker/cli"
18
18
 
19
- module Checker
20
- module Modules
21
- class Base
22
- def checkout_file file_name, target
23
- `cp #{file_name} #{checkout_file_name(target)} > /dev/null 2>&1`
24
- end
25
- end
26
- end
27
- end
19
+ RSpec.configure(&:raise_errors_for_deprecations!)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: checker
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.8.0.beta
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jacek Jakubik
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2015-03-02 00:00:00.000000000 Z
12
+ date: 2018-01-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: colorize
@@ -17,28 +17,28 @@ dependencies:
17
17
  requirements:
18
18
  - - "~>"
19
19
  - !ruby/object:Gem::Version
20
- version: 0.7.0
20
+ version: 0.8.0
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
25
  - - "~>"
26
26
  - !ruby/object:Gem::Version
27
- version: 0.7.0
27
+ version: 0.8.0
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: rubocop
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
32
  - - "~>"
33
33
  - !ruby/object:Gem::Version
34
- version: 0.28.0
34
+ version: 0.52.0
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
39
  - - "~>"
40
40
  - !ruby/object:Gem::Version
41
- version: 0.28.0
41
+ version: 0.52.0
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: coveralls
44
44
  requirement: !ruby/object:Gem::Requirement
@@ -53,6 +53,34 @@ dependencies:
53
53
  - - ">="
54
54
  - !ruby/object:Gem::Version
55
55
  version: '0'
56
+ - !ruby/object:Gem::Dependency
57
+ name: guard-rspec
58
+ requirement: !ruby/object:Gem::Requirement
59
+ requirements:
60
+ - - ">="
61
+ - !ruby/object:Gem::Version
62
+ version: '0'
63
+ type: :development
64
+ prerelease: false
65
+ version_requirements: !ruby/object:Gem::Requirement
66
+ requirements:
67
+ - - ">="
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ - !ruby/object:Gem::Dependency
71
+ name: rake
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - ">="
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - ">="
82
+ - !ruby/object:Gem::Version
83
+ version: '0'
56
84
  - !ruby/object:Gem::Dependency
57
85
  name: rspec
58
86
  requirement: !ruby/object:Gem::Requirement
@@ -83,6 +111,7 @@ files:
83
111
  - CHANGELOG
84
112
  - Gemfile
85
113
  - Gemfile.lock
114
+ - Guardfile
86
115
  - LICENCE
87
116
  - README.md
88
117
  - Rakefile
@@ -99,6 +128,7 @@ files:
99
128
  - lib/checker/modules/console_log.rb
100
129
  - lib/checker/modules/haml.rb
101
130
  - lib/checker/modules/javascript.rb
131
+ - lib/checker/modules/multifile.rb
102
132
  - lib/checker/modules/pry.rb
103
133
  - lib/checker/modules/rubocop.rb
104
134
  - lib/checker/modules/ruby.rb
@@ -154,14 +184,13 @@ required_ruby_version: !ruby/object:Gem::Requirement
154
184
  version: '0'
155
185
  required_rubygems_version: !ruby/object:Gem::Requirement
156
186
  requirements:
157
- - - ">="
187
+ - - ">"
158
188
  - !ruby/object:Gem::Version
159
- version: '0'
189
+ version: 1.3.1
160
190
  requirements: []
161
191
  rubyforge_project:
162
- rubygems_version: 2.2.2
192
+ rubygems_version: 2.7.3
163
193
  signing_key:
164
194
  specification_version: 4
165
195
  summary: Syntax checker for various files
166
196
  test_files: []
167
- has_rdoc: