-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
85 lines (72 loc) · 2.11 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
source 'https://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '4.1.7'
gem 'devise' # User Authentication
gem 'thin' # Use Thin as Server
gem 'tzinfo-data', platforms: [:mingw, :mswin] # Rails Core Windows Dependency, Provides Time Zone Info
# Tools
gem 'active_model_serializers'
gem 'awesome_print'
gem 'browser'
gem 'decent_exposure', :git => 'git://github.com/voxdolo/decent_exposure.git'
gem 'i18n-tasks', '~> 0.2.10'
gem 'json'
gem 'phony_rails' # validates phones
gem 'time_diff'
gem 'anemone'
gem 'nokogiri'
gem 'simple_form'
gem 'merit'
gem 'spinner.rb'
# Image
gem 'fog', "~> 1.3.1"
gem 'carrierwave'
gem 'rmagick', :require => 'RMagick'
gem 'mini_exiftool'
# omniauth
gem 'omniauth-facebook'
group :development, :test do
gem 'annotate', :git => 'git://github.com/ctran/annotate_models.git'
gem 'byebug'
gem 'capybara'
gem 'cucumber-rails', :require => false, git: 'https://github.com/cucumber/cucumber-rails.git'
gem 'database_cleaner'
gem 'email_spec'
gem 'factory_girl_rails'
gem 'foreman'
gem 'launchy'
gem 'letter_opener'
gem 'populator'
gem 'rspec-rails', '~> 2.0'
gem 'selenium-webdriver'
gem 'watir-webdriver'
end
group :development do
gem 'sqlite3' # SQLite3 DB
gem 'better_errors' # Better Errors
gem 'binding_of_caller' # Better Debugging
gem 'gem-open'
gem 'railroady'
end
group :production do
gem 'pg' # Postgresql DB
gem 'rails_12factor' # Heroku asset handler
end
## Views and Assets
####################
gem 'sass-rails', '~> 4.0.0' # Use SCSS for stylesheets
gem 'bootstrap-sass' # Pull our selves up by our Bootstraps
gem 'haml' # Ham it up
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails', '~> 4.0.0'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', platforms: :ruby
gem 'jquery-rails' # jQuery
gem 'turbolinks' # AJAXED Page Gets
gem 'jbuilder', '~> 1.2'# JSON APIs with ease
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end