talia_core 0.4.20 → 0.4.22

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.
data/VERSION.yml CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 4
4
- :patch: 20
4
+ :patch: 22
5
5
  :build:
@@ -1,29 +1,5 @@
1
1
  ActionController::Routing::Routes.draw do |map|
2
- map.logout '/logout', :controller => 'sessions', :action => 'destroy'
3
- map.login '/login', :controller => 'sessions', :action => 'new'
4
- map.register '/register', :controller => 'users', :action => 'create'
5
- map.signup '/signup', :controller => 'users', :action => 'new'
6
- map.resources :users
7
-
8
- map.resource :session
9
-
10
- map.logout '/logout', :controller => 'sessions', :action => 'destroy'
11
- map.login '/login', :controller => 'sessions', :action => 'new'
12
- map.register '/register', :controller => 'users', :action => 'create'
13
- map.signup '/signup', :controller => 'users', :action => 'new'
14
- map.resources :users
15
-
16
- map.resource :session
17
-
18
- map.logout '/logout', :controller => 'sessions', :action => 'destroy'
19
- map.login '/login', :controller => 'sessions', :action => 'new'
20
- map.register '/register', :controller => 'users', :action => 'create'
21
- map.signup '/signup', :controller => 'users', :action => 'new'
22
- map.resources :users
23
-
24
- map.resource :session
25
-
26
- # The priority is based upon order of creation: first created -> highest priority.
2
+ # The priority is based upon order of creation: first created -> highest priority.
27
3
 
28
4
  # Sample of regular route:
29
5
  # map.connect 'products/:id', :controller => 'catalog', :action => 'view'
@@ -37,7 +37,7 @@ ActiveSupport::Dependencies.load_paths << File.join(RAILS_ROOT, 'vendor', 'plugi
37
37
  ActiveSupport::Dependencies.load_paths << File.join(RAILS_ROOT, 'vendor', 'plugins', 'role_requirement', 'lib')
38
38
 
39
39
  # Init the auth thing for the migration
40
- require "#{RAILS_ROOT}/vendor/plugins/restful-authentication/lib/init"
40
+ require File.join(RAILS_ROOT, "config", "initializers", "site_keys.rb")
41
41
 
42
42
  migration_path = File.join(RAILS_ROOT, 'db', 'migrate')
43
43
  ActiveRecord::Migrator.migrate(migration_path)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: talia_core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.20
4
+ version: 0.4.22
5
5
  platform: ruby
6
6
  authors:
7
7
  - Danilo Giacomi
@@ -13,7 +13,7 @@ autorequire:
13
13
  bindir: bin
14
14
  cert_chain: []
15
15
 
16
- date: 2009-12-18 00:00:00 +01:00
16
+ date: 2009-12-21 00:00:00 +01:00
17
17
  default_executable: talia
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
@@ -212,7 +212,6 @@ files:
212
212
  - generators/talia_base/templates/app/controllers/types_controller.rb
213
213
  - generators/talia_base/templates/app/helpers/custom_templates_helper.rb
214
214
  - generators/talia_base/templates/app/helpers/ontologies_helper.rb
215
- - generators/talia_base/templates/app/helpers/sessions_helper.rb
216
215
  - generators/talia_base/templates/app/helpers/source_data_helper.rb
217
216
  - generators/talia_base/templates/app/helpers/sources_helper.rb
218
217
  - generators/talia_base/templates/app/helpers/types_helper.rb
@@ -1,2 +0,0 @@
1
- module SessionsHelper
2
- end