-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
98 lines (75 loc) · 1.86 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
source 'http://rubygems.org'
if File.exist? 'Gemfile.local'
instance_eval(Bundler.read_file('Gemfile.local'), 'Gemfile.local', 1)
end
RAILS_VERSION = '~> 3.1.1'
# Get latest psych - work around crash during reorg migration
gem 'psych'
#gem 'gdata-ruby-util', '1.1.2'
gem 'gdata_19',
:git => 'https://github.com/tokumine/GData.git',
:ref => '14e5a8a1381f4d50bc99ed083d89101f5111e3ea',
:require => 'gdata'
platforms :ruby do
group :development, :test do
gem 'sqlite3'
end
group :heroku do
gem "pg"
end
group :staging do
gem "mysql"
end
group :production do
gem "mysql"
end
end
platforms :jruby do
gem 'jdbc-sqlite3', :require => false
gem 'jdbc-mysql', :require => false
gem 'jruby-openssl'
gem 'therubyrhino'
end
gem 'authlogic'
#gem 'dalli'
gem 'builder'
gem 'json'
gem 'acl9'
gem 'rails', RAILS_VERSION
gem 'haml', '~> 3.0.25'
gem 'sass'
gem 'haml-rails'
# Used to be pulled in by dm-types
gem 'bcrypt-ruby'
gem 'prawn' # PDF generation
gem 'paper_trail', '~> 2'
group(:development, :test) do
# Uncomment this if you want to use rspec for testing your application
gem 'rspec-rails'
gem 'spork', '~> 0.9.0.rc'
gem 'ZenTest'
gem 'autotest-rails'
gem 'simplecov', :require => false
# To get a detailed overview about what queries get issued and how long they take
# have a look at rails_metrics. Once you bundled it, you can run
#
# rails g rails_metrics Metric
# rake db:automigrate
#
# to generate a model that stores the metrics. You can access them by visiting
#
# /rails_metrics
#
# in your rails application.
# gem 'rails_metrics', '~> 0.1', :git => 'git://github.com/engineyard/rails_metrics'
platform :jruby do
gem 'ruby-debug'
end
platform :ruby do
gem 'ruby-debug19'
end
end
# Causes rake to fail, uncomment to rebuild docs
#gem 'yard-dm'
gem 'yard'
gem 'redcarpet'