forked from AgileVentures/osra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
57 lines (51 loc) · 1.81 KB
/
Copy pathGemfile
File metadata and controls
57 lines (51 loc) · 1.81 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
48
49
50
51
52
53
54
55
56
57
source 'https://rubygems.org'
ruby '2.2.0'
gem 'rails', '~> 4.1.8'
gem 'pg'
gem 'sass-rails', '~> 5.0.0'
# sass powered version of bootstrap https://github.com/twbs/bootstrap-sass
gem 'bootstrap-sass', '~> 3.3.1'
# jquery datepicker and bootstrap-sass gem don't play nicely
gem 'bootstrap-datepicker-rails'
# gem to add browser vendor prefixes automatically. Recommended install for
# bootstrap-sass
gem 'autoprefixer-rails', '~> 4.0.2'
gem 'coffee-rails', '~> 4.1.0'
gem 'uglifier', '>= 2.6.0' # compressor for JavaScript assets
gem 'activeadmin', github: 'activeadmin'
gem 'sequenced', '>= 2.0.0' # Sequential IDs in Models
gem 'devise' # Authentication solution
gem 'jquery-rails'
gem 'paperclip', '~> 4.2.1'
gem 'aws-sdk'
gem 'coveralls', require: false
gem 'country_select', github: 'stefanpenner/country_select'
gem 'roo'
gem 'rails_config'
gem 'newrelic_rpm'
gem 'haml', '~> 4.0.6' #[view] templating engine
group :test do
gem 'capybara'
gem 'cucumber-rails', require: false
gem 'capybara-webkit'
gem 'poltergeist'
gem 'headless' # gem that allows capybara-webkit to run without calling xvfb directly
gem 'database_cleaner'
gem 'shoulda-matchers', require: false # one-line tests for common Rails validations
end
group :development, :test do
gem 'rspec-rails'
gem 'faker'
gem 'factory_girl_rails'
gem 'awesome_print' # Well Formatted output in console
gem 'pry-byebug' # a version of pry and debugger compatible with Ruby >2.0.0
gem 'hirb' # formats ActiveRecord objects into table format in the console
gem 'pry-rails' # integrate pry with rails console
gem 'better_errors' # nice output of rails errors in browser
gem 'binding_of_caller' #online console and debugging in browser
gem 'launchy' # open capybara-generated pages in browser
end
group :production do
gem 'rails_12factor'
gem 'passenger'
end