Skip to content

Lot of fixes WIP#169 WIP#170 WIP#171 WIP#172 WIP#173 WIP#174 #50

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Jul 14, 2014
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ruby-2.1.2
2.1.2
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ If you're running Windows, [here's a guide written by one of our members on how
Now that you're SSH'ed into the Vagrant VM it's time to run the app.

# we're still SSH'ed into Vbox
cd ~/assemblymade
rvm current # should be ruby-2.1.0@coderwall
bundle check # should be a response that everything's good
bundle exec rails server
cd ~/web
rvm current # should be ruby-2.1.2@coderwall
bundle check # should be 'The Gemfile's dependencies are satisfied'
bin/rails s

If all went well the Rails server should start up on PORT 3000.

Expand Down
52 changes: 27 additions & 25 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,22 @@ ruby '2.1.2'

gem 'rails', '~> 3.2'

gem 'sass', '~> 3.2.9'
gem 'coffee-rails', '~> 3.2.1'
gem 'compass-rails'
gem 'sass-rails', '~> 3.2.6'
gem 'uglifier', '>= 1.0.3'


# Load environment variables first
gem 'dotenv-rails', groups: [:development, :test]

gem 'strong_parameters'

# Mongo
gem 'mongoid', '~> 2.4.12'
gem 'mongo', '<= 1.6.2'
gem 'mongoid_taggable'
gem 'bson_ext', '~> 1.3'

# Attachements
gem 'carrierwave', '0.5.8'
gem 'carrierwave_backgrounder' #background processing of images
gem 'carrierwave-mongoid', '~> 0.1.7', require: 'carrierwave/mongoid'
gem 'carrierwave'
gem 'carrierwave_backgrounder', '0.0.8' #background processing of images
gem 'carrierwave-mongoid', require: 'carrierwave/mongoid'

# Two Client-side JS frameworks. Yep, first one to refactor out the other wins.
gem 'backbone-on-rails'
Expand All @@ -27,7 +28,7 @@ gem 'jquery-rails', '= 2.0.3'

# HTML
gem 'haml', '3.1.7'
gem 'hamlbars' #haml support for handlebars/ember.js
gem 'hamlbars', '1.1.0' #haml support for handlebars/ember.js

# Memcached
gem 'dalli'
Expand Down Expand Up @@ -70,7 +71,7 @@ gem 'redis', require: ['redis', 'redis/connection/hiredis']

# Background Job Processing
gem 'resque'
gem 'resque-scheduler', require: 'resque_scheduler'
gem 'resque-scheduler'
gem 'resque_mailer'

# Payment processing
Expand Down Expand Up @@ -103,10 +104,10 @@ gem 'faraday', '~> 0.8.1'

# ----------------

gem 'rocket_tag', '0.0.4'
gem 'rocket_tag'

gem 'acts_as_commentable', '2.0.1'
gem 'acts_as_follower'
gem 'acts_as_follower', '0.1.1'
gem 'color'
gem 'createsend'
gem 'fog'
Expand All @@ -128,13 +129,12 @@ gem 'sanitize'
gem 'simple_form'
gem 'tweet-button'

group :assets do
gem 'sass', '~> 3.2.9'
gem 'coffee-rails', '~> 3.2.1'
gem 'compass-rails'
gem 'sass-rails', '~> 3.2.6'
gem 'uglifier', '>= 1.0.3'
end

# Mongo
gem 'mongoid'
gem 'mongo'
gem 'mongoid_taggable'
gem 'bson_ext', '~> 1.3'

group :development do
gem 'better_errors'
Expand All @@ -148,24 +148,26 @@ group :development do
end

group :development, :test do
gem 'factory_girl_rails'
gem 'fabrication-rails'
gem 'ffaker'
gem 'jazz_hands', github: 'nixme/jazz_hands', branch: 'bring-your-own-debugger'
gem 'launchy'
gem 'letter_opener', github: 'alexrothenberg/letter_opener', branch: 'on_a_server'
gem 'pry-byebug'
gem 'quiet_assets'
gem 'syntax'
gem 'annotate'
gem 'mail_view'
end
gem 'mail_view'


group :test do
gem 'capybara', '~> 1.1'
gem 'capybara'
gem 'database_cleaner'
gem 'fabrication', '1.4.1'
gem 'fuubar'
gem 'fuubar' , '2.0.0.rc1'
gem 'resque_spec'
gem 'rspec-rails'
# gem 'rspec-its'
gem 'simplecov'
gem 'timecop'
gem 'vcr'
Expand Down
Loading