-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
88 lines (72 loc) · 1.94 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
source 'http://rubygems.org'
gem 'rails'
gem 'rake'
gem 'builder'
gem 'net-ssh', '~>2.7.0'
#gem 'net-ssh', '~> 2.8.1', :git => "https://github.com/net-ssh/net-ssh"
gem 'debugger'
gem 'aws-sdk'
# Bundle edge Rails instead:
# gem 'rails', :git => 'git://github.com/rails/rails.git'
gem 'mysql2'
gem 'minitest'
# Use unicorn as the web server
# gem 'unicorn'
# Deploy with Capistrano
#gem 'rvm-capistrano'
#gem 'capistrano-bundler'
#gem 'capistrano-rails'
gem 'capistrano', '~> 2.15.5'
# To use debugger (ruby-debug for Ruby 1.8.7+, ruby-debug19 for Ruby 1.9.2+)
# gem 'ruby-debug'
#gem 'linecache19', :git => "git://github.com/mark-moseley/linecache"
#gem 'ruby-debug-base19x', "~>0.11.30.pre10"
#gem 'ruby-debug19', :require => 'ruby-debug'
gem 'settingslogic'
gem 'strong_parameters'
gem 'will_paginate'
gem 'jquery-rails'#, '~> 2.1'
gem 'select2-rails' # jquery select boxes
gem 'formtastic'
gem 'event-calendar', :require => 'event_calendar'
gem 'simple_navigation'
gem 'gollum' # wiki
#gem 'devise'
#gem 'devise_ldap_authenticatable'
#gem 'cancan'
gem 'attr_encrypted'
gem 'paperclip'
gem 'spreadsheet'
#gem 'princely'
gem 'ancestry'
#gem 'awesome_nested_set'
#gem 'acts_as_audited'
#, "2.0.0.rc7"
gem 'madeline', '~> 0.1.11'
gem 'rubyzip', '<1.0.0'
gem 'auto_strip_attributes'#, "~> 1.0"
gem 'json_builder'
# create cron jobs to clean the temporary objects from the database
gem 'whenever'
gem 'rspec-rails'
# testing
group :test do
gem 'factory_girl'
gem 'factory_girl_rails'
gem 'shoulda'
gem 'shoulda-matchers'
gem 'fakefs', :require => "fakefs/safe"
gem "database_cleaner"
gem "email_spec"
end
# Bundle the extra gems:
# gem 'bj'
# gem 'nokogiri'
# gem 'sqlite3-ruby', :require => 'sqlite3'
# gem 'aws-s3', :require => 'aws/s3'
# Bundle gems for the local environment. Make sure to
# put test-only gems in this group so their generators
# and rake tasks are available in development mode:
# group :development, :test do
# gem 'webrat'
# end