-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
27 lines (24 loc) · 1.02 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
source 'https://rubygems.org'
ruby '2.0.0'
gem 'rails', '4.0.1'
# Rails defaults
gem 'sqlite3'
gem 'sass-rails', '~> 4.0.0'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 4.0.0'
gem 'jquery-rails'
gem 'turbolinks'
gem 'jbuilder', '~> 1.2'
# learn-rails - tutorial added Gem files
gem 'activerecord-tableless' # helps to use Rails without a database
gem 'bootstrap-sass', '~> 2.3.2.2' # Twitter Bootstrap for CSS and ]avaScript
gem 'figaro' # configuration framework
gem 'gibbon' # access to the MailChimp API
gem 'google_drive' # use Google Dave spreadsheets for data storage
gem 'high_voltage' # for static pages like "about"
gem 'simple_form', '>= 3.0.0.rc' # simple_form - forms made easy
# Gems utilities added to make development easier:
group :development do
gem 'better_errors' # better_errors - helps when things go wrong
gem 'quiet_assets' # quiet_assets - suppresses distracting messages in the log
end