clearance 0.9.0.rc7 → 0.9.0.rc8

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of clearance might be problematic. Click here for more details.

data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.9.0.rc7
1
+ 0.9.0.rc8
data/clearance.gemspec CHANGED
@@ -60,7 +60,7 @@ Gem::Specification.new do |s|
60
60
  "lib/rails/generators/clearance_views_templates/formtastic/erb/sessions/new.html.erb",
61
61
  "lib/rails/generators/clearance_views_templates/formtastic/erb/users/_inputs.html.erb",
62
62
  "lib/rails/generators/clearance_views_templates/formtastic/erb/users/new.html.erb",
63
- "rails/init.rb",
63
+ "init.rb",
64
64
  ]
65
65
 
66
66
  s.homepage = %q{http://github.com/thoughtbot/clearance}
File without changes
@@ -1,40 +1,15 @@
1
1
  source 'http://rubygems.org'
2
2
 
3
- gem 'rails', '3.0.0.beta4'
4
-
5
- # Bundle edge Rails instead:
6
- # gem 'rails', :git => 'git://github.com/rails/rails.git'
7
-
8
- gem 'sqlite3-ruby', :require => 'sqlite3'
9
-
10
- gem 'mocha'
11
-
12
- gem 'formtastic', :git => "git://github.com/justinfrench/formtastic.git", :branch => "rails3"
13
-
14
- gem 'shoulda', '>= 2.11', :git => "git://github.com/thoughtbot/shoulda.git"
15
- gem 'factory_girl_rails'
16
- gem 'nokogiri', '1.4.1'
17
-
18
- gem 'capybara'
19
- gem 'database_cleaner'
20
- gem 'cucumber-rails', '0.3.2'
21
- gem 'cucumber', '0.8.0'
22
- gem 'launchy'
23
-
24
- # Use unicorn as the web server
25
- # gem 'unicorn'
26
-
27
- # Deploy with Capistrano
28
- # gem 'capistrano'
29
-
30
- # Bundle the extra gems:
31
- # gem 'bj'
32
- # gem 'nokogiri', '1.4.1'
33
- # gem 'sqlite3-ruby', :require => 'sqlite3'
34
- # gem 'aws-s3', :require => 'aws/s3'
35
-
36
- # Bundle gems for certain environments:
37
- # gem 'rspec', :group => :test
38
- # group :test do
39
- # gem 'webrat'
40
- # end
3
+ gem 'rails', '3.0.0'
4
+
5
+ gem 'sqlite3-ruby', '1.3.1', :require => 'sqlite3'
6
+
7
+ gem 'capybara', '0.3.9'
8
+ gem 'cucumber', '0.8.5'
9
+ gem 'cucumber-rails', '0.3.2'
10
+ gem 'factory_girl_rails', '1.0'
11
+ gem 'formtastic', '1.1.0.beta'
12
+ gem 'launchy', '0.3.7'
13
+ gem 'mocha', '0.9.8'
14
+ gem 'nokogiri', '1.4.1'
15
+ gem 'shoulda', '2.11.3'
@@ -7,4 +7,4 @@ require 'rake'
7
7
  require 'rake/testtask'
8
8
  require 'rake/rdoctask'
9
9
 
10
- Rails::Application.load_tasks
10
+ Rails3Root::Application.load_tasks
@@ -16,4 +16,6 @@ Rails3Root::Application.configure do
16
16
 
17
17
  # Don't care if the mailer can't send
18
18
  config.action_mailer.raise_delivery_errors = false
19
+
20
+ config.active_support.deprecation = :stderr
19
21
  end
@@ -29,4 +29,6 @@ Rails3Root::Application.configure do
29
29
  # This is necessary if your schema can't be completely dumped by the schema dumper,
30
30
  # like if you have constraints or database-specific column types
31
31
  # config.active_record.schema_format = :sql
32
+
33
+ config.active_support.deprecation = :stderr
32
34
  end
@@ -1,6 +1,6 @@
1
- Rails3Root::Application.routes.draw do |map|
2
- map.resource :account
3
- map.root :controller => 'accounts', :action => 'edit'
1
+ Rails3Root::Application.routes.draw do
2
+ resource :account
3
+ root :to => 'accounts#edit'
4
4
 
5
5
  # The priority is based upon order of creation:
6
6
  # first created -> highest priority.
@@ -1,15 +1,16 @@
1
- # This file is auto-generated from the current state of the database. Instead of editing this file,
2
- # please use the migrations feature of Active Record to incrementally modify your database, and
3
- # then regenerate this schema definition.
1
+ # This file is auto-generated from the current state of the database. Instead
2
+ # of editing this file, please use the migrations feature of Active Record to
3
+ # incrementally modify your database, and then regenerate this schema definition.
4
4
  #
5
- # Note that this schema.rb definition is the authoritative source for your database schema. If you need
6
- # to create the application database on another system, you should be using db:schema:load, not running
7
- # all the migrations from scratch. The latter is a flawed and unsustainable approach (the more migrations
5
+ # Note that this schema.rb definition is the authoritative source for your
6
+ # database schema. If you need to create the application database on another
7
+ # system, you should be using db:schema:load, not running all the migrations
8
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
8
9
  # you'll amass, the slower it'll run and the greater likelihood for issues).
9
10
  #
10
11
  # It's strongly recommended to check this file into your version control system.
11
12
 
12
- ActiveRecord::Schema.define(:version => 20100822062949) do
13
+ ActiveRecord::Schema.define(:version => 20100831183626) do
13
14
 
14
15
  create_table "users", :force => true do |t|
15
16
  t.string "email"
@@ -1,24 +1,17 @@
1
1
  source 'http://rubygems.org'
2
2
 
3
- gem 'rails', '3.0.0.beta4'
4
-
5
- # Bundle edge Rails instead:
6
- # gem 'rails', :git => 'git://github.com/rails/rails.git'
3
+ gem 'rails', '3.0.0'
7
4
 
8
5
  gem 'sqlite3-ruby', :require => 'sqlite3'
9
6
 
10
- gem 'mocha'
11
-
12
- gem 'formtastic', :git => "git://github.com/justinfrench/formtastic.git", :branch => "rails3"
13
-
14
- gem 'shoulda', '>= 2.11', :git => "git://github.com/thoughtbot/shoulda.git"
15
- gem 'factory_girl_rails'
16
- gem 'nokogiri', '1.4.1'
17
-
18
- gem 'capybara'
19
- gem 'database_cleaner'
20
- gem 'cucumber-rails', '0.3.2'
21
- gem 'cucumber', '0.8.5'
22
- gem 'launchy'
7
+ gem 'capybara', '0.3.9'
8
+ gem 'cucumber', '0.8.5'
9
+ gem 'cucumber-rails', '0.3.2'
10
+ gem 'factory_girl_rails', '1.0'
11
+ gem 'formtastic', '1.1.0.beta'
12
+ gem 'launchy', '0.3.7'
13
+ gem 'mocha', '0.9.8'
14
+ gem 'nokogiri', '1.4.1'
15
+ gem 'shoulda', '2.11.3'
23
16
 
24
17
  gem 'clearance', :path => '../..'
@@ -7,4 +7,4 @@ require 'rake'
7
7
  require 'rake/testtask'
8
8
  require 'rake/rdoctask'
9
9
 
10
- Rails::Application.load_tasks
10
+ Rails3Root::Application.load_tasks
@@ -16,4 +16,6 @@ Rails3Root::Application.configure do
16
16
 
17
17
  # Don't care if the mailer can't send
18
18
  config.action_mailer.raise_delivery_errors = false
19
+
20
+ config.active_support.deprecation = :stderr
19
21
  end
@@ -29,4 +29,6 @@ Rails3Root::Application.configure do
29
29
  # This is necessary if your schema can't be completely dumped by the schema dumper,
30
30
  # like if you have constraints or database-specific column types
31
31
  # config.active_record.schema_format = :sql
32
+
33
+ config.active_support.deprecation = :stderr
32
34
  end
@@ -1,6 +1,6 @@
1
- Rails3Root::Application.routes.draw do |map|
2
- map.resource :account
3
- map.root :controller => 'accounts', :action => 'edit'
1
+ Rails3Root::Application.routes.draw do
2
+ resource :account
3
+ root :to => 'accounts#edit'
4
4
 
5
5
  # The priority is based upon order of creation:
6
6
  # first created -> highest priority.
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: 977940480
4
+ hash: 977940481
5
5
  prerelease: true
6
6
  segments:
7
7
  - 0
8
8
  - 9
9
9
  - 0
10
- - rc7
11
- version: 0.9.0.rc7
10
+ - rc8
11
+ version: 0.9.0.rc8
12
12
  platform: ruby
13
13
  authors:
14
14
  - Dan Croak
@@ -126,7 +126,7 @@ files:
126
126
  - lib/rails/generators/clearance_views_templates/formtastic/erb/sessions/new.html.erb
127
127
  - lib/rails/generators/clearance_views_templates/formtastic/erb/users/_inputs.html.erb
128
128
  - lib/rails/generators/clearance_views_templates/formtastic/erb/users/new.html.erb
129
- - rails/init.rb
129
+ - init.rb
130
130
  - spec/rails_root/Gemfile
131
131
  - spec/rails_root/README
132
132
  - spec/rails_root/Rakefile