thematic 0.1.0 → 0.1.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 881df28e54c9efd0b321c2ec96f1345e2d85817c
4
- data.tar.gz: 4a77e521cc4f14813e3f22c56cdbec4c20e465dc
3
+ metadata.gz: bd4b70c607509150311f1b0895056fdacabf638d
4
+ data.tar.gz: d0de4d9b20799fa80b7d2cb8a70ad9b9733076af
5
5
  SHA512:
6
- metadata.gz: 6ea3cd9b15bb48deeca66760620b6aa945be97f0dd88d40f8f3fa25c5c0280f8c73b92c48ee52f0192abf8ff4d1bac1c75b45323e696ad50c49fbed9d8a2e6f1
7
- data.tar.gz: 4d99796e44d079463a3b42f3efd6bdd5e2456a12c2cbfa0d71c978fd14095de66d9ae13683cd79d13ac356051f583b7d05170dbf986bb7a0b0555942e2de10f5
6
+ metadata.gz: 5d281a896c826a80ee5e3416348ccb9403b6c71f10a5285f0be4ed7fa7f173e2b24c030d6d8e76befbb22cfa3b0a260c2234017874b52632e27e105ee0682d96
7
+ data.tar.gz: 8977ff80323b05eee48fb642905588b1fa2f0611388deffa23e8e41ce909b5e04ca602826abc8a9648cbcefebd21c380737cdeb0b772b49f42e28e5869aea58f
data/README.md CHANGED
@@ -26,6 +26,8 @@ The installation only copies JavaScript from the JS folder, but if there are add
26
26
 
27
27
  rake thematic:plugin[../relative/path/to/your/plugin/folder]
28
28
 
29
+ You can also watch a [video demo!](https://vimeo.com/126414898)
30
+
29
31
  ## Contributing
30
32
 
31
33
  1. Fork it ( https://github.com/[my-github-username]/thematic/fork )
@@ -122,6 +122,10 @@ namespace :thematic do
122
122
  tempfile.close
123
123
  end
124
124
 
125
+ assets_initializer = File.open("config/initializers/assets.rb", 'a')
126
+ assets_initializer << "Rails.application.config.assets.paths << Rails.root.join('app', 'assets', 'fonts')"
127
+ assets_initializer.close
128
+
125
129
  # REWRITING URLS REFERENCED IN CSS ##########
126
130
  if File.exist?("vendor/assets/stylesheets/#{theme_subfolder}/style.css")
127
131
  puts "Configuring images referenced in CSS..."
@@ -145,7 +149,7 @@ namespace :thematic do
145
149
  f.close
146
150
  tempfile.close
147
151
  end
148
- puts "Theme installed!"
152
+ puts "Theme installed! Please restart your Rails server."
149
153
  end
150
154
 
151
155
  task :plugin, [:filepath] do |task, args|
@@ -203,6 +207,8 @@ namespace :thematic do
203
207
  f.close
204
208
  tempfile.close
205
209
  sourcefile.close
210
+
211
+ puts "Theme template installed!"
206
212
  end
207
213
 
208
214
  end
@@ -1,3 +1,3 @@
1
1
  module Thematic
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
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.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jay Wengrow