birdel 2.3.5 → 3.0.1
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.
- checksums.yaml +4 -4
- data/lib/birdel/cli.rb +0 -4
- data/lib/birdel/com/com_actor.rb +0 -1
- data/lib/birdel/map/map_actor.rb +4 -3
- data/lib/birdel/synth/synth_actor.rb +2 -2
- data/lib/birdel/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 40599925aad88f556556c06495eb89752d71a8865a71debbb1347bbc34890a1b
|
4
|
+
data.tar.gz: c7365b76eaa804f685b01e96b40348620c07e3fbaacad38d34a6333b968fd438
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9422f02523f26ab5273fbb0b120280d3c0ebdf0ae952bf9d159237b964220dd2e1d3203582a7000a1be377f6aaffb4d97d539e8cd64f98bb83b7e87f5e783dc7
|
7
|
+
data.tar.gz: d11f384d3fd2858294e609cce4399f950be2acce572a71ec74b0891cb10ac69d3362788ac88466f61603616f5fdb9cf820632119b0c7858aa8e463ef886621a4
|
data/lib/birdel/cli.rb
CHANGED
data/lib/birdel/com/com_actor.rb
CHANGED
data/lib/birdel/map/map_actor.rb
CHANGED
@@ -39,7 +39,7 @@ module Birdel
|
|
39
39
|
if full_css_entry_path.join(file[:name]).exist?
|
40
40
|
puts "File #{full_css_entry_path.join(file[:name]).relative_path_from(myapp_path)} already exists".red.bold
|
41
41
|
else
|
42
|
-
puts full_css_entry_path.join(file[:name]).to_s.green.bold
|
42
|
+
puts "+ #{full_css_entry_path.join(file[:name]).relative_path_from(myapp_path).to_s}".green.bold
|
43
43
|
full_css_entry_path.join(file[:name]).open("w") do |f|
|
44
44
|
f.write(file[:content])
|
45
45
|
end
|
@@ -47,6 +47,8 @@ module Birdel
|
|
47
47
|
end
|
48
48
|
end
|
49
49
|
|
50
|
+
puts ""
|
51
|
+
|
50
52
|
if full_js_entry_path.exist?
|
51
53
|
puts "Entry #{full_js_entry_path.relative_path_from(myapp_path)} already exists".red.bold
|
52
54
|
else
|
@@ -54,8 +56,6 @@ module Birdel
|
|
54
56
|
js_entry_files = [
|
55
57
|
{ name: "components.js", content: "" },
|
56
58
|
{ name: "components.js.json", content: "[]" },
|
57
|
-
{ name: "precomponents.js", content: "" },
|
58
|
-
{ name: "precomponents.js.json", content: "[]" },
|
59
59
|
{ name: "index.js", content: "import \"./components\";"},
|
60
60
|
]
|
61
61
|
js_entry_files.each do |file|
|
@@ -81,6 +81,7 @@ module Birdel
|
|
81
81
|
css_index_filename_without_extension = css_index_path.basename('.css').to_s
|
82
82
|
css_index_formatted_path = "#{css_index_directory_path}/#{css_index_filename_without_extension}"
|
83
83
|
|
84
|
+
puts ""
|
84
85
|
|
85
86
|
if full_layout_entry_path.exist?
|
86
87
|
puts "Entry #{full_layout_entry_path.relative_path_from(myapp_path)} already exists".red.bold
|
@@ -54,13 +54,13 @@ module Birdel
|
|
54
54
|
end
|
55
55
|
end
|
56
56
|
end
|
57
|
-
puts "(css-success) Building finished.".
|
57
|
+
puts "(css-success) Building finished.".yellow
|
58
58
|
puts ""
|
59
59
|
|
60
60
|
js_bentries_path.each_child do |entry_folder_path|
|
61
61
|
index_path = entry_folder_path.join("components.js")
|
62
62
|
components_json_path = entry_folder_path.join("components.js.json")
|
63
|
-
puts "(js) Building #{index_path.relative_path_from(app_folder_path)}".
|
63
|
+
puts "(js) Building #{index_path.relative_path_from(app_folder_path)}".yellow
|
64
64
|
puts "-> (js) Components...".yellow
|
65
65
|
File.truncate(index_path, 0)
|
66
66
|
component_controllers = JSON.parse(File.read(components_json_path))
|
data/lib/birdel/version.rb
CHANGED