-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
47 lines (43 loc) · 1.09 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
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.0.2'
gem 'pg'
gem 'puma', '~> 3.0'
gem 'sass-rails', '~> 5.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.2'
gem 'jquery-rails'
gem 'jbuilder', '~> 2.5'
gem 'bcrypt', '~> 3.1.7'
gem 'normalize-rails'
gem 'friendly_id'
gem "haml-rails"
group :development, :test do
gem 'byebug', platform: :mri
gem 'letter_opener'
gem 'pry'
gem 'guard-livereload', '~> 2.5', require: false
gem 'psych'
gem 'faker'
end
group :test do
gem 'shoulda-matchers', git: 'https://github.com/thoughtbot/shoulda-matchers.git', branch: 'rails-5'
gem 'capybara'
gem 'poltergeist'
gem "factory_girl_rails", "~> 4.0"
gem 'database_cleaner'
gem 'rails-controller-testing'
gem 'selenium-webdriver', '2.53.4'
gem 'rspec-rails', '~> 3.5'
end
group :development do
gem 'listen'
gem 'guard'
gem 'guard-zeus'
gem 'rack-livereload'
gem 'guard-rspec', require: false
gem 'guard-rails', require: false
end