-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
128 lines (109 loc) · 3.36 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
source 'http://rubygems.org'
gem 'simplecov', :require => false, :group => :test #, '>= 0.4.0'
gem "rails", "3.2.2" #, "3.1.2" #, "~> 3.1.0" # prev was rc8
# Rails 3.1 - Asset Pipeline
group :assets do
gem 'sass-rails', "~> 3.2.3"
gem 'coffee-rails', "~> 3.2.1"
gem 'uglifier', ">= 1.0.3"
gem 'json'
gem 'therubyracer'
gem 'execjs'
gem 'sprockets', '~> 2.1.2'
end
# Bundle gems needed for Mongoid
gem 'jquery-rails'
gem 'thin'
gem "mongo", "1.5.2"
gem "mongoid", ">= 2.4.7" #, :path => "/Users/aa/Development/R31/mongoid-1"
gem "bson_ext", "1.5.2" #, "1.3.1" #, "1.1.5"
# Bundle gem needed for Devise and cancan
gem "devise", ">= 2.1.0.rc" #, :git => 'git://github.com/iboard/devise.git' #:path => "/Users/aa/Development/R31/devise" #'1.2.rc2' #, "~>1.4.0" # ,"1.1.7"
gem "cancan"
gem 'omniauth-github' #, :git => 'git://github.com/intridea/omniauth-github.git'
gem 'omniauth-openid' #, :git => 'git://github.com/intridea/omniauth-openid.git'
gem 'omniauth-twitter'
gem 'omniauth-facebook'
gem 'omniauth-google-oauth2'
# Bundle gem needed for paperclip and attachments
gem "mongoid-paperclip", :require => 'mongoid_paperclip'
gem "aws-sdk"
gem 'prawn'
# MongoID Extensions and extras
gem 'mongoid-tree', :require => 'mongoid/tree'
gem 'mongoid_fulltext'
gem 'mongoid_taggable'
gem 'mongoid_spacial' # For GeoIndex
gem 'mongoid_session_store'
# Bundle gems for views
gem "haml"
gem "will_paginate", "3.0.pre4"
gem 'escape_utils'
gem "RedCloth" #, ">= 4.2.7" #"4.2.4.pre3 doesn't work with ruby 1.9.2-p180
# Gems by iboard.cc <[email protected]>
gem "jsort", "~> 0.0.1"
gem 'progress_upload_field', '~> 0.0.1'
# Markdown
# do "easy_install pygments" on your system
gem 'redcarpet', '1.17.2'
gem 'albino'
gem "nokogiri", "1.4.6"
# tim booher custom gems
#gem 'heroku'
gem 'money-rails'
# Testing
group :development, :test do
gem 'jasmine' #, '1.0.2.1'
gem 'headless', '0.1.0'
gem 'mongoid-rspec', ">= 1.4.4"
gem 'rspec-rails', git: 'git://github.com/rspec/rspec-rails.git' # '>= 2.8.1'
gem 'json_pure'
gem 'capybara' # , git: 'git://github.com/jnicklas/capybara.git'
gem 'database_cleaner'
gem 'cucumber-rails', :require => false
gem 'cucumber'
gem 'spork', '0.9.0.rc9'
gem 'guard-rspec'
gem 'guard-spork'
gem 'guard-livereload'
gem 'spork-testunit'
gem 'launchy', '2.0.5'
gem 'factory_girl_rails', ">= 1.6.0"
gem 'ZenTest', '4.5.0'
gem 'autotest'
gem 'autotest-rails'
gem 'ruby-growl'
gem 'autotest-growl'
gem "mocha"
gem "gherkin"
gem 'syntax'
gem "nifty-generators"
gem "rails-erd"
gem 'rdoc'
gem 'unicorn'
gem 'yard'
gem 'test-unit'
gem 'rails3-generators'
gem "haml-rails"
gem 'faker'
gem 'ruby-prof' # , :git => 'git://github.com/wycats/ruby-prof.git'
# gem 'rb-fsevent', :require => false if RUBY_PLATFORM =~ /darwin/i
end
gem 'newrelic_rpm'
# custom FitWit gems
gem 'activemerchant', :require => 'active_merchant' # , :git => 'git://github.com/tbbooher/active_merchant.git'
gem 'ssl_requirement'
gem 'googlecharts'
gem 'inherited_resources'
gem 'watu_table_builder', require: "table_builder"
gem 'stateflow'
#gem 'wkhtmltopdf-binary'
gem "stamp"
#gem "pdfkit" #, :git => "git://github.com/huerlisi/PDFKit.git"
gem 'has_scope', '~> 0.5.1'
gem 'kaminari'
gem "responders"
gem 'simple_form', git: 'git://github.com/plataformatec/simple_form.git'
gem 'bootstrap-sass', '~> 2.0.0'
gem "ckeditor", "3.7.0.rc3"
gem "rakismet"