Skip to content

Commit 3870cee

Browse files
committed
Add test gems, and .idea files to gitignore
1 parent fcd9bd4 commit 3870cee

File tree

3 files changed

+62
-0
lines changed

3 files changed

+62
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
client-bundle.js
1919
client-bundle.js.map
2020
.env
21+
.idea/
2122
node_modules
2223
npm-debug.log
2324

Gemfile

+9
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,12 @@ group :development, :test do
5656
# Manage application processes
5757
gem 'foreman'
5858
end
59+
60+
group :test, :development do
61+
gem 'rspec-rails'
62+
gem 'factory_girl_rails'
63+
gem 'capybara'
64+
gem 'capybara-webkit'
65+
gem 'capybara-screenshot'
66+
gem 'rspec-instafail', require: false
67+
end

Gemfile.lock

+52
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ GEM
3636
minitest (~> 5.1)
3737
thread_safe (~> 0.3, >= 0.3.4)
3838
tzinfo (~> 1.1)
39+
addressable (2.3.7)
3940
arel (6.0.0)
4041
autoprefixer-rails (5.1.3)
4142
execjs
@@ -50,6 +51,18 @@ GEM
5051
columnize (~> 0.8)
5152
debugger-linecache (~> 1.2)
5253
slop (~> 3.6)
54+
capybara (2.4.4)
55+
mime-types (>= 1.16)
56+
nokogiri (>= 1.3.3)
57+
rack (>= 1.0.0)
58+
rack-test (>= 0.5.4)
59+
xpath (~> 2.0)
60+
capybara-screenshot (1.0.7)
61+
capybara (>= 1.0, < 3)
62+
launchy
63+
capybara-webkit (1.4.1)
64+
capybara (>= 2.3.0, < 2.5.0)
65+
json
5366
coffee-rails (4.1.0)
5467
coffee-script (>= 2.2.0)
5568
railties (>= 4.0.0, < 5.0)
@@ -60,9 +73,15 @@ GEM
6073
columnize (0.9.0)
6174
debug_inspector (0.0.2)
6275
debugger-linecache (1.2.0)
76+
diff-lcs (1.2.5)
6377
dotenv (1.0.2)
6478
erubis (2.7.0)
6579
execjs (2.3.0)
80+
factory_girl (4.5.0)
81+
activesupport (>= 3.0.0)
82+
factory_girl_rails (4.5.0)
83+
factory_girl (~> 4.5.0)
84+
railties (>= 3.0.0)
6685
foreman (0.77.0)
6786
dotenv (~> 1.0.2)
6887
thor (~> 0.19.1)
@@ -79,6 +98,8 @@ GEM
7998
thor (>= 0.14, < 2.0)
8099
json (1.8.2)
81100
kgio (2.9.3)
101+
launchy (2.4.3)
102+
addressable (~> 2.3)
82103
loofah (2.0.1)
83104
nokogiri (>= 1.5.9)
84105
mail (2.6.3)
@@ -126,6 +147,29 @@ GEM
126147
rake (10.4.2)
127148
rdoc (4.2.0)
128149
json (~> 1.4)
150+
rspec (3.2.0)
151+
rspec-core (~> 3.2.0)
152+
rspec-expectations (~> 3.2.0)
153+
rspec-mocks (~> 3.2.0)
154+
rspec-core (3.2.2)
155+
rspec-support (~> 3.2.0)
156+
rspec-expectations (3.2.0)
157+
diff-lcs (>= 1.2.0, < 2.0)
158+
rspec-support (~> 3.2.0)
159+
rspec-instafail (0.2.6)
160+
rspec
161+
rspec-mocks (3.2.1)
162+
diff-lcs (>= 1.2.0, < 2.0)
163+
rspec-support (~> 3.2.0)
164+
rspec-rails (3.2.1)
165+
actionpack (>= 3.0, < 4.3)
166+
activesupport (>= 3.0, < 4.3)
167+
railties (>= 3.0, < 4.3)
168+
rspec-core (~> 3.2.0)
169+
rspec-expectations (~> 3.2.0)
170+
rspec-mocks (~> 3.2.0)
171+
rspec-support (~> 3.2.0)
172+
rspec-support (3.2.2)
129173
sass (3.4.11)
130174
sass-rails (5.0.1)
131175
railties (>= 4.0.0, < 5.0)
@@ -167,6 +211,8 @@ GEM
167211
binding_of_caller (>= 0.7.2)
168212
railties (~> 4.0)
169213
sprockets-rails (>= 2.0, < 4.0)
214+
xpath (2.0.0)
215+
nokogiri (~> 1.3)
170216

171217
PLATFORMS
172218
ruby
@@ -175,14 +221,20 @@ DEPENDENCIES
175221
autoprefixer-rails
176222
bootstrap-sass (~> 3.3.1)
177223
byebug
224+
capybara
225+
capybara-screenshot
226+
capybara-webkit
178227
coffee-rails
228+
factory_girl_rails
179229
foreman
180230
jbuilder
181231
jquery-rails
182232
pg
183233
rails (~> 4.2)
184234
rails-html-sanitizer
185235
rails_12factor
236+
rspec-instafail
237+
rspec-rails
186238
sass-rails
187239
sdoc
188240
spring

0 commit comments

Comments
 (0)