File tree 4 files changed +29
-4
lines changed
4 files changed +29
-4
lines changed Original file line number Diff line number Diff line change 1
1
--color
2
- --format = nested
2
+ --format = progress
Original file line number Diff line number Diff line change 11
11
GEM
12
12
remote: http://rubygems.org/
13
13
specs:
14
- ZenTest (4.5.0 )
15
14
diff-lcs (1.1.2 )
15
+ guard (0.6.2 )
16
+ thor (~> 0.14.6 )
17
+ guard-bundler (0.1.3 )
18
+ bundler (>= 1.0.0 )
19
+ guard (>= 0.2.2 )
20
+ guard-rspec (0.4.2 )
21
+ guard (>= 0.4.0 )
16
22
json_pure (1.5.2 )
17
23
maruku (0.6.0 )
18
24
syntax (>= 1.0.0 )
35
41
diff-lcs (~> 1.1.2 )
36
42
rspec-mocks (2.6.0 )
37
43
syntax (1.0.0 )
44
+ thor (0.14.6 )
38
45
yard (0.7.1 )
39
46
40
47
PLATFORMS
41
48
ruby
42
49
43
50
DEPENDENCIES
44
- ZenTest
45
51
bundler
46
52
grape !
53
+ guard
54
+ guard-bundler
55
+ guard-rspec
47
56
json_pure
48
57
maruku
49
58
rack-test
Original file line number Diff line number Diff line change
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ guard 'rspec' , :version => 2 do
5
+ watch ( %r{^spec/.+_spec\. rb$} )
6
+ watch ( %r{^lib/(.+)\. rb$} ) { |m | "spec/#{ m [ 1 ] } _spec.rb" }
7
+ watch ( 'spec/spec_helper.rb' ) { "spec/" }
8
+ end
9
+
10
+
11
+ guard 'bundler' do
12
+ watch ( 'Gemfile' )
13
+ watch ( /^.+\. gemspec/ )
14
+ end
Original file line number Diff line number Diff line change @@ -25,8 +25,10 @@ Gem::Specification.new do |s|
25
25
s . add_development_dependency 'rack-test'
26
26
s . add_development_dependency 'rspec' , '~> 2.6.0'
27
27
s . add_development_dependency 'json_pure'
28
- s . add_development_dependency 'ZenTest'
29
28
s . add_development_dependency 'bundler'
29
+ s . add_development_dependency 'guard'
30
+ s . add_development_dependency 'guard-rspec'
31
+ s . add_development_dependency 'guard-bundler'
30
32
31
33
s . files = `git ls-files` . split ( "\n " )
32
34
s . test_files = `git ls-files -- {test,spec,features}/*` . split ( "\n " )
You can’t perform that action at this time.
0 commit comments