forked from everydayrails/everydayrails-rspec-2017
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
52 lines (45 loc) · 1.28 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
source 'https://rubygems.org'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?("/")
"https://github.com/#{repo_name}.git"
end
gem 'rails', '~> 5.1.1'
gem 'sqlite3'
gem 'puma', '~> 3.7'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'turbolinks', '~> 5'
gem 'jbuilder', '~> 2.5'
group :development, :test do
gem 'rspec-rails', '~> 3.8.0'
gem 'factory_bot_rails', '~> 4.10.0'
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
gem 'web-console', '>= 3.3.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'faker', require: false # for sample data in development
gem 'spring-commands-rspec'
end
group :test do
gem 'capybara', '~> 2.15.4'
gem 'selenium-webdriver'
gem 'chromedriver-helper'
# Or use poltergeist and PhantomJS as an alternative to Selenium/Chrome
# gem 'poltergeist', '~> 1.15.0'
gem 'launchy', '~> 2.4.3'
gem 'shoulda-matchers',
git: 'https://github.com/thoughtbot/shoulda-matchers.git',
branch: 'rails-5'
gem 'vcr'
gem 'webmock'
end
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'bootstrap-sass'
gem 'jquery-rails'
gem 'devise'
gem 'paperclip'
gem 'geocoder'