thematic 0.0.7 → 0.0.8

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9c790db151bfcafd0a53403e346b08b616cb6b59
4
- data.tar.gz: 8fa71821036b96e0def6ffe80d2154db710770c0
3
+ metadata.gz: 066fcf035bd1e6169fce11ccc0f4f414daae055a
4
+ data.tar.gz: 7bed8a7437c5e9fb95115ca11277d98702c5f521
5
5
  SHA512:
6
- metadata.gz: cb74c604dbac0308f0bf60c697226ff943102dded56f1221be20b6b82a152ad19bef8884a6e55480aef126e5e7ee54e61ffdf1a1558343af2cd22e139d6ddc91
7
- data.tar.gz: cbefa8d4e45ced70b193af8d29166349b750678a2c9b3a2e7ddef22f6ba5c02ccbadd80d96de640c9a0b5806997f8c06304d3d4a12f0af1ba58290fdd22c92e4
6
+ metadata.gz: b5ac42d459ff5db2d974227f56e0cbeb69796ea38b70a95d3cfa1c9a1783f9895b5694d326b13150dbf958b03846f5b0a67dd25adf0f8bac863d0e37c78e3072
7
+ data.tar.gz: aca7106a2fa248f9fb4456ec506c4310cdfa3f9ec2d6018405ae4323fffdff23f8ff929c77b7163e829fe0fd4661fff732957b4678fd704a450233291168a85f
@@ -24,7 +24,7 @@ namespace :thematic do
24
24
  files_to_copy = Dir[ File.join(copy_from_path, '**', '*') ]
25
25
 
26
26
  files_to_copy.each do |filepath|
27
- unless File.directory?(filepath) || filepath.end_with?("min.css")
27
+ unless File.directory?(filepath) || filepath.end_with?("min.css") || filepath.end_with?(".map")
28
28
  filename = filepath.split("/").last
29
29
  copy(filepath, "vendor/assets/stylesheets/#{theme_subfolder}/")
30
30
  tempfile << " *= require #{theme_subfolder}/#{filename.gsub('.css', '')}\n"
@@ -55,7 +55,7 @@ namespace :thematic do
55
55
  files_to_copy = Dir[ File.join(copy_from_path, '**', '*') ]
56
56
 
57
57
  files_to_copy.each do |filepath|
58
- unless File.directory?(filepath) || filepath.end_with?("min.js")
58
+ unless File.directory?(filepath) || filepath.end_with?("min.js") || filepath.end_with?(".map")
59
59
  filename = filepath.split("/").last
60
60
  copy(filepath, "vendor/assets/javascripts/#{theme_subfolder}/")
61
61
  tempfile << "//= require #{theme_subfolder}/#{filename.gsub('.js', '')}\n"
@@ -1,3 +1,3 @@
1
1
  module Thematic
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
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.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jay Wengrow