talia_core 0.4.16 → 0.4.17
Sign up to get free protection for your applications and to get access to all the features.
data/VERSION.yml
CHANGED
@@ -29,14 +29,12 @@ end
|
|
29
29
|
puts "Install the auto completion plugin"
|
30
30
|
Commands::Plugin.parse!(['install', 'auto_complete'])
|
31
31
|
|
32
|
-
puts "Migrating the database"
|
33
|
-
system("rake db:migrate")
|
34
|
-
|
35
32
|
puts "Install the adminstration backend"
|
36
33
|
Rails::Generator::Scripts::Generate.new.run(%w(talia_admin))
|
37
34
|
|
38
|
-
#
|
39
|
-
|
35
|
+
# Add some dependencies that have been just installed
|
36
|
+
ActiveSupport::Dependencies.load_paths << File.join(RAILS_ROOT, 'vendor', 'plugins', 'restful-authentication')
|
37
|
+
ActiveSupport::Dependencies.load_paths << File.join(RAILS_ROOT, 'vendor', 'plugins', 'role_requirement')
|
40
38
|
|
41
39
|
migration_path = File.join(RAILS_ROOT, 'db', 'migrate')
|
42
40
|
ActiveRecord::Migrator.migrate(migration_path)
|