-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
36 lines (31 loc) · 653 Bytes
/
Gemfile
File metadata and controls
36 lines (31 loc) · 653 Bytes
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
source 'https://rubygems.org'
ruby '2.3.0'
gem 'rails', '4.2.6'
gem 'pg'
gem 'sass-rails'
gem 'uglifier'
gem 'coffee-rails'
gem 'jquery-rails'
gem 'jbuilder'
gem 'slim-rails'
gem 'twitter-bootstrap-rails', git: 'git://github.com/seyhunak/twitter-bootstrap-rails.git'
gem 'responders'
gem 'selenium-webdriver'
gem 'capybara'
gem 'sidekiq'
gem 'sinatra', '>=1.3.0', require: nil
gem 'private_pub'
gem 'thin'
gem 'skim'
gem 'sdoc', group: :doc
group :test, :development do
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'launchy'
gem 'capybara-webkit'
gem 'database_cleaner'
end
group :test do
gem 'shoulda-matchers'
gem 'json_spec'
end