clearance 0.9.0.rc6 → 0.9.0.rc7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.0.rc6
1
+ 0.9.0.rc7
@@ -108,8 +108,11 @@ When /^I sign in as "(.*)\/(.*)"$/ do |email, password|
108
108
  And %{I press "Sign in"}
109
109
  end
110
110
 
111
- When /^I sign out$/ do
112
- visit '/sign_out'
111
+ When "I sign out" do
112
+ steps %{
113
+ When I go to the homepage
114
+ And I follow "Sign out"
115
+ }
113
116
  end
114
117
 
115
118
  When /^I request password reset link to be sent to "(.*)"$/ do |email|
@@ -9,7 +9,7 @@ gem 'sqlite3-ruby', :require => 'sqlite3'
9
9
 
10
10
  gem 'mocha'
11
11
 
12
- gem 'formtastic', "1.0.0.beta", :git => "git://github.com/justinfrench/formtastic.git", :branch => "rails3"
12
+ gem 'formtastic', :git => "git://github.com/justinfrench/formtastic.git", :branch => "rails3"
13
13
 
14
14
  gem 'shoulda', '>= 2.11', :git => "git://github.com/thoughtbot/shoulda.git"
15
15
  gem 'factory_girl_rails'
@@ -9,7 +9,7 @@
9
9
  <body>
10
10
  <div id="header">
11
11
  <% if signed_in? -%>
12
- <%= link_to "Sign out", sign_out_path %>
12
+ <%= link_to "Sign out", sign_out_path, :method => :delete %>
13
13
  <% else -%>
14
14
  <%= link_to "Sign in", sign_in_path %>
15
15
  <% end -%>
@@ -9,7 +9,7 @@
9
9
  #
10
10
  # It's strongly recommended to check this file into your version control system.
11
11
 
12
- ActiveRecord::Schema.define(:version => 20100629180247) do
12
+ ActiveRecord::Schema.define(:version => 20100822062949) do
13
13
 
14
14
  create_table "users", :force => true do |t|
15
15
  t.string "email"
@@ -108,8 +108,11 @@ When /^I sign in as "(.*)\/(.*)"$/ do |email, password|
108
108
  And %{I press "Sign in"}
109
109
  end
110
110
 
111
- When /^I sign out$/ do
112
- visit '/sign_out'
111
+ When "I sign out" do
112
+ steps %{
113
+ When I go to the homepage
114
+ And I follow "Sign out"
115
+ }
113
116
  end
114
117
 
115
118
  When /^I request password reset link to be sent to "(.*)"$/ do |email|
@@ -2,7 +2,7 @@ en:
2
2
  errors:
3
3
  template:
4
4
  header:
5
- one: "1 error prohibited this {{model}} from being saved"
6
- other: "{{count}} errors prohibited this {{model}} from being saved"
5
+ one: "1 error prohibited this %{model} from being saved"
6
+ other: "%{count} errors prohibited this %{model} from being saved"
7
7
  # The variable :count is also available
8
- body: "There were problems with the following fields:"
8
+ body: "There were problems with the following fields:"
@@ -9,7 +9,7 @@ gem 'sqlite3-ruby', :require => 'sqlite3'
9
9
 
10
10
  gem 'mocha'
11
11
 
12
- gem 'formtastic', "1.0.0.beta", :git => "git://github.com/justinfrench/formtastic.git", :branch => "rails3"
12
+ gem 'formtastic', :git => "git://github.com/justinfrench/formtastic.git", :branch => "rails3"
13
13
 
14
14
  gem 'shoulda', '>= 2.11', :git => "git://github.com/thoughtbot/shoulda.git"
15
15
  gem 'factory_girl_rails'
@@ -9,7 +9,7 @@
9
9
  <body>
10
10
  <div id="header">
11
11
  <% if signed_in? -%>
12
- <%= link_to "Sign out", sign_out_path %>
12
+ <%= link_to "Sign out", sign_out_path, :method => :delete %>
13
13
  <% else -%>
14
14
  <%= link_to "Sign in", sign_in_path %>
15
15
  <% end -%>
@@ -2,7 +2,7 @@ en:
2
2
  errors:
3
3
  template:
4
4
  header:
5
- one: "1 error prohibited this {{model}} from being saved"
6
- other: "{{count}} errors prohibited this {{model}} from being saved"
5
+ one: "1 error prohibited this %{model} from being saved"
6
+ other: "%{count} errors prohibited this %{model} from being saved"
7
7
  # The variable :count is also available
8
- body: "There were problems with the following fields:"
8
+ body: "There were problems with the following fields:"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: clearance
3
3
  version: !ruby/object:Gem::Version
4
- hash: 977940483
4
+ hash: 977940480
5
5
  prerelease: true
6
6
  segments:
7
7
  - 0
8
8
  - 9
9
9
  - 0
10
- - rc6
11
- version: 0.9.0.rc6
10
+ - rc7
11
+ version: 0.9.0.rc7
12
12
  platform: ruby
13
13
  authors:
14
14
  - Dan Croak