hoygancop 0.0.1.1 → 0.0.1.2

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.
@@ -13,7 +13,7 @@ module Hoygancop
13
13
 
14
14
  def report
15
15
  class_name = Hoygancop::Support.demodulize self.class.name
16
- [Hoygancop::Support.underscore(class_name).to_sym] if hoygan? || []
16
+ hoygan? ? [Hoygancop::Support.underscore(class_name).to_sym] : []
17
17
  end
18
18
  end
19
19
  end
@@ -18,7 +18,7 @@ module Hoygancop
18
18
  end
19
19
 
20
20
  def report
21
- [:too_much_caps] if hoygan? || []
21
+ hoygan? ? [:too_much_caps] : []
22
22
  end
23
23
 
24
24
  private
@@ -1,3 +1,3 @@
1
1
  module Hoygancop
2
- VERSION = "0.0.1.1"
2
+ VERSION = "0.0.1.2"
3
3
  end
@@ -70,14 +70,19 @@ describe Hoygancop do
70
70
  end
71
71
 
72
72
  describe '#report' do
73
- let(:report){ subject.report 'HOYGAN AYUDENME TENGO UN PROBLEMA!!!!!' }
73
+ let(:report){ subject.report 'AYUDENME TENGO UN PROBLEMA!!!!!' }
74
74
 
75
75
  it "includes caps error" do
76
76
  report.must_include :too_much_caps
77
77
  end
78
78
 
79
- it "includes hoygan error" do
80
- report.must_include :starts_with_hoygan
79
+ it "doesn't include hoygan error" do
80
+ report.wont_include :starts_with_hoygan
81
+ end
82
+
83
+ it "returns an empty array if there isn't an error" do
84
+ report = subject.report("This is a polite sentence.")
85
+ report.length.must_equal 0
81
86
  end
82
87
  end
83
88
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hoygancop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1.1
4
+ version: 0.0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2011-12-08 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: minitest
16
- requirement: &70255104157360 !ruby/object:Gem::Requirement
16
+ requirement: &70201068732380 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *70255104157360
24
+ version_requirements: *70201068732380
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: mocha
27
- requirement: &70255104156880 !ruby/object:Gem::Requirement
27
+ requirement: &70201068731920 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: '0'
33
33
  type: :development
34
34
  prerelease: false
35
- version_requirements: *70255104156880
35
+ version_requirements: *70201068731920
36
36
  description: A gem for easy detection and correction of hoygans
37
37
  email:
38
38
  - josepjaume@gmail.com