forked from solidusio/solidus_auth_devise
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fix assets so feature specs can run. - Refactor test env - Fix 3 of 4 failing specs (the one left id for regression test for spree/spree#1687, probably something with rails4 sessions). The other specs was fixed by bypassing gateway error on checkout. - Refactor syntax for all specs —now they also readable :) - Minor fixes to the engine, noticed issues with devise that needed to be loaded before devise-encryptable. - Bumped devise and cancan + all dev dependencies.
- Loading branch information
Showing
41 changed files
with
593 additions
and
570 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,3 +3,4 @@ spec/dummy | |
coverage | ||
Gemfile.lock | ||
*.swp | ||
.rvmrc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
--color |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ language: ruby | |
rvm: | ||
- 1.9.3 | ||
- 2.0.0 | ||
- 2.1.0 | ||
env: | ||
- DB=sqlite | ||
- DB=mysql | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,5 @@ | ||
source 'https://rubygems.org' | ||
|
||
gem 'json' | ||
gem 'sqlite3' | ||
gem 'mysql2' | ||
gem 'pg' | ||
gem 'multi_json' | ||
# Gems used only for assets and not required | ||
# in production environments by default. | ||
group :assets do | ||
gem 'sass-rails', '~> 4.0.0' | ||
gem 'coffee-rails', '~> 4.0.0' | ||
end | ||
|
||
group :test do | ||
gem 'rspec-rails', '~> 2.13.0' | ||
gem 'factory_girl_rails', '~> 4.2.1' | ||
gem 'email_spec', '~> 1.4.0' | ||
|
||
gem 'ffaker' | ||
gem 'shoulda-matchers', '~> 1.4.2' | ||
gem 'capybara', '~> 2.1' | ||
gem 'database_cleaner', '~> 1.0.1' | ||
gem 'selenium-webdriver', '2.35.1' | ||
gem 'launchy' | ||
end | ||
|
||
gem 'spree', :github => "spree/spree", :branch => "master" | ||
gem 'pry' | ||
gem 'spree', github: 'spree/spree', branch: 'master' | ||
|
||
gemspec |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,5 @@ | ||
# This file is used to designate compatibilty with different versions of Spree | ||
# Please see http://spreecommerce.com/documentation/extensions.html#versionfile for details | ||
|
||
"2.1.x" => { :branch => "master" } | ||
"2.2.x" => { :branch => "2-2-stable" } | ||
"2.1.x" => { :branch => "2-1-stable" } | ||
"2.0.x" => { :branch => "2-0-stable" } | ||
"1.3.x" => { :branch => "1-3-stable" } | ||
"1.2.x" => { :branch => "1-2-stable" } | ||
"1.2.x" => { :branch => "1-2-stable" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
// Placeholder for backend dummy application | ||
//= require spree/backend |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
// Placeholder for backend dummy application | ||
//= require spree/frontend |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
/* Placeholder for backend dummy app */ | ||
/* | ||
*= require spree/backend | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
/* Placeholder for backend dummy app */ | ||
/* | ||
*= require spree/frontend | ||
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
app/views/spree/user_mailer/reset_password_instructions.text.erb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
A request to reset your password has been made. | ||
If you did not make this request, simply ignore this email. | ||
A request to reset your password has been made. | ||
If you did not make this request, simply ignore this email. | ||
|
||
If you did make this request just click the link below: | ||
|
||
<%= @edit_password_reset_url %> | ||
If the above URL does not work try copying and pasting it into your browser. | ||
|
||
If the above URL does not work try copying and pasting it into your browser. | ||
If you continue to have problem please feel free to contact us. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
require 'devise' | ||
require 'devise-encryptable' | ||
|
||
module Spree | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
require 'spree_core' | ||
require 'spree/auth/devise' | ||
require 'spree/authentication_helpers' | ||
require 'coffee_script' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
#!/usr/bin/env ruby | ||
# This command will automatically be run when you run "rails" with Rails 3 gems installed from the root of your application. | ||
|
||
ENGINE_PATH = File.expand_path('../..', __FILE__) | ||
load File.expand_path('../../spec/dummy/script/rails', __FILE__) | ||
ENGINE_ROOT = File.expand_path('../..', __FILE__) | ||
ENGINE_PATH = File.expand_path('../../lib/spree/auth/engine', __FILE__) | ||
|
||
require 'rails/all' | ||
require 'rails/engine/commands' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.