-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
58 lines (52 loc) · 1.31 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
58
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
ruby "2.4.0"
gem "rails", "~> 5.0.4"
gem "pg", "~> 0.18"
gem "puma", "~> 3.0"
gem "sass-rails", "~> 5.0"
gem "uglifier", ">= 1.3.0"
gem "coffee-rails", "~> 4.2"
gem "jquery-rails"
gem "turbolinks", "~> 5"
gem "active_model_serializers"
gem "figaro"
gem "devise"
gem "font-awesome-rails"
gem "simple_form"
gem "react-rails"
gem "haml"
gem "bootstrap-sass"
gem "bootstrap-social-rails"
gem "haml-rails", "~> 0.9"
gem "slim-rails"
gem "slim"
gem "cancancan", "~> 2.0"
gem "js-routes"
group :development, :test do
gem "byebug", platform: :mri
gem "factory_girl_rails"
gem "ffaker"
gem "pry"
end
group :test do
gem "rspec-rails"
gem "shoulda-matchers", git: "https://github.com/thoughtbot/shoulda-matchers.git", branch: "rails-5"
gem "email_spec"
gem "rails-controller-testing"
gem "capybara"
gem "phantomjs"
gem "poltergeist"
gem "database_cleaner"
end
group :development do
gem "web-console", ">= 3.3.0"
gem "listen", "~> 3.0.5"
gem "spring"
gem "spring-watcher-listen", "~> 2.0.0"
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]