This repository has been archived by the owner on Mar 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
103 lines (90 loc) · 2.43 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
102
source "http://gems.wicourts.gov"
source 'http://rubygems.org'
RAILS_VERSION = '~> 3.2.0'
DM_VERSION = '~> 1.2.0'
gem 'actionmailer', RAILS_VERSION
gem 'activeresource', RAILS_VERSION
gem 'rake'
gem 'pg'
# datamapper for connecting to postgres
# sqlite for quick one off database needs. eg testing
gem 'dm-core', DM_VERSION
gem 'dm-rails', DM_VERSION
gem 'dm-aggregates', DM_VERSION
gem 'dm-observer', DM_VERSION
gem 'dm-postgres-adapter', DM_VERSION
gem 'dm-migrations', DM_VERSION
gem 'dm-do-adapter', DM_VERSION
gem 'dm-sqlite-adapter', DM_VERSION
gem 'dm-validations', DM_VERSION
gem 'dm-timestamps', DM_VERSION
gem 'dm-ar-finders', DM_VERSION
gem 'dm-constraints', DM_VERSION
gem 'dm-types', DM_VERSION
gem 'dm-serializer', '~> 1.2.1'
gem 'dm-devise', '~> 2.1.0'
# Gems used only for assets and not required
# in production environments by default.
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'bootstrap-sass', '~> 2.0.4.0'
gem 'coffee-rails'
gem 'uglifier', '~>1.0.3'
gem 'compass-rails'
gem 'jquery-ui-themes', '~> 0.0.5'
gem 'jquery-ui-rails'
end
gem 'carrierwave-datamapper', :require => 'carrierwave/datamapper'
gem 'country_select', '1.0', :git => '[email protected]:country_select.git'
gem 'mini_magick'
gem 'fog', '~> 1.3.1'
gem 'simple_form'
gem 'haml-rails'
gem 'jquery-rails'
gem 'json'
gem 'dalli'
gem 'honey_badger', :git => 'git://github.com/rsanheim/honey_badger.git'
group :ccap do
gem 'omniauth', '~> 1.0.2'
gem 'omniauth-ecourts', '~> 1.0.2'
gem 'for11', '~> 0.2'
end
group :development do
gem 'pry-rails'
gem 'annotate'
gem 'silent-postgres'
gem 'awesome_print'
gem 'rails3-generators'
gem 'oink'
gem 'hirb'
gem 'ruby-prof'
gem 'thin'
gem 'brahma', :require => false
end
group :test do
# Pretty printed test output
gem 'turn', '~> 0.8.3', :require => false
# gem 'ruby-debug19' , :require => 'ruby-debug'
gem 'simplecov'
gem 'factory_girl_rails'
gem 'capybara'
gem 'ZenTest'
gem 'autotest-rails'
gem 'metrical'
gem 'pry'
gem 'forgery'
gem 'sqlite3'
end
group :linux_test do
gem 'test_notifier'
gem 'rb-inotify'
gem 'libnotify'
end
group :tr do
gem 'oink'
gem 'unicorn'
end
group :production do
# Use unicorn as the web server
gem 'unicorn'
end