forked from iboard/CBA
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
160 lines (139 loc) · 3.66 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
source 'http://rubygems.org'
gem 'simplecov', :require => false, :group => :test #, '>= 0.4.0'
gem "rails" #, "3.1.2" #, "~> 3.1.0" # prev was rc8
# Rails 3.1 - Asset Pipeline
group :assets do
gem 'sass-rails', "~> 3.1.0.rc"
gem 'coffee-script'
gem 'uglifier'
gem 'json'
gem 'jquery-rails'
gem 'therubyracer', :platforms => :ruby
gem 'execjs'
gem 'sprockets', '~> 2.0.0.beta.12'
end
# Bundle gems needed for Mongoid
gem "mongo"
gem "mongoid" #, :path => "/Users/aa/Development/R31/mongoid-1"
gem "bson_ext" #, "1.3.1" #, "1.1.5"
# Bundle gem needed for Devise and cancan
gem "devise" #, :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'
gem "googlecharts"
# we need some stuff too (tbb)
gem 'simple_form'
group :production do
gem 'thin'
# gem 'newrelic_rpm'
end
gem 'newrelic_rpm'
# connection gems
gem 'json'
gem 'geocoder'
gem 'httparty'
gem "nokogiri", "~> 1.5.0"
gem 'feedzirra'
gem 'sax-machine'
# Bundle gem needed for paperclip and attachments
# gem "paperclip" dependency of mongoid-paperclip
gem "mongoid-paperclip", :require => 'mongoid_paperclip'
# 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.3" #"4.2.4.pre3 doesn't work with ruby 1.9.2-p180
gem 'stamp'
# a scheduling gem
# gem 'whenever', :require => false
# Gems by iboard.cc <[email protected]>
gem "jsort", "~> 0.0.1"
gem 'progress_upload_field', '~> 0.0.1'
gem "capistrano"
gem "coffeebeans"
# Markdown
# do "easy_install pygments" on your system
gem 'redcarpet', '1.17.2'
gem 'albino'
gem 'heroku'
# Bundle gems for development
group :development do
gem "nifty-generators"
gem "rails-erd"
gem 'rdoc'
gem "rails3-generators"
gem 'unicorn'
gem 'yard'
end
# Testing
group :development, :test do
gem 'jasmine' #, '1.0.2.1'
gem 'headless', '0.1.0'
gem 'rspec', '2.6.0'
gem 'rspec-rails', '2.6.1'
gem 'faker'
gem 'json_pure'
gem 'capybara'
gem 'database_cleaner'
gem 'spork', '0.9.0.rc9'
gem 'guard-rspec'
gem 'guard-spork'
gem 'guard-livereload'
gem 'spork-testunit'
gem 'spork-testunit'
gem 'launchy'
gem 'ZenTest', '4.5.0'
gem 'autotest'
gem 'autotest-rails'
gem 'ruby-growl'
gem 'autotest-growl'
gem "mocha"
gem "fabrication"
gem "gherkin"
gem 'test-unit'
# gem "autotest-fsevent", :platforms => :ruby
gem 'webmock', ">= 1.7.0"
gem 'vcr'
gem 'syntax'
gem "nifty-generators"
gem "rails-erd"
gem 'rdoc'
gem 'unicorn'
gem 'yard'
gem 'rails3-generators'
gem "haml-rails"
end
group :test do
gem 'cucumber-rails'
gem 'cucumber'
gem 'rspec', '2.6.0'
gem 'rspec-rails', '2.6.1'
end
# !! THE GRAVEYARD !!
#gem "omniauth", :git => 'git://github.com/intridea/omniauth.git' # maybe we need this latest version instead of the gem -tbb
#gem "govkit" #, :git => 'git://github.com/tbbooher/govkit.git'
#gem "nytimes-congress"
#gem "geokit"
#gem 'drumbone'
#gem "omniauth" "0.2.6"
#gem 'omniauth', '>= 0.2.6'
#gem "heroku"
#gem 'webmock'
#gem 'vcr'
#gem 'factory_girl'
#gem 'factory_girl_rails'
#gem 'ym4r'
#gem "formtastic"
#gem "ruby-debug-base19", :git => "git://github.com/JetBrains/ruby-debug-base19.git"
#gem 'factory_girl_rails', "1.1.0"
#gem 'mongoid_counter_cache'