Skip to content

Commit 4733183

Browse files
committed
Merge pull request #50 from seuros/wips
Lot of fixes WIP#169 WIP#170 WIP#171 WIP#172 WIP#173 WIP#174
2 parents d2d9ee5 + cc89ffb commit 4733183

File tree

175 files changed

+3123
-3025
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

175 files changed

+3123
-3025
lines changed

.ruby-version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
ruby-2.1.2
1+
2.1.2

CONTRIBUTING.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -117,10 +117,10 @@ If you're running Windows, [here's a guide written by one of our members on how
117117
Now that you're SSH'ed into the Vagrant VM it's time to run the app.
118118

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

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

Gemfile

+27-25
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,22 @@ ruby '2.1.2'
44

55
gem 'rails', '~> 3.2'
66

7+
gem 'sass', '~> 3.2.9'
8+
gem 'coffee-rails', '~> 3.2.1'
9+
gem 'compass-rails'
10+
gem 'sass-rails', '~> 3.2.6'
11+
gem 'uglifier', '>= 1.0.3'
12+
13+
714
# Load environment variables first
815
gem 'dotenv-rails', groups: [:development, :test]
916

1017
gem 'strong_parameters'
1118

12-
# Mongo
13-
gem 'mongoid', '~> 2.4.12'
14-
gem 'mongo', '<= 1.6.2'
15-
gem 'mongoid_taggable'
16-
gem 'bson_ext', '~> 1.3'
17-
1819
# Attachements
19-
gem 'carrierwave', '0.5.8'
20-
gem 'carrierwave_backgrounder' #background processing of images
21-
gem 'carrierwave-mongoid', '~> 0.1.7', require: 'carrierwave/mongoid'
20+
gem 'carrierwave'
21+
gem 'carrierwave_backgrounder', '0.0.8' #background processing of images
22+
gem 'carrierwave-mongoid', require: 'carrierwave/mongoid'
2223

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

2829
# HTML
2930
gem 'haml', '3.1.7'
30-
gem 'hamlbars' #haml support for handlebars/ember.js
31+
gem 'hamlbars', '1.1.0' #haml support for handlebars/ember.js
3132

3233
# Memcached
3334
gem 'dalli'
@@ -70,7 +71,7 @@ gem 'redis', require: ['redis', 'redis/connection/hiredis']
7071

7172
# Background Job Processing
7273
gem 'resque'
73-
gem 'resque-scheduler', require: 'resque_scheduler'
74+
gem 'resque-scheduler'
7475
gem 'resque_mailer'
7576

7677
# Payment processing
@@ -103,10 +104,10 @@ gem 'faraday', '~> 0.8.1'
103104

104105
# ----------------
105106

106-
gem 'rocket_tag', '0.0.4'
107+
gem 'rocket_tag'
107108

108109
gem 'acts_as_commentable', '2.0.1'
109-
gem 'acts_as_follower'
110+
gem 'acts_as_follower', '0.1.1'
110111
gem 'color'
111112
gem 'createsend'
112113
gem 'fog'
@@ -128,13 +129,12 @@ gem 'sanitize'
128129
gem 'simple_form'
129130
gem 'tweet-button'
130131

131-
group :assets do
132-
gem 'sass', '~> 3.2.9'
133-
gem 'coffee-rails', '~> 3.2.1'
134-
gem 'compass-rails'
135-
gem 'sass-rails', '~> 3.2.6'
136-
gem 'uglifier', '>= 1.0.3'
137-
end
132+
133+
# Mongo
134+
gem 'mongoid'
135+
gem 'mongo'
136+
gem 'mongoid_taggable'
137+
gem 'bson_ext', '~> 1.3'
138138

139139
group :development do
140140
gem 'better_errors'
@@ -148,24 +148,26 @@ group :development do
148148
end
149149

150150
group :development, :test do
151-
gem 'factory_girl_rails'
151+
gem 'fabrication-rails'
152152
gem 'ffaker'
153153
gem 'jazz_hands', github: 'nixme/jazz_hands', branch: 'bring-your-own-debugger'
154154
gem 'launchy'
155155
gem 'letter_opener', github: 'alexrothenberg/letter_opener', branch: 'on_a_server'
156156
gem 'pry-byebug'
157157
gem 'quiet_assets'
158158
gem 'syntax'
159+
gem 'annotate'
160+
gem 'mail_view'
159161
end
160-
gem 'mail_view'
162+
161163

162164
group :test do
163-
gem 'capybara', '~> 1.1'
165+
gem 'capybara'
164166
gem 'database_cleaner'
165-
gem 'fabrication', '1.4.1'
166-
gem 'fuubar'
167+
gem 'fuubar' , '2.0.0.rc1'
167168
gem 'resque_spec'
168169
gem 'rspec-rails'
170+
# gem 'rspec-its'
169171
gem 'simplecov'
170172
gem 'timecop'
171173
gem 'vcr'

0 commit comments

Comments
 (0)