actionview-consistent_fallback 0.1.0 → 0.1.1

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: 53d85afb4d8b77d8f5b12cbdc7c219a116000aa3
4
- data.tar.gz: 8d4d1cb6f175e65cc13a0dc1574dfeae1cd36c52
3
+ metadata.gz: e2665eaf75f46232781f58bdcfcb1833d4b30aa5
4
+ data.tar.gz: b04f39dfb72161eb44096f329ca3a382377d65f2
5
5
  SHA512:
6
- metadata.gz: 4ce39cc4059ea14611cfb299c3f3c74333491fa879bbc9ac59eaf8391aad1d3a5627f79365328787d701ba705764a83773c423b5cec0d55ec09348abc9533956
7
- data.tar.gz: dc9cdd0431535ec68f596410db619b408f53c9840f1087d31fd625b4b65e25b1624287253d1790981fe93c27dfa78bc70c4c13a7c76ff2f2845d7effd1d1efa4
6
+ metadata.gz: c8735a175bb70b76952164279055c56dfc14cec31bf4063c42793d18657f5deeb8e73542e75c3ae92a06ea2d99a93194c0d9a88c6a621dd4a1c08132db74be10
7
+ data.tar.gz: c7855e40ff01e346bd25e011e1c0497d9a0959917e28dc483a5b7220371fe8dd1a66846050a2d37c89f22cfaf0457f682e26f9d322018ec86077ab832e069925
@@ -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
@@ -1,4 +1,4 @@
1
- Copyright 2017 yasaichi
1
+ Copyright 2017 Yuichi Goto
2
2
 
3
3
  Permission is hereby granted, free of charge, to any person obtaining
4
4
  a copy of this software and associated documentation files (the
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module ActionView
4
4
  module ConsistentFallback
5
- VERSION = "0.1.0".freeze
5
+ VERSION = "0.1.1".freeze
6
6
  end
7
7
  end
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.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
- - yasaichi
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: actionpack
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: appraisal
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
@@ -1,5 +0,0 @@
1
- # frozen_string_literal: true
2
- # desc "Explaining what the task does"
3
- # task :actionview_consistent_fallback do
4
- # # Task goes here
5
- # end