Skip to content
This repository has been archived by the owner on Mar 20, 2023. It is now read-only.

Commit

Permalink
Version 1.0.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Pezza committed Feb 12, 2017
1 parent de3a98f commit dd25303
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 2 deletions.
1 change: 1 addition & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,7 @@ Metrics/AbcSize:
Max: 15
Exclude:
- test/lib/install_generator_test.rb
- lib/generators/devise_materialize/install_generator.rb
Metrics/BlockNesting:
Description: Avoid excessive block nesting
StyleGuide: https://github.com/bbatsov/ruby-style-guide#three-is-the-number-thou-shalt-count
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Change Log

## v1.0.0

#### Features
- Generate Materialize Views for Devise in multiple formats

Formats Supported:
- HAML
- SLIM
- ERB

Form Types Supported:
- form_for
- simple_form_for
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
devise_materialize (1.0.0.rc2)
devise_materialize (1.0.0)
railties (>= 4.1.0, < 5.1)

GEM
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ $ rails g devise_materialize:install Users --form-engine simple_form --view-engi
```
This will generate the views in simple form usage and HAML syntax

## Change Log

Check out the [Change Log](https://github.com/techgurupezza/devise_materialize/CHANGELOG.md) for new features/bug fixes per release of a new version.

## Development

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.
Expand Down
2 changes: 1 addition & 1 deletion lib/devise_materialize/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# frozen_string_literal: true
module DeviseMaterialize
VERSION = "1.0.0.rc2"
VERSION = "1.0.0"
end

0 comments on commit dd25303

Please sign in to comment.