ez 1.9.4 → 1.9.5

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: 30a484332a168113613431f7bf0c9206d784bc67
4
- data.tar.gz: 0a85d1d5f6902f451321f860f0576a8ee4a65f62
3
+ metadata.gz: 23741b055d44d8d123491ccd2a7676adb29e9628
4
+ data.tar.gz: 6aa4ee49e84f7292d1bd15ba75137d9252998bb1
5
5
  SHA512:
6
- metadata.gz: e812e91ee6e64b30033a35b92ee49d8c20ceca3d63a1f3c5df4eac817317d3ba4f8e7e0e580572f0f55331fcc0b5efebbabb6bb673c7660c1cca896f23d24809
7
- data.tar.gz: 3f63336649e577a6ca59d06b44a41b947b488205d66367715300c12153e54ae8f60192adc2a81db86bdd88033c0cd7320b15dbf56d167e88f924e754ec96548e
6
+ metadata.gz: ce7f8f3d5a37df1ef946eb7c61af86f198b384b888f355672899f81c7a134598da0843c884ac24a1f2230d44f75a175043fd10d902df6533d61843303bc3cd9e
7
+ data.tar.gz: a957967674e15ccd67462a47be72d8dfa25b7d95db7a9b77563396da63dc525c2ee632138530763af338c6629219abbc87e40cca5c32b6dd549c991cd5b6e538
data/README.md CHANGED
@@ -60,7 +60,7 @@ not delete tables or columns in production, only add tables and add
60
60
  columns. This could be problematic but is hopefully the 1% case.
61
61
 
62
62
 
63
- ## Syntax Guide for `db/models.yml`**
63
+ ## Syntax Guide for `db/models.yml`
64
64
 
65
65
  It's just YAML. We recommend `text` instead of `string` columns (because of recent SQLite3 changes) but both are supported.
66
66
 
@@ -52,13 +52,13 @@ module EZ
52
52
 
53
53
  def self.create_view_folder(folder)
54
54
  return unless Rails.env.development?
55
-
55
+
56
56
  full_path = File.join(Rails.root, 'app', 'views', folder)
57
57
  FileUtils.mkdir_p(full_path)
58
58
  VIEWS.each do |view|
59
59
  File.open(File.join(full_path, "#{view}.html.erb"), "w:utf-8") do |file|
60
- file.puts "<h1>This is a temporary page.</h1>"
61
- file.puts "<p>To modify this page, edit the template at <code>app/views/#{folder}/#{file}.html.erb</p>"
60
+ file.puts "<h1>This is a placeholder page.</h1>"
61
+ file.puts "<p>To modify this page, edit the template at <code>app/views/#{folder}/#{view}.html.erb</p>"
62
62
  end
63
63
  end
64
64
  end
@@ -1,3 +1,3 @@
1
1
  module EZ
2
- VERSION = "1.9.4"
2
+ VERSION = "1.9.5"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ez
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.4
4
+ version: 1.9.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeff Cohen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-12-05 00:00:00.000000000 Z
11
+ date: 2017-12-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: awesome_print