devise_materialize 1.0.0.rc2 → 1.0.0

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: acaebdd64ca24bb743107725cdc0f2030487c1b8
4
- data.tar.gz: e0cc37111bb536ca6013f270eeff4dd712a20bcf
3
+ metadata.gz: f6edab3efebd8ea1398d6203bb803c4ac827363c
4
+ data.tar.gz: 86a8cd60a0424269febdacfe04611b3ea8484282
5
5
  SHA512:
6
- metadata.gz: 6d3eb680229377c488f73a28a18e7d58fa06145e6d17e71242eb2704c8d2557e45b4365afdffd0b4a10138d2ef2832c34ea500cad3ca341e5ebd70b1f405f82b
7
- data.tar.gz: ce14247c2614e79b28785cfdef797936b2e63d566fe10b4ef4a88eb5eb806ce0f62a2cb1053e3e5c891c51c80cb82c483909e028c2dc2ab7e28e4bbbb6427c68
6
+ metadata.gz: f05c608e084fde346043e1d6b066cc029af6e37e1154a7704d97a28160dcb6d3fb2336550112ce0b9f180d037d81e94c1a5f7623a7391e0429ee671b179aa787
7
+ data.tar.gz: db1a2deabc15ed004874de15b07e9a7fdfd78059a6dfd4d86e67947cd67e170bc8acdf78166bbf76fb7cd9652391fafeb49b64a36ed2fe0ad270a128a3e25ab3
data/.rubocop.yml CHANGED
@@ -159,6 +159,7 @@ Metrics/AbcSize:
159
159
  Max: 15
160
160
  Exclude:
161
161
  - test/lib/install_generator_test.rb
162
+ - lib/generators/devise_materialize/install_generator.rb
162
163
  Metrics/BlockNesting:
163
164
  Description: Avoid excessive block nesting
164
165
  StyleGuide: https://github.com/bbatsov/ruby-style-guide#three-is-the-number-thou-shalt-count
data/CHANGELOG.md ADDED
@@ -0,0 +1,15 @@
1
+ # Change Log
2
+
3
+ ## v1.0.0
4
+
5
+ #### Features
6
+ - Generate Materialize Views for Devise in multiple formats
7
+
8
+ Formats Supported:
9
+ - HAML
10
+ - SLIM
11
+ - ERB
12
+
13
+ Form Types Supported:
14
+ - form_for
15
+ - simple_form_for
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- devise_materialize (1.0.0.rc2)
4
+ devise_materialize (1.0.0)
5
5
  railties (>= 4.1.0, < 5.1)
6
6
 
7
7
  GEM
data/README.md CHANGED
@@ -60,6 +60,10 @@ $ rails g devise_materialize:install Users --form-engine simple_form --view-engi
60
60
  ```
61
61
  This will generate the views in simple form usage and HAML syntax
62
62
 
63
+ ## Change Log
64
+
65
+ Check out the [Change Log](https://github.com/techgurupezza/devise_materialize/CHANGELOG.md) for new features/bug fixes per release of a new version.
66
+
63
67
  ## Development
64
68
 
65
69
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake test` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module DeviseMaterialize
3
- VERSION = "1.0.0.rc2"
3
+ VERSION = "1.0.0"
4
4
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: devise_materialize
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0.rc2
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Christopher Pezza
@@ -43,6 +43,7 @@ files:
43
43
  - ".rubocop.yml"
44
44
  - ".ruby-version"
45
45
  - ".yardopts"
46
+ - CHANGELOG.md
46
47
  - CODE_OF_CONDUCT.md
47
48
  - Gemfile
48
49
  - Gemfile.lock