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 +4 -4
- data/.rubocop.yml +1 -0
- data/CHANGELOG.md +15 -0
- data/Gemfile.lock +1 -1
- data/README.md +4 -0
- data/lib/devise_materialize/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f6edab3efebd8ea1398d6203bb803c4ac827363c
|
|
4
|
+
data.tar.gz: 86a8cd60a0424269febdacfe04611b3ea8484282
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
data/Gemfile.lock
CHANGED
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.
|
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
|
|
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
|