-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathGemfile
More file actions
107 lines (79 loc) · 2.31 KB
/
Gemfile
File metadata and controls
107 lines (79 loc) · 2.31 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
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
source 'http://rubygems.org'
gem 'rails', '3.2.21'
gem 'mysql2', group: :mysql
gem 'pg', group: :postgres
gem "unicorn", "~> 4.8.2"
gem 'sidekiq'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
gem 'therubyracer', :platforms => :ruby
end
gem 'best_in_place', '~> 3.0.1'
gem 'jquery-fileupload-rails'
gem 'sass-rails', '~> 3.2.3'
gem 'bootstrap-sass', '~> 2.3.2.1'
gem "jquery-rails"
gem "jquery-ui-rails"
gem "less-rails" #Sprockets (what Rails 3.1 uses for its asset pipeline) supports LESS
gem 'rtf'
# NO LONGER NEEDED in ruby 1.9
# gem 'fastercsv'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem "nifty-generators", :group => :development
#require 'mysql2'
gem "cocaine", "0.3.2"
gem "nokogiri"
gem "expectr", "~> 0.9.0"
gem 'paperclip', "~> 2.7.2"
gem "remotipart", "~> 1.0"
gem 'mime-types'
# Paperclip requires that ImageMagick is installed on the system
gem 'chosen-rails'
gem "spreadsheet"
gem "rake", '>=0.9.2'
gem 'authlogic'
gem 'omniauth'
gem 'omniauth-google-oauth2'
gem 'cancan'
gem 'redis-rails'
gem 'kaminari'
gem 'prawn'
gem 'soap4r-ruby1.9'
gem 'simple_form'
gem 'roo'
# This gem is not directly used by the application
# However, it is common to automate items using this
# We simplify our clients' lives by including it in the package
gem 'selenium-client'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
# gem 'ruby-debug'
# gem 'ruby-debug19', :require => 'ruby-debug'
# Bundle the extra gems:
# gem 'bj'
# gem 'nokogiri'
# gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'aws-s3', :require => 'aws/s3'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
# group :development, :test do
# gem 'webrat'
# end
# gem "mocha", :group => :test
gem 'blitz'
group :development, :test do
gem 'rspec-rails', '~> 3.0.0'
gem "factory_girl_rails"
gem "capybara", '>= 2.2.0'
gem 'database_cleaner'
end