meta-tags 2.11.0 → 2.11.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
  SHA256:
3
- metadata.gz: 827318e8c08dab5cef3d26fb5b3be72c2c181c503d7d3c784c0175b6d0a4d8dd
4
- data.tar.gz: 57aba518f8fae0222b7a7f88610de04504f9b8c09e617106b7f83856f33bca36
3
+ metadata.gz: a3f02cd65ae6c44a66cb24946f5198d04769eb24125ec48a0fcbb10af8cd7eac
4
+ data.tar.gz: 621a8fc87dd414609a35787c41c4520fb3ef5f622fe80435885d832641e27147
5
5
  SHA512:
6
- metadata.gz: fd1ce5878ae54cf7b99c2815623a896fe34a03aba1c72f8914a7a617a508baee705cdeb64b8c3d325c5408029681db1c0015b17baf96c081da18161a93658b57
7
- data.tar.gz: eb609dcf0374e880ff75eb664467f04f80367d605ef7bd84fc4446b3df579bbf6fd5ed5925485b5f39ce400e8328a6ccebf056a047a5bc7f11614694e0dfd9c5
6
+ metadata.gz: 2247883ab51dbeaf6878fc111ef7bdbe5a05aed2072621fc8ab9ef8d8ac4628c80300f7d6c6897e5785c68a8d75dcda2b1e0c7ef90a76fc33435b09f598da5f7
7
+ data.tar.gz: 0165a44b70582be3beee1addbd085e4fe21fc4b35467e74f311d1ef33a5e73856e7d9120ed023031ebb1d2782370ae8ae3f87a3939f4ed8055314d03ffb4ff45
Binary file
data.tar.gz.sig CHANGED
Binary file
@@ -1,8 +1,13 @@
1
+ ## 2.11.1 (January 19, 2019) [☰](https://github.com/kpumuk/meta-tags/compare/v2.11.0...v2.11.1)
2
+
3
+ Features:
4
+ - Rails 6 is officially supported.
5
+
1
6
  ## 2.11.0 (November 16, 2018) [☰](https://github.com/kpumuk/meta-tags/compare/v2.10.0...v2.11.0)
2
7
 
3
8
  Features:
4
9
  - Added a configuration option `minify_output` to remove new line characters between meta tags ([182](https://github.com/kpumuk/meta-tags/pull/182))
5
- Title, description, and keywords can be an object responding to `#to_str` ([183](https://github.com/kpumuk/meta-tags/pull/183))
10
+ - Title, description, and keywords can be an object responding to `#to_str` ([183](https://github.com/kpumuk/meta-tags/pull/183))
6
11
 
7
12
  Bugfixes:
8
13
  - Truncate title before escaping HTML characters ([180](https://github.com/kpumuk/meta-tags/pull/180))
data/Gemfile CHANGED
@@ -14,6 +14,8 @@ group :test do
14
14
  # Lock rubocop to a specific version we use on CI. If you update this,
15
15
  # don't forget to switch rubocop channel in the .codeclimate.yml
16
16
  gem 'rubocop', '0.60.0'
17
+ # Apply RSpec rubocop cops
18
+ gem 'rubocop-rspec', require: false
17
19
  # We use this gem on CI to calculate code coverage.
18
20
  gem 'simplecov'
19
21
  # Format RSpec output for CircleCI
data/README.md CHANGED
@@ -12,7 +12,7 @@ Search Engine Optimization (SEO) plugin for Ruby on Rails applications.
12
12
  ## Ruby on Rails
13
13
 
14
14
  MetaTags master branch fully supports Ruby on Rails 4.2+, and is tested against all
15
- major Rails releases up to 5.1.
15
+ major Rails releases up to 6.0.beta2.
16
16
 
17
17
  Ruby versions older than 2.2.0 are no longer officially supported.
18
18
 
@@ -2,5 +2,5 @@
2
2
 
3
3
  module MetaTags
4
4
  # Gem version.
5
- VERSION = '2.11.0'
5
+ VERSION = '2.11.1'
6
6
  end
@@ -21,7 +21,7 @@ Gem::Specification.new do |spec|
21
21
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
22
22
  spec.require_paths = ["lib"]
23
23
 
24
- spec.add_dependency "actionpack", ">= 3.2.0", "< 5.3"
24
+ spec.add_dependency "actionpack", ">= 3.2.0", "< 6.1"
25
25
 
26
26
  spec.add_development_dependency "rake", "~> 12.0"
27
27
  spec.add_development_dependency "rspec", "~> 3.8.0"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meta-tags
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.11.0
4
+ version: 2.11.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmytro Shteflyuk
@@ -29,7 +29,7 @@ cert_chain:
29
29
  j0ZkOZOMk6hzny9+AnYZ7eiUqp/XX7Hn+hqtl/AebKhbFapnTu0n7KcfM0oDaLUr
30
30
  Fc+FAHErSClMb7YN
31
31
  -----END CERTIFICATE-----
32
- date: 2018-11-16 00:00:00.000000000 Z
32
+ date: 2019-01-19 00:00:00.000000000 Z
33
33
  dependencies:
34
34
  - !ruby/object:Gem::Dependency
35
35
  name: actionpack
@@ -40,7 +40,7 @@ dependencies:
40
40
  version: 3.2.0
41
41
  - - "<"
42
42
  - !ruby/object:Gem::Version
43
- version: '5.3'
43
+ version: '6.1'
44
44
  type: :runtime
45
45
  prerelease: false
46
46
  version_requirements: !ruby/object:Gem::Requirement
@@ -50,7 +50,7 @@ dependencies:
50
50
  version: 3.2.0
51
51
  - - "<"
52
52
  - !ruby/object:Gem::Version
53
- version: '5.3'
53
+ version: '6.1'
54
54
  - !ruby/object:Gem::Dependency
55
55
  name: rake
56
56
  requirement: !ruby/object:Gem::Requirement
metadata.gz.sig CHANGED
Binary file