-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
45 lines (38 loc) · 1.38 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
source 'https://rubygems.org'
gem 'rails' , '4.2.6'
gem 'sass-rails' , '~> 5.0'
gem 'jquery-rails'
gem 'therubyracer'
gem 'uglifier' , '3.0.0'
gem 'coffee-rails' , '~> 4.1.0'
gem 'puma' , '~> 3.4.0'
gem 'grape' , '0.14.0'
gem 'grape-entity' , '0.5.1'
gem 'grape-swagger'
gem 'mongoid' , '~> 5.1.0'
gem 'htmlentities' , '~> 4.3.2'
gem 'bunny' , '~> 2.4.0'
gem 'versioneye-core' , :git => 'https://github.com/versioneye/versioneye-core.git', :tag => 'v8.23.2'
group :test do
gem 'simplecov' , '~> 0.11.1'
gem 'turn' , :require => false
gem 'rspec' , '~> 3.4.0'
gem 'rspec-rails' , '~> 3.4.0'
gem 'rspec-mocks' , '~> 3.4.0'
gem 'rspec_junit_formatter', '0.2.3'
gem 'capybara' , '~> 2.7.0'
gem 'capybara-firebug' , '~> 2.1.0'
gem 'selenium-webdriver', '~> 2.53.0'
gem 'vcr' , '~> 3.0.1', :require => false
gem 'webmock' , '~> 2.1.0', :require => false
end
group :development do
gem 'byebug' # Debug Gem
# Access an IRB console on exception pages or by using <%= console %> in views
# gem 'web-console', '~> 2.0'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
# gem 'spring'
end
source 'https://rails-assets.org' do
gem 'rails-assets-bootstrap', '3.3.6'
end