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 +1 -1
- data/clearance.gemspec +1 -1
- data/{rails/init.rb → init.rb} +0 -0
- data/spec/rails_root/Gemfile +13 -38
- data/spec/rails_root/Rakefile +1 -1
- data/spec/rails_root/config/environments/development.rb +2 -0
- data/spec/rails_root/config/environments/test.rb +2 -0
- data/spec/rails_root/config/routes.rb +3 -3
- data/spec/rails_root/db/schema.rb +8 -7
- data/test/rails_root/Gemfile +10 -17
- data/test/rails_root/Rakefile +1 -1
- data/test/rails_root/config/environments/development.rb +2 -0
- data/test/rails_root/config/environments/test.rb +2 -0
- data/test/rails_root/config/routes.rb +3 -3
- metadata +4 -4
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.9.0.
|
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
|
-
"
|
63
|
+
"init.rb",
|
64
64
|
]
|
65
65
|
|
66
66
|
s.homepage = %q{http://github.com/thoughtbot/clearance}
|
data/{rails/init.rb → init.rb}
RENAMED
File without changes
|
data/spec/rails_root/Gemfile
CHANGED
@@ -1,40 +1,15 @@
|
|
1
1
|
source 'http://rubygems.org'
|
2
2
|
|
3
|
-
gem 'rails', '3.0.0
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
gem '
|
9
|
-
|
10
|
-
gem '
|
11
|
-
|
12
|
-
gem '
|
13
|
-
|
14
|
-
gem '
|
15
|
-
gem '
|
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'
|
data/spec/rails_root/Rakefile
CHANGED
@@ -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
|
2
|
-
|
3
|
-
|
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
|
2
|
-
# please use the migrations feature of Active Record to
|
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
|
6
|
-
# to create the application database on another
|
7
|
-
#
|
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 =>
|
13
|
+
ActiveRecord::Schema.define(:version => 20100831183626) do
|
13
14
|
|
14
15
|
create_table "users", :force => true do |t|
|
15
16
|
t.string "email"
|
data/test/rails_root/Gemfile
CHANGED
@@ -1,24 +1,17 @@
|
|
1
1
|
source 'http://rubygems.org'
|
2
2
|
|
3
|
-
gem 'rails', '3.0.0
|
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 '
|
11
|
-
|
12
|
-
gem '
|
13
|
-
|
14
|
-
gem '
|
15
|
-
gem '
|
16
|
-
gem '
|
17
|
-
|
18
|
-
gem '
|
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 => '../..'
|
data/test/rails_root/Rakefile
CHANGED
@@ -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
|
2
|
-
|
3
|
-
|
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:
|
4
|
+
hash: 977940481
|
5
5
|
prerelease: true
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 9
|
9
9
|
- 0
|
10
|
-
-
|
11
|
-
version: 0.9.0.
|
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
|
-
-
|
129
|
+
- init.rb
|
130
130
|
- spec/rails_root/Gemfile
|
131
131
|
- spec/rails_root/README
|
132
132
|
- spec/rails_root/Rakefile
|