forked from r7kamura/code_hunter_dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
40 lines (34 loc) · 721 Bytes
/
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
source "https://rubygems.org"
gem "rails", "3.2.11"
gem "mysql2"
gem "jquery-rails"
gem "slim"
gem "thin"
gem "font-awesome-sass-rails"
gem "omniauth-github", :git => "git://github.com/intridea/omniauth-github.git"
gem "settingslogic"
gem "dotenv"
gem "github_api"
group :development do
gem "pry-rails"
gem "quiet_assets"
gem "tapp"
end
group :test do
gem "rspec", ">=2.12.0"
gem "rspec-rails", ">=2.12.0"
gem "factory_girl_rails", "~> 4.0"
gem "response_code_matchers"
end
group :production do
gem "unicorn"
end
group :assets do
gem "sass-rails", "~> 3.2.3"
gem "coffee-rails", "~> 3.2.1"
gem "uglifier", ">= 1.0.3"
end
group :capistrano do
gem "capistrano"
gem "capistrano_colors"
end