thematic 0.0.11 → 0.0.12
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/thematic/tasks/thematic.rake +3 -1
- data/lib/thematic/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c14cbfc0c94da8836302cdbe2587aff8db3985a0
|
|
4
|
+
data.tar.gz: 985c223be60f44878d26d4f3d85d7a509c73fcef
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2f2d55f4d49be4a3bd03519ec6149e2193a652e8c86b4d24bc9959e64a14e647f0fb0c1985509e8e55862f9fd5be9d231d1e117693b412fec066d7aa8762484c
|
|
7
|
+
data.tar.gz: c5b69e53e25427fa458c3b07691188c9f6baf8147b00dd425a1762e7397e8d85cfd4a9f0be3617a480991f4124cefb5e35973bd6dc79c711a98a62d3884cfb93
|
|
@@ -9,7 +9,8 @@ namespace :thematic do
|
|
|
9
9
|
|
|
10
10
|
puts "Installing CSS..."
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
# We will search the entire theme and all subfolders for all css files
|
|
13
|
+
copy_from_path = args[:filepath]
|
|
13
14
|
theme_subfolder = "theme"
|
|
14
15
|
|
|
15
16
|
FileUtils.remove_dir "vendor/assets/stylesheets/#{theme_subfolder}" if File.exist?("vendor/assets/stylesheets/#{theme_subfolder}")
|
|
@@ -42,6 +43,7 @@ namespace :thematic do
|
|
|
42
43
|
|
|
43
44
|
puts "Installing JS..."
|
|
44
45
|
|
|
46
|
+
# We will only search the js folder for js files; plugins can be added via the plugin task below
|
|
45
47
|
copy_from_path = "#{args[:filepath]}/js"
|
|
46
48
|
|
|
47
49
|
FileUtils.remove_dir "vendor/assets/javascripts/#{theme_subfolder}" if File.exist?("vendor/assets/javascripts/#{theme_subfolder}")
|
data/lib/thematic/version.rb
CHANGED