-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
executable file
·117 lines (86 loc) · 2.42 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
ruby "2.1.0"
source 'http://rubygems.org'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails'
# Use postgresql as the database for Active Record
gem 'pg'
# Use SCSS for stylesheets
gem 'sass-rails'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier'
# Use CoffeeScript for .js.coffee assets and views
gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
#gem 'therubyracer', platforms: :ruby
gem 'node'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'haml-rails'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
#gem 'turbolinks'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder'
gem 'devise'
gem 'cancan'
gem 'geocoder'
group :doc do
# bundle exec rake doc:rails generates the API under doc/api.
gem 'sdoc', require: false
end
group :development, :test do
gem 'better_errors'
gem 'binding_of_caller'
gem 'rspec-rails'
gem 'guard', '>=2.1.0'
gem 'guard-rspec'
end
group :test do
gem 'capybara'
gem 'rb-inotify'
gem 'libnotify'
end
group :development do
gem 'guard-livereload'
gem 'meta_request', '0.2.6'
#gem 'boson-more'
gem 'irbtools', '~> 1.5.0', :require => false
gem 'irbtools-more', :require => false
end
#gem 'anjlab-bootstrap-rails', :require => 'bootstrap-rails',
# :github => 'anjlab/bootstrap-rails'
gem 'bootstrap-sass'
# Use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# Use unicorn as the app server
gem 'unicorn'
# Use Capistrano for deployment
gem 'capistrano', '~> 2.15.0', group: :development
#gem 'rvm-capistrano'
gem 'thin'
#gem 'puma', group: :development
# Use debugger
# gem 'debugger', group: [:development, :test]
gem 'rails_12factor', group: :production
gem 'susy'
gem 'compass'
gem 'compass-rails'
gem 'sassy-buttons'
gem 'nokogiri'
gem 'whenever', :require => false
gem 'best_in_place', :git => "https://github.com/bernat/best_in_place", :branch => "rails-4"
gem 'carrierwave'
gem 'carrierwave-dropbox'
gem 'plupload-rails'
gem 'mini_magick'
gem 'carrierwave-processing'
gem 'newrelic_rpm'
#gem 'activemerchant', :require => 'active_merchant'
#gem 'robokassa'
gem 'prawn', :git => "https://github.com/prawnpdf/prawn.git"
gem 'faye'
gem 'private_pub'
gem 'oj'
gem 'yajl-ruby'
gem 'psych', '~> 2.0.5'
gem 'bootsy'