This repository has been archived by the owner on Mar 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gemfile
101 lines (76 loc) · 2.51 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
99
100
101
source 'http://rubygems.org'
gem 'rails', '3.0.0.rc2'
gem "json_pure", ">= 1.4.5"
gem 'json'
gem 'mysql2'
# View Related
gem 'haml', '>= 3.0.13'
gem 'compass', '>= 0.10.2'
gem 'compass-colors', '>= 0.3.1'
gem 'fancy-buttons', '>= 0.5.4'
gem 'formtastic', '>= 1.0.0.beta', :git => 'git://github.com/justinfrench/formtastic.git', :branch => 'rails3'
gem 'validation_reflection', '>= 1.0.0.rc.1'
gem 'title_estuary', '>= 1.2.0'
gem 'show_for'
gem 'inherited_resources'
# Model Related
gem 'uuid'
gem 'stringex'
gem 'pseudocephalopod', '>= 0.2.4'
gem 'almost-happy', '>= 0.3.0'
gem 'will_paginate', '>= 3.0.pre', :git => 'git://github.com/mislav/will_paginate.git', :branch => 'rails3'
gem 'bcrypt-ruby', '>= 2.1.2', :require => 'bcrypt'
gem 'state_machine', '>= 0.9.0', :git => 'git://github.com/pluginaweek/state_machine.git'
gem 'msales-carmen', '>= 0.1.4', :require => ['carmen', 'carmen/action_view_helpers']
gem 'awesome_print'
gem 'youthtree-capistrano', :require => nil
# Controller Related
gem 'youthtree-settings', '>= 0.1.1'
gem 'youthtree-controller-ext'
gem 'bhm-admin', '>= 0.2.2'
# Javascript
gem 'barista', '>= 0.5.0'
gem 'shuriken', '>= 0.2.0'
gem 'bhm-google-maps', '>= 0.3.0'
gem 'youthtree-js', '>= 0.2.0'
gem 'youthtree-helpers', '>= 0.1.2'
gem 'jammit'
gem 'nokogiri'
gem 'mail_form'
gem 'acts_as_indexed'
gem 'geokit'
gem 'RubyInline'
gem 'rmagick'
gem 'carrierwave', :git => "git://github.com/jnicklas/carrierwave.git"
# Auth
gem 'authlogic', :git => 'git://github.com/odorcicd/authlogic.git', :branch => 'rails3'
gem 'authlogic_rpx', :git => 'git://github.com/tardate/authlogic_rpx.git'
gem 'rpx_now'
gem 'validates_url_format_of'
# Bundle it!
gem 'unicorn', :require => nil
group :development do
gem 'rails3-generators'
gem 'mongrel'
gem 'barista_growl'
gem 'annotate', :git => 'git://github.com/miyucy/annotate_models.git'
end
group :test, :development do
gem 'rspec', '>= 2.0.0.beta.16'
gem 'rspec-rails', '>= 2.0.0.beta.16'
gem 'machinist', '>= 2.0.0.beta2', :require => nil
gem 'forgery', :require => nil
end
group :test do
gem 'ZenTest'
if `uname`.strip =~ /darwin/
gem 'autotest-growl'
gem 'autotest-fsevent'
end
gem 'remarkable', '>= 4.0.0.alpah4', :require => 'remarkable/core'
gem 'remarkable_activerecord', '>= 4.0.0.alpah4', :require => 'remarkable/active_record'
gem 'rr'
end
group :staging, :production do
gem 'hoptoad_notifier'
end