typus 1.0.0.pre2 → 1.0.0.pre3

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.
@@ -7,10 +7,6 @@ class Admin::BaseController < ActionController::Base
7
7
  before_filter :reload_config_and_roles
8
8
  before_filter :authenticate
9
9
 
10
- def show
11
- redirect_to admin_dashboard_path
12
- end
13
-
14
10
  protected
15
11
 
16
12
  def reload_config_and_roles
data/config/routes.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  Rails.application.routes.draw do
2
2
 
3
- resource :admin, :only => [:show], :controller => :admin
3
+ match "/admin" => redirect("/admin/dashboard")
4
4
 
5
5
  namespace :admin do
6
6
 
data/lib/typus/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Typus
2
- VERSION = "1.0.0.pre2"
2
+ VERSION = "1.0.0.pre3"
3
3
  end
data/lib/typus.rb CHANGED
@@ -5,7 +5,7 @@ require "support/array"
5
5
  require "support/hash"
6
6
  require "support/object"
7
7
  require "support/string"
8
- require "typus/engine"
8
+ # require "typus/engine"
9
9
  require "typus/configuration"
10
10
  require "typus/resources"
11
11
  require "typus/orm/active_record"
Binary file
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: typus
3
3
  version: !ruby/object:Gem::Version
4
- hash: -1876988175
4
+ hash: -1876988178
5
5
  prerelease: true
6
6
  segments:
7
7
  - 1
8
8
  - 0
9
9
  - 0
10
- - pre2
11
- version: 1.0.0.pre2
10
+ - pre3
11
+ version: 1.0.0.pre3
12
12
  platform: ruby
13
13
  authors:
14
14
  - Francesc Esplugas
@@ -349,6 +349,7 @@ files:
349
349
  - test/unit/admin/mailer_test.rb
350
350
  - test/unit/typus_user_roles_test.rb
351
351
  - test/unit/typus_user_test.rb
352
+ - typus-1.0.0.pre2.gem
352
353
  - typus.gemspec
353
354
  has_rdoc: true
354
355
  homepage: http://core.typuscms.com/