Skip to content

Commit

Permalink
update dummy app
Browse files Browse the repository at this point in the history
  • Loading branch information
lynndylanhurley committed Sep 2, 2014
1 parent 7e73904 commit 3a4a975
Show file tree
Hide file tree
Showing 7 changed files with 1,086 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ group :development, :test do
gem 'attr_encrypted'

# testing
gem 'spring'
#gem 'spring'
gem "pry"
gem "pry-remote"
gem 'minitest'
Expand All @@ -33,6 +33,7 @@ group :development, :test do
gem 'guard'
gem 'guard-minitest'
gem 'faker'
gem 'fuzz_ball'
end

# code coverage, metrics
Expand Down
4 changes: 2 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ GEM
multipart-post (>= 1.2, < 3)
ffi (1.9.3)
formatador (0.2.5)
fuzz_ball (0.9.1)
guard (2.6.1)
formatador (>= 0.2.4)
listen (~> 2.7)
Expand Down Expand Up @@ -183,7 +184,6 @@ GEM
simplecov-html (~> 0.8.0)
simplecov-html (0.8.0)
slop (3.6.0)
spring (1.1.3)
sprockets (2.12.1)
hike (~> 1.2)
multi_json (~> 1.0)
Expand Down Expand Up @@ -215,6 +215,7 @@ DEPENDENCIES
devise_token_auth!
faker
figaro!
fuzz_ball
guard
guard-minitest
minitest
Expand All @@ -229,6 +230,5 @@ DEPENDENCIES
pry
pry-remote
rack-cors
spring
sqlite3 (~> 1.3)
thor
2 changes: 2 additions & 0 deletions test/dummy/app/controllers/application_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ class ApplicationController < ActionController::Base

def configure_permitted_parameters
devise_parameter_sanitizer.for(:sign_up) << :operating_thetan
devise_parameter_sanitizer.for(:sign_up) << :favorite_color
devise_parameter_sanitizer.for(:account_update) << :operating_thetan
devise_parameter_sanitizer.for(:account_update) << :favorite_color
end
end
Loading

0 comments on commit 3a4a975

Please sign in to comment.