forked from multiscan/thot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
91 lines (70 loc) · 2.53 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
source 'https://rubygems.org'
# -------------------------------------------------------------- BASE RAILS GEMS
gem 'rails', '4.0.0'
gem 'sqlite3'
gem 'mysql2', '~>0.3.12b4'
gem 'activerecord-mysql-adapter'
group :production do
gem "therubyracer", :require => 'v8'
end
# ---------------------------------------------------- CAPISTRANO FOR DEPLOYMENT
gem 'capistrano', '>=2.15.4'
gem 'rvm-capistrano'
# ------------------------------------------------------------ APP SPECIFIC GEMS
# --- xml parsing
# gem "nokogiri"
gem "ox", "~> 2.0.3"
# --- sphinx full text search
gem 'thinking-sphinx', '~>3.0.3'
# --- authentication and acl
#gem "devise_invitable", '~> 1.1.0'
gem "devise", github: 'plataformatec/devise'
gem "cancan", ">= 1.6.8"
gem "rolify", ">= 3.2.0"
# --- app configuration: config/application.yml
gem "figaro", ">= 0.6.0"
# --- static pages
gem 'high_voltage'
# TODO: re-enable autocomplete when a rails4 compatible version is out
# gem 'rails3-jquery-autocomplete', github: 'francisd/rails3-jquery-autocomplete'
# --------------------------------------------------------------------------- js
gem 'jquery-rails'
gem 'jquery-ui-rails'
# --- for easily passing variables to javascript
# http://railscasts.com/episodes/324-passing-data-to-javascript
# https://github.com/gazay/gon
gem 'gon'
# -------------------------------------------------------------------- rendering
# --- PDF rendering
gem 'prawn'
gem 'prawn_rails'
# --- markdown rendering
gem 'bluecloth'
# --- html and css
gem 'haml-rails', '~>0.4'
gem 'sass-rails' #, '~>4.0.0'
gem 'coffee-rails' #, '~>4.0.0'
gem 'uglifier', '>= 1.3.0'
# ----------------------------------------------------------------- view helpers
gem "simple_form", github: 'plataformatec/simple_form'
gem 'will_paginate', '~> 3.0.3'
gem 'will_paginate-bootstrap'
gem 'bootstrap-sass', '~> 2.3.2.0' # https://github.com/thomas-mcdonald/bootstrap-sass
# ------------------------------------------------------------------------ devel
gem 'memoist'
group :development do
gem 'thin'
gem "quiet_assets", ">= 1.0.1"
gem "binding_of_caller", ">= 0.6.8"
gem "better_errors", ">= 0.2.0"
end
# ---------------------------------------------------------------------- testing
group :test do
# gem 'minitest'
gem 'capybara'
# gem 'turn'
end
# ------------------------------------------------------------------------ NOTES
# For searching book infos on the web
# gem 'openlibrary' # https://github.com/jayfajardo/openlibrary
# gem 'lcclasses' # library of congress classes (to parse output from loc query)