-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
57 lines (51 loc) · 1.46 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
source 'https://rubygems.org'
# source 'http://gems.github.com'
#source 'https://github.com/mislav/will_paginate.git'
gem 'rails', '~>6.1' # '~>4.2'#'4.1.16' #'4.0.13'#'4.0'#'3.2.21'#'3.1.12'#'3.0.3'
gem 'bcrypt-ruby', :require => "bcrypt"
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'htmlentities'
gem 'mysql2', '~> 0.5'
##rails 3.1.12 doesn't support
# gem 'activerecord-mysql2-adapter'
# gem 'ruby-debug19', :require => 'ruby-debug'
#gem 'debugger' DOESNOT WORK WITH RUBY >= 2
# Newer ruby
#gem 'debug'
gem 'byebug'
gem 'nokogiri'
# gem 'protected_attributes'
gem 'protected_attributes_continued'
gem 'will_paginate'
gem "paperclip"
gem 'rspec'
gem 'haml'
gem 'sass'
gem 'uuidtools'
gem "recaptcha", :require => "recaptcha/rails"
gem 'rufus-scheduler'
#gem 'meta_where' RAILS 3.1.12 doesn't support
gem 'activerecord-import'#, '~>0.2.0'
# group :test do
gem 'rspec-rails'
gem 'factory_bot', '6.4.3'
gem 'factory_bot_rails', '6.4.3'
# end
# group :assets do
gem 'sass-rails'#, '~> 3.2.6'#'~> 3.1.7'
# gem 'coffee-rails'#, '~> 3.2.2'#'~> 3.1.1'
# gem 'uglifier'#, '>= 1.0.3'
# end
#gem 'rmagick', '2.12.0'
gem 'rmagick'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# 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