forked from greendog99/greendog-rails-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_gemfile.rb
77 lines (56 loc) · 1.65 KB
/
_gemfile.rb
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
# Set up Gemfile
puts "Creating Gemfile ...".magenta
remove_file 'Gemfile'
file 'Gemfile', <<-RUBY.gsub(/^ {2}/, '')
# Gems host
source 'http://rubygems.org'
# Rails (version >= 3.0.0 and < 3.1)
gem 'rails', '~> 3.0.0'
# Database
gem 'sqlite3-ruby', :require => 'sqlite3'
# HTML and CSS replacement, includes SASS
gem 'haml', '~> 3.0'
gem 'haml-rails'
# HTML/CSS framework and boilerplate
gem 'compass'
gem 'html5-boilerplate'
# Human readable URLs
gem 'friendly_id', '~> 3.2'
# Validation of associations
gem 'validates_existence', '~> 0.5'
# Better console formatting
gem 'hirb'
# User authentication (Accounts)
gem 'devise', '~> 1.1'
# User authorization (Permissions)
gem 'cancan', '~> 1.5.1'
# Multiple views
gem 'themes_for_rails'
# File upload management
# NOTE: requires this fix to be applied: http://github.com/thoughtbot/paperclip/commit/56d6b2402d553a505f29eaeb022d4a6900fda8fa
gem 'paperclip', '~> 2.3'
#Pagination of long lists
gem 'will_paginate', '~> 3.0.pre2'
# To convert Markdown to HTML
# gem 'maruku'
#
# For Devise view generation
# gem 'hpricot'
# gem 'ruby_parser'
# To deal with file uploads via Flash uploader
# gem 'mime-types'
# To track changes to pages and other objects
# gem 'vestal_versions'
# -or-
# gem 'paper_trail'
# gem 'mysql2'
# gem 'capistrano'
# Useful Rails generator scripts for scaffolding, layout files, authentication, and more
gem "nifty-generators", :group => :development
group :development, :test do
gem 'factory_girl'
gem 'rspec-rails', '~> 2.4'
gem 'rcov'
gem 'random_data'
end
RUBY