4
5
6
7
8
9
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
|
# File 'lib/tasks/application.rb', line 4
def self.install_theme(theme_name)
unless theme_name == "light" || Dir.exist?("app/views/themes/#{theme_name}")
raise "We could not find '#{theme_name}'. Please eject Bullet Train's standard views to your main application first by using `rake bullet_train:themes:light:eject[custom_theme_name_here]`".red
end
current_theme_regexp = /(^ :)(.*)/
current_theme = nil
new_lines = []
[
"./app/helpers/application_helper.rb",
"./Procfile.dev",
"./package.json"
].each do |file|
File.open(file, "r") do |f|
new_lines = f.readlines
new_lines = new_lines.map do |line|
current_theme = line.scan(current_theme_regexp).flatten.last if line.match?(current_theme_regexp)
line.gsub!(/#{current_theme}/, theme_name) unless current_theme.nil?
line
end
end
File.open(file, "w") do |f|
f.puts new_lines.join
end
end
end
|