10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# File 'lib/generators/camaleon_cms/theme_generator.rb', line 10
def create_initializer_file
theme_folder = Rails.root.join('app', 'apps', 'themes', get_theme_name)
if behavior == :revoke
if Dir.exist?(theme_folder)
FileUtils.rm_rf(theme_folder)
puts 'Theme destroyed successfully'
else
puts "This theme doesn't exist"
end
elsif Dir.exist?(theme_folder)
puts 'This theme already exist'
else
theme_folder = Rails.root.join('app', 'apps', 'themes', get_theme_name)
return puts("There is already a theme with the same name in: #{theme_folder}") if Dir.exist?(theme_folder)
FileUtils.mkdir_p(theme_folder)
FileUtils.copy_entry(File.join($camaleon_engine_dir, 'lib', 'generators', 'camaleon_cms', 'theme_template'),
theme_folder)
t = fix_text(File.read(File.join(theme_folder, 'config', 'config.json')))
File.open(File.join(theme_folder, 'config', 'config.json'), 'w') { |f| f << t }
t = fix_text(File.read(File.join(theme_folder, 'main_helper.rb')))
File.open(File.join(theme_folder, 'main_helper.rb'), 'w') { |f| f << t }
puts "Theme successfully created in: #{theme_folder}"
end
end
|