guard-cane 0.1.3 → 0.1.4

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: 6e3b71e555843611e002e1404870fa6185f4479d
4
- data.tar.gz: 96e5c8ee25e905a41b858a56b5dcbe6a1a185dbe
3
+ metadata.gz: 078c0a49a2cdfe8ae7d919b10e30e9409e61717b
4
+ data.tar.gz: 4ac0abf907f03e540c6c8864bfff6d274825ecba
5
5
  SHA512:
6
- metadata.gz: f5601df5a10e938be463fd8ab49f3c521373cc511663e450b8075ebeba5b72d95db64926530a5a22e0f9a8309cabdc52c34bd434c640e75990220ea6889a91d4
7
- data.tar.gz: 5881a39e3db22ec2d67dbe9bf66bb0626640cbab33969ce84984fe2a0ad88ae660693617ef2bacc925ba9d4cd1ffcc21bffb849a7cc766f5c1d879e11bb0472c
6
+ metadata.gz: f711e5cb812b297c6bec308dfa1d32da9b5814bc45ffce388694293eb54b271df649a5489cc71cf6a10bf35ff1bf6d331823193be1efb5f7d35860b97cac6b48
7
+ data.tar.gz: 203396434e5fc439e1287fab5207db9019ec7c2eef2073c7c7381f8c8a434f4fb99f21ce267f812ece84002791a7d1f12a7704ee8bd4a89c7e25de933b573411
data/.gitignore CHANGED
@@ -15,3 +15,4 @@ spec/reports
15
15
  test/tmp
16
16
  test/version_tmp
17
17
  tmp
18
+ .*.swp
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |gem|
6
6
  gem.name = 'guard-cane'
7
- gem.version = '0.1.3'
7
+ gem.version = '0.1.4'
8
8
  gem.authors = ["Justin Campbell"]
9
9
  gem.email = ["justin@justincampbell.me"]
10
10
  gem.summary = "Guard plugin for Cane"
@@ -29,7 +29,7 @@ module Guard
29
29
  cane
30
30
  end
31
31
 
32
- def run_on_changes(paths)
32
+ def run_on_modifications(paths)
33
33
  cane paths
34
34
  end
35
35
 
@@ -45,15 +45,15 @@ describe Guard::Cane do
45
45
  end
46
46
  end
47
47
 
48
- describe "#run_on_changes" do
49
- subject(:run_on_changes) { guard.run_on_changes(paths) }
48
+ describe "#run_on_modifications" do
49
+ subject(:run_on_modifications) { guard.run_on_modifications(paths) }
50
50
 
51
51
  let(:paths) { %w[a b c] }
52
52
 
53
53
  it "runs cane with the paths" do
54
54
  guard.should_receive(:cane).with(paths)
55
55
 
56
- run_on_changes
56
+ run_on_modifications
57
57
  end
58
58
  end
59
59
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: guard-cane
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Campbell
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-11-04 00:00:00.000000000 Z
11
+ date: 2013-11-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cane