This repository has been archived by the owner on Oct 12, 2022. It is now read-only.
forked from timmykat/openeffects.org
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
100 lines (71 loc) · 2 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
source 'https://rubygems.org'
# As per http://stackoverflow.com/questions/18627075/nokogiri-1-6-0-still-pulls-in-wrong-version-of-libxml-on-os-x
gem 'nokogiri'
# User rails 4
gem 'rails', '4.0.1'
# Use mysql as the database for Active Record
gem 'mysql2'
# Use haml for templates
gem 'haml-rails'
# Javascript environment
gem 'therubyracer'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 4.0.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# Use jquery as the JavaScript library
gem 'jquery-rails'
gem 'jquery-ui-rails'
# Design and layout
gem 'bootstrap-sass', '~> 3.1.1'
# Turbolinks makes following links in your web application faster. Read more: https://github.com/rails/turbolinks
# gem 'turbolinks'
# gem 'jquery-turbolinks'
# User
gem 'devise' # authentication
gem 'role_model' # user roles
# WYSWIG editor - ckeditor
# gem 'ckeditor'
gem 'tinymce-rails'
# Sanitize HTML output
gem 'sanitize'
# User forum
# gem 'forem'
# Use paperclip for file uploads
gem 'paperclip'
# Need commenting for draft standard changes
gem 'acts_as_commentable'
# reCaptcha to hold down the spam
gem 'recaptcha', :require => 'recaptcha/rails'
# Truncate html properly
gem 'truncate_html'
# FriendlyId for nice looking urls
gem 'friendly_id'
# Need to hand assets without digests for the API docs
gem 'non-stupid-digest-assets', :git => "https://github.com/timmykat/non-stupid-digest-assets"
# Development tools
group :development do
gem 'pry-rails'
gem 'pry-stack_explorer'
gem 'better_errors'
gem 'binding_of_caller'
gem 'puma'
# Use capistrano for deployment (not needed in production)
gem 'capistrano', "~> 3.1"
gem 'capistrano-rails', '~> 1.1'
gem 'capistrano-bundler'
gem 'capistrano-rvm'
gem 'capistrano-db-tasks', require: false
end
# For testing
group :development, :test do
gem 'factory_girl_rails', "4.4.0"
end
group :test do
gem 'pry'
gem 'shoulda'
gem 'shoulda-callback-matchers'
# gem 'database_cleaner'
end
# Use this ruby version
ruby '2.1.5'