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

Commit

Permalink
v1.1.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Pezza committed Feb 12, 2018
1 parent bed17f5 commit cfe132d
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Change Log

## v1.1.1

#### Features
- Enable Circleci testing for 2.2, 2.3, 2.4, and 2.5

#### Bugs
- N/A


## v1.1.0

#### Features
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Devise Materialize

[![Gem](https://img.shields.io/gem/v/devise_materialize.svg?style=flat-square)](https://rubygems.org/gems/devise_materialize)
[![CircleCI](https://img.shields.io/circleci/project/github/techgurupezza/devise_materialize.svg?style=flat-square)](https://circleci.com/gh/techgurupezza/devise_materialize)
[![CircleCI](https://circleci.com/gh/techgurupezza/devise_materialize.svg?style=svg)](https://circleci.com/gh/techgurupezza/devise_materialize)
[![Maintainability](https://api.codeclimate.com/v1/badges/aa4da7ff94af7db3bc66/maintainability)](https://codeclimate.com/github/techgurupezza/devise_materialize/maintainability)
[![Test Coverage](https://api.codeclimate.com/v1/badges/aa4da7ff94af7db3bc66/test_coverage)](https://codeclimate.com/github/techgurupezza/devise_materialize/test_coverage)
[![Gem](https://img.shields.io/gem/dt/devise_materialize.svg?style=flat-square)](https://rubygems.org/gems/devise_materialize)
[![Gem](https://img.shields.io/gem/v/devise_materialize.svg?style=flat-square)](https://rubygems.org/gems/devise_materialize)


Devise Materialize gem is here to generate you devise view in a materialize styled format with or w/o simple_form.
Expand All @@ -30,7 +30,7 @@ gem "slim"
# Required if using Simple Form
gem "simple_form"

gem "devise_materialize", "~>1.1.0"
gem "devise_materialize", "~>1.1.1"
```

## Usage
Expand Down
9 changes: 0 additions & 9 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,11 @@

require "bundler/gem_tasks"
require "rake/testtask"
require "rubocop/rake_task"

Rake::TestTask.new(:test) do |t|
t.libs << "test"
t.libs << "lib"
t.test_files = FileList["test/**/*_test.rb"]
end

desc "Rubocop Task"
task(:rubocop) do
RuboCop::RakeTask.new do |t|
t.options = ["-c", ".rubocop.yml", "-D"]
t.fail_on_error = true
end
end

task default: :test
2 changes: 1 addition & 1 deletion lib/devise_materialize/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module DeviseMaterialize
VERSION = "1.1.0"
VERSION = "1.1.1".freeze
end

0 comments on commit cfe132d

Please sign in to comment.