forked from GreenStepsChatt/greensteps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
57 lines (52 loc) · 1.24 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
53
54
55
56
57
source 'https://rubygems.org'
ruby '2.4.1'
git_source(:github) do |repo_name|
repo_name = "#{repo_name}/#{repo_name}" unless repo_name.include?('/')
"https://github.com/#{repo_name}.git"
end
gem 'bitters'
gem 'bourbon'
gem 'coffee-rails', '~> 4.2'
gem 'decent_exposure'
gem 'devise'
gem 'factory_girl_rails'
gem 'faker'
gem 'font-awesome-rails'
gem 'jbuilder', '~> 2.5'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'pg', '~> 0.18'
gem 'pry'
gem 'puma', '~> 3.0'
gem 'rails', '~> 5.0.4'
gem 'record_tag_helper'
gem 'rolify'
gem 'sass-rails', '~> 5.0'
gem 'turbolinks', '~> 5'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
gem 'uglifier', '>= 1.3.0'
group :development, :test do
gem 'bullet'
gem 'byebug', platform: :mri
gem 'capybara'
gem 'rspec-rails', '~> 3.6'
gem 'rubocop', '~> 0.49.1', require: false
end
group :development do
gem 'guard-rspec', require: false
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-commands-rspec'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end
group :test do
gem 'database_cleaner'
gem 'launchy'
gem 'poltergeist'
gem 'rails-controller-testing'
gem 'rspec-collection_matchers'
gem 'shoulda-matchers'
gem 'simplecov', require: false
gem 'webmock'
end