forked from sigmike/peer4commit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
47 lines (42 loc) · 1.5 KB
/
Gemfile
File metadata and controls
47 lines (42 loc) · 1.5 KB
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'
ruby '2.0.0'
gem 'rails', '4.0.2'
gem 'mysql2', group: :production
gem 'sass-rails', '~> 4.0.0'
gem 'haml-rails', '~> 0.5.3'
gem 'less-rails', '~> 2.4.2'
gem 'kaminari', '~> 0.15.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'therubyracer', '~> 0.12.0', platforms: :ruby
gem 'jquery-rails', '~> 3.0.4'
gem 'turbolinks', '~> 2.2.0'
gem 'jquery-turbolinks'
gem 'jbuilder', '~> 1.5.3'
gem 'airbrake', '~> 3.1.15'
gem 'devise', '~> 3.2.2'
gem 'omniauth', '~> 1.1.4'
gem 'omniauth-github', github: 'alexandrz/omniauth-github', branch: 'provide_emails'
gem 'octokit', '~> 2.7.0'
gem 'sawyer', '~> 0.5.2'
gem 'twitter_bootstrap_form_for', github: 'stouset/twitter_bootstrap_form_for'
gem 'twitter-bootstrap-rails', github: 'seyhunak/twitter-bootstrap-rails', branch: 'bootstrap3'
gem 'sdoc', group: :doc, require: false
group :development do
gem 'capistrano', '~> 3.0.1'
gem 'capistrano-rvm', '~> 0.1.0', github: 'capistrano/rvm'
gem 'capistrano-bundler', '>= 1.1.0'
gem 'capistrano-rails', '~> 1.1.0'
gem 'sqlite3', '~> 1.3.8'
end
group :development, :test do
gem 'factory_girl_rails', '~> 4.3.0'
gem 'rspec-rails', '~> 3.0.0.beta'
gem 'debugger', '~> 1.6.5'
end
group :test do
gem 'simplecov'
gem 'shoulda-matchers', '~> 2.5.0'
gem 'cucumber-rails', :require => false
gem 'database_cleaner'
end