-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
174 lines (131 loc) · 5.03 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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
# Edit this Gemfile to bundle your application's dependencies.
source 'http://gems.rubyforge.org'
gem 'rails', '3.0.9' #, :git => 'git://github.com/rails/rails.git'
gem 'rake', '0.9.2'
gem "haml-rails"
gem "jquery-rails"
# Sends notifications of errors on Production app
#gem "hoptoad_notifier"
gem "airbrake"
# asset packaging
gem "jammit"
gem "sinatra"
gem "acts-as-taggable-on"
# Used to simplify user registrations and logins
# Pined to ref, as there is problem on devise HEAD
gem "devise", :git => "git://github.com/plataformatec/devise.git", :ref => '4964f53a42a3d434ee6d731d6f999d8dae13dada'
gem "devise_invitable"
gem "acts_as_follower", :git => "git://github.com/Prizzm/acts_as_follower.git"
# Allows us to keep an order of a user's items in their collection
gem "acts_as_list"
gem "acts_as_commentable_with_threading"
gem "mongoid"
gem "bson_ext"
gem "curb"
gem "workflow_on_mongoid"
gem "thin"
#gem "squeel"
#gem "simple_worker" #, :git => "git://github.com/sid137/simple_worker.git"
#gem "delayed_job"
#gem "hirefireapp"
gem "resque", :require => 'resque/server'
gem "heroku"
gem "aws-sdk"#, :git => "git clone git://github.com/amazonwebservices/aws-sdk-for-ruby.git"
# Default model values
# https://github.com/FooBarWidget/default_value_for
gem "default_value_for"
# Gem for uploading images. More flexible than "paperclip"
# fog is for storing files on Amazon, Google...
# remotipart is for uploading files with AJAX
gem "carrierwave", :git => 'git://github.com/jnicklas/carrierwave.git'
gem "fog"
gem 'remotipart', '0.3.4'
# Used to that we can resize images uploaded through carrierwave, using
# ImageMagick
gem "rmagick"
# allows us to have seo friendly urls for our objects
# gem "friendly_id", :git => "https://github.com/norman/friendly_id.git"
gem "friendly_id", "~> 3.1"
# allows model and sitewide settings
# https://github.com/100hz/rails-settings
gem "rails-settings", :git => "git://github.com/100hz/rails-settings.git"
# Social Media Gems FB Connect, FB, and Twitter
#gem "faraday", :git => "git://github.com/technoweenie/faraday.git"
gem "omniauth", '0.2.6' #:git => "git://github.com/intridea/omniauth.git"# ,:ref => "b9fe79961ab56041dbf9"
gem "fb_graph"
gem "twitter"#, :git => 'git://github.com/jnunemaker/twitter.git'
# TODO: Why is this in production?
gem 'rails-erd', :git => "git://github.com/voormedia/rails-erd.git"
gem "rest-client"
gem "mechanize"
gem "nokogiri"
gem "hashie"
# For form.
gem 'formtastic'
# TO GO - I don't need these dependencies.. get rid of them
# Gem to abstract away the dplication common in standard restful controllers
gem 'inherited_resources', :git => "git://github.com/josevalim/inherited_resources.git"
# Apparently needed to make the uploadify multifile uploader work
gem "flash_cookie_session"
gem "twilio-ruby"
# Imports
gem 'csv-mapper', '0.5.1'
#gem "squeel" # Last officially released gem
# gem "squeel", :git => "git://github.com/ernie/squeel.git" # Track git repo
group :development, :test do
gem "pg"
gem "sqlite3-ruby", :require => 'sqlite3'
gem "ruby-debug19", :require => 'ruby-debug'
gem "guard"
gem "guard-bundler"
gem "guard-jammit"
gem "guard-rails", :git => "git://github.com/johnbintz/guard-rails.git"
gem "guard-rspec"
gem "guard-shell"
gem "guard-compass"
gem "guard-livereload"
gem 'rb-fsevent', :require => false
gem "growl"
# Used to create an extermal ssh tunnel
gem "tunnlr_connector", :require => "tunnlr", :git => "git://github.com/Prizzm/tunnlr_connector.git"
#gem "tunnlr_connector", :require => "tunnlr", :path => "/Users/noli/tracking/tunnlr_connector"
# Easily create database models for site simulation
gem "factory_girl_rails"
# Useful for fake data generation
gem "faker"
gem "randexp"
gem "random_data"
gem 'forgery'
gem "lorempixum", :require => 'lorempixum'
# Needed to run html2haml to convert html to haml
gem "hpricot"
gem "taps"
#gem "heroku-rails", :git => "git://github.com/railsjedi/heroku-rails.git"
gem "heroku-rails", :git => "git://github.com/Prizzm/heroku-rails.git"
# nice table displays in Rails console
gem "hirb"
gem "facebook_test_users", :git => "git://github.com/Prizzm/facebook_test_users.git"
# Allows us to push the local development database up to Heroku, and pull the
# heroku db down locally
gem "yaml_db"
gem "escape_utils"
# Sass and Blueprint based css framework for dev machine
# use "compass compile . " to compile css before deployment
gem "compass", ">=0.11.1"
# Print a header in app/model/*.rb files, listing the db columns present for
# each model
gem "rails-footnotes"
gem "selenium-webdriver"
gem "rack-test"
gem "capybara", :require => 'capybara/rspec'
gem "launchy"
gem 'database_cleaner', :git => 'git://github.com/bmabey/database_cleaner.git'
gem "rspec-core", "2.6.4"
gem "rspec-rails"# , '2.6.0' #, '2.5.0'
#gem 'shoulda-matchers', :git => 'git://github.com/thoughtbot/shoulda-matchers.git'
#gem 'shoulda-matchers', :git => 'git://github.com/sid137/shoulda-matchers.git'
gem "ZenTest"
gem "autotest-rails"
##
gem 'mongo', '1.3.1'
end