actionview-consistent_fallback 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +3 -0
- data/MIT-LICENSE +1 -1
- data/README.md +5 -0
- data/lib/actionview/consistent_fallback/version.rb +1 -1
- metadata +4 -5
- data/lib/tasks/actionview/consistent_fallback_tasks.rake +0 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e2665eaf75f46232781f58bdcfcb1833d4b30aa5
|
4
|
+
data.tar.gz: b04f39dfb72161eb44096f329ca3a382377d65f2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c8735a175bb70b76952164279055c56dfc14cec31bf4063c42793d18657f5deeb8e73542e75c3ae92a06ea2d99a93194c0d9a88c6a621dd4a1c08132db74be10
|
7
|
+
data.tar.gz: c7855e40ff01e346bd25e011e1c0497d9a0959917e28dc483a5b7220371fe8dd1a66846050a2d37c89f22cfaf0457f682e26f9d322018ec86077ab832e069925
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,6 @@
|
|
1
1
|
# CHANGELOG
|
2
|
+
## [0.1.1](https://github.com/yasaichi/actionview-consistent_fallback/releases/tag/v0.1.1) (September 2, 2017)
|
3
|
+
* Minor fixes not related to the gem code
|
4
|
+
|
2
5
|
## [0.1.0](https://github.com/yasaichi/actionview-consistent_fallback/releases/tag/v0.1.0) (September 2, 2017)
|
3
6
|
* The initial release
|
data/MIT-LICENSE
CHANGED
data/README.md
CHANGED
@@ -1,4 +1,9 @@
|
|
1
1
|
# actionview-consistent\_fallback
|
2
|
+
[![Gem Version](https://badge.fury.io/rb/actionview-consistent_fallback.svg)](http://badge.fury.io/rb/actionview-consistent_fallback)
|
3
|
+
[![Build Status](https://travis-ci.org/yasaichi/actionview-consistent_fallback.svg?branch=master)](https://travis-ci.org/yasaichi/actionview-consistent_fallback)
|
4
|
+
[![Code Climate](https://codeclimate.com/github/yasaichi/actionview-consistent_fallback/badges/gpa.svg)](https://codeclimate.com/github/yasaichi/actionview-consistent_fallback)
|
5
|
+
[![Test Coverage](https://codeclimate.com/github/yasaichi/actionview-consistent_fallback/badges/coverage.svg)](https://codeclimate.com/github/yasaichi/actionview-consistent_fallback/coverage)
|
6
|
+
|
2
7
|
This Action View plugin allows you to fallback to the default layout and partials when there is no variant template corresponding to each request variant.
|
3
8
|
|
4
9
|
## Installation
|
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: actionview-consistent_fallback
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Yuichi Goto
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
@@ -31,7 +31,7 @@ dependencies:
|
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: '6'
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
|
-
name:
|
34
|
+
name: appraisal
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - ">="
|
@@ -45,7 +45,7 @@ dependencies:
|
|
45
45
|
- !ruby/object:Gem::Version
|
46
46
|
version: '0'
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
|
-
name:
|
48
|
+
name: railties
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
50
50
|
requirements:
|
51
51
|
- - ">="
|
@@ -130,7 +130,6 @@ files:
|
|
130
130
|
- lib/actionview/consistent_fallback/railtie.rb
|
131
131
|
- lib/actionview/consistent_fallback/template_rendering.rb
|
132
132
|
- lib/actionview/consistent_fallback/version.rb
|
133
|
-
- lib/tasks/actionview/consistent_fallback_tasks.rake
|
134
133
|
homepage: https://github.com/yasaichi/actionview-consistent_fallback
|
135
134
|
licenses:
|
136
135
|
- MIT
|