how_to 0.0.4 → 0.0.5
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/how_to/version.rb +1 -1
- metadata +1 -4
- data/app/models/how_to/admin_user.rb +0 -13
- data/test/dummy/tmp/pids/server.pid +0 -1
data/lib/how_to/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: how_to
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -131,7 +131,6 @@ files:
|
|
131
131
|
- app/controllers/how_to/sections_controller.rb
|
132
132
|
- app/helpers/how_to/application_helper.rb
|
133
133
|
- app/helpers/how_to/faq_helper.rb
|
134
|
-
- app/models/how_to/admin_user.rb
|
135
134
|
- app/models/how_to/content.rb
|
136
135
|
- app/models/how_to/section.rb
|
137
136
|
- app/models/how_to/translation_util.rb
|
@@ -512,7 +511,6 @@ files:
|
|
512
511
|
- test/dummy/tmp/cache/sass/9b321e8af54768180e20e746ee5d44bf1cd3b0f9/responsive.scssc
|
513
512
|
- test/dummy/tmp/cache/sass/a1ca19fc2b3afb4a167a105e195117650bf09684/application.css.scssc
|
514
513
|
- test/dummy/tmp/cache/sass/a1ca19fc2b3afb4a167a105e195117650bf09684/bootstrap_and_overrides.css.scssc
|
515
|
-
- test/dummy/tmp/pids/server.pid
|
516
514
|
- test/fixtures/how_to/admin_users.yml
|
517
515
|
- test/fixtures/how_to/contents.yml
|
518
516
|
- test/fixtures/how_to/sections.yml
|
@@ -897,7 +895,6 @@ test_files:
|
|
897
895
|
- test/dummy/tmp/cache/sass/9b321e8af54768180e20e746ee5d44bf1cd3b0f9/responsive.scssc
|
898
896
|
- test/dummy/tmp/cache/sass/a1ca19fc2b3afb4a167a105e195117650bf09684/application.css.scssc
|
899
897
|
- test/dummy/tmp/cache/sass/a1ca19fc2b3afb4a167a105e195117650bf09684/bootstrap_and_overrides.css.scssc
|
900
|
-
- test/dummy/tmp/pids/server.pid
|
901
898
|
- test/fixtures/how_to/admin_users.yml
|
902
899
|
- test/fixtures/how_to/contents.yml
|
903
900
|
- test/fixtures/how_to/sections.yml
|
@@ -1,13 +0,0 @@
|
|
1
|
-
module HowTo
|
2
|
-
class AdminUser < ActiveRecord::Base
|
3
|
-
# Include default devise modules. Others available are:
|
4
|
-
# :token_authenticatable, :confirmable,
|
5
|
-
# :lockable, :timeoutable and :omniauthable
|
6
|
-
devise :database_authenticatable,
|
7
|
-
:recoverable, :rememberable, :trackable, :validatable
|
8
|
-
|
9
|
-
# Setup accessible (or protected) attributes for your model
|
10
|
-
attr_accessible :email, :password, :password_confirmation, :remember_me
|
11
|
-
# attr_accessible :title, :body
|
12
|
-
end
|
13
|
-
end
|
@@ -1 +0,0 @@
|
|
1
|
-
55389
|