-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathGemfile
93 lines (71 loc) · 1.87 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
source 'https://rubygems.org'
#rails
gem 'rails', '~>4.2.0'
gem 'activerecord-session_store'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
#---------------- database ---------------------
#the database
gem 'mysql2'
#for testing
gem 'sqlite3'
#for dumping database into yaml
gem 'yaml_db'
# Gems used only for assets and not required
# in production environments by default.
gem 'sass-rails'
gem 'coffee-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
# gem 'therubyracer', :platforms => :ruby
gem 'uglifier'
gem 'haml'
gem 'haml-rails'
# gem 'prototype-rails'
# To use ActiveModel has_secure_password
# gem 'bcrypt-ruby', '~> 3.0.0'
# To use Jbuilder templates for JSON
# gem 'jbuilder'
# Use unicorn as the app server
# gem 'unicorn'
# Deploy with Capistrano
# gem 'capistrano'
# To use debugger
# gem 'debugger'
#
#in-place editor
gem 'best_in_place', '~> 3.0.1'
# jquery addition
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'jquery-timepicker-addon-rails'
gem 'jquery-tablesorter'
gem 'jquery-countdown-rails'
#syntax highlighter
gem 'rouge'
#bootstrap add-ons
gem 'bootstrap-sass', '~> 3.4.1'
gem 'sassc-rails', '>= 2.1.0'
gem 'bootstrap-switch-rails'
gem 'bootstrap-toggle-rails'
gem 'autoprefixer-rails'
gem 'momentjs-rails'
gem 'rails_bootstrap_sortable'
gem 'bootstrap-datepicker-rails'
gem 'bootstrap3-datetimepicker-rails'
gem 'jquery-datatables-rails'
#----------- user interface -----------------
#select 2
gem 'select2-rails'
#ace editor
gem 'ace-rails-ap'
#paginator
gem 'will_paginate', '~> 3.0.7'
gem 'mail'
gem 'rdiscount'
gem 'dynamic_form'
gem 'in_place_editing'
gem 'verification', :git => 'https://github.com/sikachu/verification.git'
#---------------- testiing -----------------------
gem 'minitest-reporters'
#---------------- for console --------------------
gem 'fuzzy-string-match'