thematic 0.0.11 → 0.0.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3a8079f296b332e918e651b00e4066bbb784d06e
4
- data.tar.gz: caa8b09467e0d88aaa0672f581147f30a97df1cf
3
+ metadata.gz: c14cbfc0c94da8836302cdbe2587aff8db3985a0
4
+ data.tar.gz: 985c223be60f44878d26d4f3d85d7a509c73fcef
5
5
  SHA512:
6
- metadata.gz: 7111d5459c96795b8f31e4294f9d6537b7d63688e3c57725b7ae2389574067cb1ebff39001665fe2edcaec55120b7b453ee05c0162631d4bafeebd03c5bfffeb
7
- data.tar.gz: dd8523feb954a45a7997ccec0b4c03c83b4df355347dc8253079856d823efa4d62439175bef2a4987ab72b4ffc2ddd0a3a296bfcb1c5955d9836b852281a0c6f
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
- copy_from_path = "#{args[:filepath]}/css"
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}")
@@ -1,3 +1,3 @@
1
1
  module Thematic
2
- VERSION = "0.0.11"
2
+ VERSION = "0.0.12"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: thematic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.11
4
+ version: 0.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jay Wengrow