talia_core 0.4.12 → 0.4.13
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
|
@@ -5,6 +5,11 @@ require "#{RAILS_ROOT}/config/environment"
|
|
|
5
5
|
require 'rails_generator'
|
|
6
6
|
require 'rails_generator/scripts/generate'
|
|
7
7
|
|
|
8
|
+
# Generate the admin first - this will also load the monkeypatches to prevent
|
|
9
|
+
# duplicate migration ids
|
|
10
|
+
puts "Install the adminstration backend"
|
|
11
|
+
Rails::Generator::Scripts::Generate.new.run(%w(talia_admin))
|
|
12
|
+
|
|
8
13
|
puts "Install and configure restful authentication"
|
|
9
14
|
# First time plugin, has to be done this way since it can not be loaded in
|
|
10
15
|
# a different way
|
|
@@ -27,9 +32,6 @@ end
|
|
|
27
32
|
puts "Install the auto completion plugin"
|
|
28
33
|
Commands::Plugin.parse!(['install', 'auto_complete'])
|
|
29
34
|
|
|
30
|
-
puts "Install the adminstration backend"
|
|
31
|
-
Rails::Generator::Scripts::Generate.new.run(%w(talia_admin))
|
|
32
|
-
|
|
33
35
|
puts "Migrating the database"
|
|
34
36
|
system("rake db:migrate")
|
|
35
37
|
|