File tree 5 files changed +36
-0
lines changed
5 files changed +36
-0
lines changed Original file line number Diff line number Diff line change
1
+ service_name : codeship
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ client-bundle.js.map
20
20
.env
21
21
node_modules
22
22
npm-debug.log
23
+ /coverage
23
24
24
25
# Ignore bundle dependencies
25
26
vendor /ruby
Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ group :development, :test do
80
80
end
81
81
82
82
group :test do
83
+ gem "coveralls" , require : false
83
84
gem "rspec-rails"
84
85
gem "capybara"
85
86
gem "capybara-screenshot"
Original file line number Diff line number Diff line change 83
83
execjs
84
84
coffee-script-source (1.9.1.1 )
85
85
columnize (0.9.0 )
86
+ coveralls (0.8.2 )
87
+ json (~> 1.8 )
88
+ rest-client (>= 1.6.8 , < 2 )
89
+ simplecov (~> 0.10.0 )
90
+ term-ansicolor (~> 1.3 )
91
+ thor (~> 0.19.1 )
86
92
database_cleaner (1.4.1 )
87
93
debug_inspector (0.0.2 )
88
94
diff-lcs (1.2.5 )
95
+ docile (1.1.5 )
96
+ domain_name (0.5.24 )
97
+ unf (>= 0.0.5 , < 1.0.0 )
89
98
erubis (2.7.0 )
90
99
es5-shim-rails (4.0.1 )
91
100
actionpack (>= 3.1 )
104
113
haml (4.0.6 )
105
114
tilt
106
115
highline (1.6.21 )
116
+ http-cookie (1.0.2 )
117
+ domain_name (~> 0.5 )
107
118
i18n (0.7.0 )
108
119
jbuilder (2.3.1 )
109
120
activesupport (>= 3.0.0 , < 5 )
120
131
mini_portile (0.6.2 )
121
132
minitest (5.7.0 )
122
133
multi_json (1.11.2 )
134
+ netrc (0.10.3 )
123
135
nokogiri (1.6.6.2 )
124
136
mini_portile (~> 0.6.0 )
125
137
parser (2.2.2.6 )
171
183
react_on_rails (0.1.1 )
172
184
execjs (~> 2.5 )
173
185
rails (~> 4.2 )
186
+ rest-client (1.8.0 )
187
+ http-cookie (>= 1.0.2 , < 2.0 )
188
+ mime-types (>= 1.16 , < 3.0 )
189
+ netrc (~> 0.7 )
174
190
rspec-core (3.3.2 )
175
191
rspec-support (~> 3.3.0 )
176
192
rspec-expectations (3.3.1 )
217
233
json (~> 1.7 , >= 1.7.7 )
218
234
rdoc (~> 4.0 )
219
235
sexp_processor (4.6.0 )
236
+ simplecov (0.10.0 )
237
+ docile (~> 1.1.0 )
238
+ json (~> 1.8 )
239
+ simplecov-html (~> 0.10.0 )
240
+ simplecov-html (0.10.0 )
220
241
slop (3.6.0 )
221
242
spring (1.3.6 )
222
243
spring-commands-rspec (1.0.4 )
@@ -228,17 +249,23 @@ GEM
228
249
activesupport (>= 3.0 )
229
250
sprockets (>= 2.8 , < 4.0 )
230
251
sqlite3 (1.3.10 )
252
+ term-ansicolor (1.3.2 )
253
+ tins (~> 1.0 )
231
254
terminal-table (1.5.2 )
232
255
thor (0.19.1 )
233
256
thread_safe (0.3.5 )
234
257
tilt (1.4.1 )
258
+ tins (1.6.0 )
235
259
turbolinks (2.5.3 )
236
260
coffee-rails
237
261
tzinfo (1.2.2 )
238
262
thread_safe (~> 0.1 )
239
263
uglifier (2.7.1 )
240
264
execjs (>= 0.3.0 )
241
265
json (>= 1.8.0 )
266
+ unf (0.1.4 )
267
+ unf_ext
268
+ unf_ext (0.0.7.1 )
242
269
unicorn (4.9.0 )
243
270
kgio (~> 2.6 )
244
271
rack
@@ -266,6 +293,7 @@ DEPENDENCIES
266
293
capybara
267
294
capybara-screenshot
268
295
coffee-rails
296
+ coveralls
269
297
database_cleaner
270
298
es5-shim-rails
271
299
factory_girl_rails
@@ -293,3 +321,6 @@ DEPENDENCIES
293
321
uglifier
294
322
unicorn
295
323
web-console
324
+
325
+ BUNDLED WITH
326
+ 1.10.6
Original file line number Diff line number Diff line change 1
1
# This file is copied to spec/ when you run "rails generate rspec:install"
2
2
ENV [ "RAILS_ENV" ] ||= "test"
3
+ require "coveralls"
4
+ Coveralls . wear! ( "rails" ) # must occur before any of your application code is required
3
5
require "spec_helper"
4
6
require File . expand_path ( "../../config/environment" , __FILE__ )
5
7
require "rspec/rails"
You can’t perform that action at this time.
0 commit comments