forked from grinnellplans/GrinnellPlans
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
86 lines (60 loc) · 2.65 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
source 'http://rubygems.org'
source 'http://gems.github.com'
gem 'rails', '~> 3.1.1'
#our database, for now. Eventually, it'll be msyql, but this is easier for now.
gem 'sqlite3'
#Capistrano is a sort of deployment script (https://github.com/capistrano/capistrano/wiki)
gem 'capistrano'
#haml is a lazy/concise way of generating html (http://haml-lang.com/)
gem 'haml'
#A simple model based ruby authentication solution (https://github.com/binarylogic/authlogic)
gem 'authlogic', '~> 3.1.0'
gem 'rails3-generators'
#Helpers to deal with your model backed forms in Rails3 (https://github.com/joelmoss/dynamic_form)
gem 'dynamic_form'
#Crypt3 is a ruby version of crypt(3), a salted one-way hashing of a password.
gem 'crypt3'
#A whitelist-based Ruby HTML sanitizer (http://wonko.com/post/sanitize)
gem 'sanitize'
#A powerful parser for Markdown (https://github.com/tanoku/redcarpet)
gem 'redcarpet'
#Serialization using JSON
gem "json", "~> 1.5.4"
#https://github.com/rails/jquery-ujs
gem 'jquery-rails', '~> 2.1'
# https://github.com/mislav/will_paginate/tree/rails3
gem 'will_paginate', '~> 3.0.pre4'
# supports composite primary keys for legacy tables like Autfinger https://github.com/drnic/composite_primary_keys
gem "composite_primary_keys", "~> 4.0.0"
group :production do
#email any errors to people specified in the environment.rb
gem "exception_notification", :git => "git://github.com/rails/exception_notification", :require => 'exception_notifier'
end
group :development do
#fancy-format things in the rails console. "Hirb.enable" in the console to start it.
gem 'hirb'
#add comments to the models/tests that show the attributes
gem 'annotate'
# Generate model and controller diagrams and put them in /doc
gem "railroady"
#add a footer to the page with info about sql, javascript, etc.
# gem 'rails3-footnotes'
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
gem 'ruby-debug', :platform => :ruby_18
# gem 'ruby-debug19', :platform => :ruby_19
gem "single_test"
end
group :test, :development do
# Tests! (http://relishapp.com/rspec)
gem 'rspec-rails'
#SanitizeEmail allows you to play with your application's email abilities without worrying that emails will get sent to actual live addresses. (https://github.com/pboling/sanitize_email)
#gem 'sanitize_email'
end
group :test do
#Mocha is a library for mocking and stubbing
# gem 'mocha'
gem 'factory_girl_rails'
#Calculate the differences between two XML/HTML documents
#If you have trouble installing nokogiri on lion: http://pinds.com/2011/08/06/rails-tip-of-the-day-rails-os-x-lion-rvm-nokogiri/
gem 'nokogiri-diff'
end