-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
70 lines (61 loc) · 1.29 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
59
60
61
62
63
64
65
66
67
68
69
70
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 "pg", "~> 0.18"
gem "puma", "~> 3.7"
gem "rails", "~> 5.1.2"
gem "sass-rails", "~> 5.0"
gem "uglifier", ">= 1.3.0"
gem "bootstrap-sass"
gem "coffee-rails", "~> 4.2"
gem "jbuilder", "~> 2.5"
gem "jquery-rails"
gem "kaminari"
gem "simple_form"
gem "slim-rails"
gem "active_model_serializers"
gem "carrierwave"
gem "devise"
gem "handlebars_assets"
gem "mini_magick"
gem "remotipart"
gem "cancancan"
gem "cocoon"
gem "doorkeeper"
gem "faker"
gem "has_scope"
gem "mailcatcher"
gem "omniauth"
gem "omniauth-facebook"
gem "omniauth-github"
gem "omniauth-twitter"
gem "omniauth-vkontakte"
gem "private_pub"
gem "responders"
gem "sidekiq"
gem "sinatra", require: false
gem "thin"
group :test do
gem "capybara"
gem "codeclimate-test-reporter", require: nil
gem "database_cleaner"
gem "json_spec"
gem "poltergeist"
gem "shoulda-matchers"
end
group :development, :test do
gem "dotenv-rails"
gem "factory_girl_rails"
gem "launchy"
gem "pry"
gem "rspec-rails"
end
group :development do
gem "annotate"
gem "listen", ">= 3.0.5", "< 3.2"
gem "rubocop", require: false
gem "spring"
gem "spring-commands-rspec"
end