tb_redirects 1.0 → 1.0.1
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.
- checksums.yaml +4 -4
- data/db/migrate/20160211162513_create_tb_redirects.rb +1 -1
- data/lib/tb_redirects/engine.rb +1 -1
- data/lib/tb_redirects/version.rb +1 -1
- data/spec/dummy/app/controllers/application_controller.rb +1 -1
- data/spec/dummy/db/migrate/20160211160614_create_spud_admin_permissions.tb_core.rb +1 -1
- data/spec/dummy/db/migrate/20160211160615_create_spud_users.tb_core.rb +1 -1
- data/spec/dummy/db/migrate/20160211160616_add_time_zone_to_spud_user.tb_core.rb +1 -1
- data/spec/dummy/db/migrate/20160211160617_add_scope_to_spud_admin_permissions.tb_core.rb +1 -1
- data/spec/dummy/db/migrate/20160211160618_create_spud_user_settings.tb_core.rb +1 -1
- data/spec/dummy/db/migrate/20160211160619_create_spud_roles.tb_core.rb +1 -1
- data/spec/dummy/db/migrate/20160211160620_create_spud_permissions.tb_core.rb +1 -1
- data/spec/dummy/db/migrate/20160211160621_create_spud_role_permissions.tb_core.rb +1 -1
- data/spec/dummy/db/migrate/20160211160622_drop_spud_admin_permissions.tb_core.rb +1 -1
- data/spec/dummy/db/migrate/20160211160623_add_requires_password_change_to_spud_users.tb_core.rb +1 -1
- data/spec/dummy/db/migrate/20160211185931_create_widgets.rb +1 -1
- data/spec/dummy/db/migrate/20160212211331_create_tb_redirects.tb_redirects.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f3d9aecd0a3a06806b0438567c29a66cdcd0dc13
|
|
4
|
+
data.tar.gz: 47d359ae1672c491ed8ccd12d1a38f9cde7eae91
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0bef32225d6b27065bd967ae6f76d0af43f14d88ef9de75b27deef325c3711b2fa39990b9863748b4994ff42fd88e0127a7a546e027c13e6ac359d7f2ac4a113
|
|
7
|
+
data.tar.gz: b13461c361ddbb96357d27db51108eabcd58941139da574d15973056c35d080b4654ef49b4fec023835488edabbdd45c50096df3395a5cf1acec075e3a71cf62
|
data/lib/tb_redirects/engine.rb
CHANGED
|
@@ -20,7 +20,7 @@ module TbRedirects
|
|
|
20
20
|
|
|
21
21
|
initializer 'tb_redirects.controllers' do |_config|
|
|
22
22
|
ActiveSupport.on_load(:action_controller) do
|
|
23
|
-
|
|
23
|
+
TbCore::ApplicationController.send :include, TbRedirects::HandleRedirects
|
|
24
24
|
end
|
|
25
25
|
end
|
|
26
26
|
|
data/lib/tb_redirects/version.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# This migration comes from tb_core (originally 20111214161011)
|
|
2
|
-
class CreateSpudAdminPermissions < ActiveRecord::Migration
|
|
2
|
+
class CreateSpudAdminPermissions < ActiveRecord::Migration[4.2]
|
|
3
3
|
def change
|
|
4
4
|
create_table :spud_admin_permissions do |t|
|
|
5
5
|
t.integer :user_id
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# This migration comes from tb_core (originally 20120328235431)
|
|
2
|
-
class AddScopeToSpudAdminPermissions < ActiveRecord::Migration
|
|
2
|
+
class AddScopeToSpudAdminPermissions < ActiveRecord::Migration[4.2]
|
|
3
3
|
def change
|
|
4
4
|
add_column :spud_admin_permissions, :scope, :string
|
|
5
5
|
end
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# This migration comes from tb_core (originally 20130620151132)
|
|
2
|
-
class CreateSpudRolePermissions < ActiveRecord::Migration
|
|
2
|
+
class CreateSpudRolePermissions < ActiveRecord::Migration[4.2]
|
|
3
3
|
def change
|
|
4
4
|
create_table :spud_role_permissions do |t|
|
|
5
5
|
t.integer :spud_role_id, null: false
|
data/spec/dummy/db/migrate/20160211160623_add_requires_password_change_to_spud_users.tb_core.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
# This migration comes from tb_core (originally 20150610143438)
|
|
2
|
-
class AddRequiresPasswordChangeToSpudUsers < ActiveRecord::Migration
|
|
2
|
+
class AddRequiresPasswordChangeToSpudUsers < ActiveRecord::Migration[4.2]
|
|
3
3
|
def change
|
|
4
4
|
add_column :spud_users, :requires_password_change, :boolean, default: false
|
|
5
5
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tb_redirects
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Greg Woods
|
|
@@ -252,7 +252,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
252
252
|
version: '0'
|
|
253
253
|
requirements: []
|
|
254
254
|
rubyforge_project:
|
|
255
|
-
rubygems_version: 2.
|
|
255
|
+
rubygems_version: 2.5.1
|
|
256
256
|
signing_key:
|
|
257
257
|
specification_version: 4
|
|
258
258
|
summary: Simple redirect management for Twice Baked
|