This repository was archived by the owner on Oct 4, 2020. It is now read-only.
File tree 4 files changed +52
-1
lines changed
4 files changed +52
-1
lines changed Original file line number Diff line number Diff line change @@ -19,12 +19,13 @@ gem 'bootstrap-sass', '~> 3.0.2.0'
19
19
gem "treetop" , "~> 1.4.14"
20
20
gem "builder" , "~> 3.2.2"
21
21
gem "nokogiri" , "~> 1.6.0"
22
- gem "rspec" , "~> 2.14.1"
23
22
gem "oauth2" , "~> 0.9.2"
24
23
gem "newrelic_rpm" , "~> 3.7"
25
24
26
25
gem "log4r"
27
26
28
27
group :development do
29
28
gem "shotgun"
29
+ gem "rspec" , "~> 2.14.1"
30
+ gem 'guard-rspec' , require : false
30
31
end
Original file line number Diff line number Diff line change 12
12
sass (~> 3.2 )
13
13
builder (3.2.2 )
14
14
chunky_png (1.3.0 )
15
+ coderay (1.1.0 )
15
16
compass (0.12.2 )
16
17
chunky_png (~> 1.2 )
17
18
fssm (>= 0.2.7 )
18
19
sass (~> 3.1 )
19
20
diff-lcs (1.2.5 )
20
21
faraday (0.9.0 )
21
22
multipart-post (>= 1.2 , < 3 )
23
+ ffi (1.9.3 )
24
+ formatador (0.2.4 )
22
25
fssm (0.2.10 )
26
+ guard (1.8.3 )
27
+ formatador (>= 0.2.4 )
28
+ listen (~> 1.3 )
29
+ lumberjack (>= 1.0.2 )
30
+ pry (>= 0.9.10 )
31
+ thor (>= 0.14.6 )
32
+ guard-rspec (3.1.0 )
33
+ guard (>= 1.8 )
34
+ rspec (~> 2.13 )
23
35
haml (4.0.5 )
24
36
tilt
25
37
hike (1.2.3 )
29
41
i18n (0.6.9 )
30
42
jwt (0.1.11 )
31
43
multi_json (>= 1.5 )
44
+ listen (1.3.1 )
45
+ rb-fsevent (>= 0.9.3 )
46
+ rb-inotify (>= 0.9 )
47
+ rb-kqueue (>= 0.2 )
32
48
log4r (1.1.10 )
49
+ lumberjack (1.0.4 )
50
+ method_source (0.8.2 )
33
51
mini_portile (0.5.2 )
34
52
minitest (4.7.5 )
35
53
multi_json (1.8.4 )
55
73
i18n (~> 0.6 , >= 0.6.7 )
56
74
padrino-core (= 0.12.0 )
57
75
polyglot (0.3.4 )
76
+ pry (0.9.12.6 )
77
+ coderay (~> 1.0 )
78
+ method_source (~> 0.8 )
79
+ slop (~> 3.4 )
58
80
rack (1.5.2 )
59
81
rack-protection (1.5.2 )
60
82
rack
83
+ rb-fsevent (0.9.4 )
84
+ rb-inotify (0.9.3 )
85
+ ffi (>= 0.5.0 )
86
+ rb-kqueue (0.2.2 )
87
+ ffi (>= 0.5.0 )
61
88
rspec (2.14.1 )
62
89
rspec-core (~> 2.14.0 )
63
90
rspec-expectations (~> 2.14.0 )
75
102
tilt (~> 1.3 , >= 1.3.4 )
76
103
sinatra-support (1.2.2 )
77
104
sinatra (>= 1.0 )
105
+ slop (3.5.0 )
78
106
sprockets (2.11.0 )
79
107
hike (~> 1.2 )
80
108
multi_json (~> 1.0 )
@@ -103,6 +131,7 @@ DEPENDENCIES
103
131
bootstrap-sass (~> 3.0.2.0 )
104
132
builder (~> 3.2.2 )
105
133
compass
134
+ guard-rspec
106
135
haml
107
136
log4r
108
137
newrelic_rpm (~> 3.7 )
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 do
5
+ watch ( %r{^spec/.+_spec\. rb$} )
6
+ watch ( %r{^lib/(.+)\. rb$} ) { |m | "spec/lib/#{ m [ 1 ] } _spec.rb" }
7
+ watch ( 'spec/spec_helper.rb' ) { "spec" }
8
+ end
9
+
Original file line number Diff line number Diff line change @@ -39,6 +39,18 @@ Steno has a grammar which does its best to make sense of a plain text version of
39
39
40
40
# Developing and contributing
41
41
42
+ To run tests, use either
43
+
44
+ ` rspec `
45
+
46
+ to run the specs once off, or use
47
+
48
+ ` guard `
49
+
50
+ to run them continuously.
51
+
52
+ ## Pull requests
53
+
42
54
We welcome pull requests!
43
55
44
56
Steno is a [ Sinatra] ( http://www.sinatrarb.com/ ) ruby app. To install and run it locally,
You can’t perform that action at this time.
0 commit comments