meta-tags 2.4.0 → 2.4.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: e10c1cef57da31f1f17e97502e1ae12ae71f0586
4
- data.tar.gz: dd9d0677e976064a46daca9af7c0e65b98f1be79
3
+ metadata.gz: 4776ebc8473b22037f56e61b30916ce423da43c8
4
+ data.tar.gz: 66150dc702387b94c6c9ce182342606c5302d6e4
5
5
  SHA512:
6
- metadata.gz: 521cf206e6f20cea380044475fd91eb65f42cd886a9ced13492f41cdb8479b619b93d765c3e515a54e7a5e20f8d8cd1c60031aeba6b7ad673a0568b3b23cab12
7
- data.tar.gz: ba48215860943a1b5932a6713b1c020f14c99125f35ecdfe45ac0bc6b4463e223715af2632f827b180a1faa77f8c16f7d7dc71e8c81e4ef2cdfed632de8ce324
6
+ metadata.gz: 9ab00e517d5412927e741819b214c681cd7a26fe0fdd1dfaa88c862f42e9d87d6e72ef03de1f7dd86f59c0b0e581218d4c1921ebb9443e42fa1a1893a9919be1
7
+ data.tar.gz: 382d7291acde243cad991b4ec341de9697983d730608440616081efc35a57c6dfb55bbfcb77dad057f53aa86d07a8a436b323558f0231a714cda7b0850335e6d
checksums.yaml.gz.sig CHANGED
@@ -1 +1,4 @@
1
- �\l��AhC����u���@S)m�=����G��*gPq�D��uI�#2T1m��:��Z�Dž�wR�zө�{ԯ��{@���L@��po��5�Ţ����r������"~�'�f&~\��*��F�P�ۂ�Y�����W'���U;���I��afV�1b06��pYp�D��:�z�$!m�3/7BY�y����¯.�FT&z�<0L�tԮ����:3nI� ҄N�TGIí*��k<}>�4񘴇�ȋC�&
1
+ � ���@1��`!m9#B삺�72M'���ń�Gy]*蛁�� A���Yk�;4O��
2
+ B�RJ�8sX�O�Kf��j�w}�N*�d
3
+ Q�#��i�<��,�
4
+ _��4B��!ۻ��t�$,a-�ǹ���?|���R2�أ�A�"�����V������7�;�9o�%'V��dy���h#D,q4�k
data/.travis.yml CHANGED
@@ -6,6 +6,7 @@ rvm:
6
6
  - 2.1.10
7
7
  - 2.2.5
8
8
  - 2.3.1
9
+ - 2.4.0
9
10
 
10
11
  env:
11
12
  - "RAILS_VERSION=3.2.0"
@@ -13,6 +14,7 @@ env:
13
14
  - "RAILS_VERSION=4.1.0"
14
15
  - "RAILS_VERSION=4.2.0"
15
16
  - "RAILS_VERSION=5.0.0"
17
+ - "RAILS_VERSION=5.1.0"
16
18
 
17
19
  matrix:
18
20
  exclude:
@@ -20,6 +22,10 @@ matrix:
20
22
  env: "RAILS_VERSION=5.0.0"
21
23
  - rvm: 2.1.10
22
24
  env: "RAILS_VERSION=5.0.0"
25
+ - rvm: 2.0.0
26
+ env: "RAILS_VERSION=5.1.0"
27
+ - rvm: 2.1.10
28
+ env: "RAILS_VERSION=5.1.0"
23
29
 
24
30
  notifications:
25
31
  recipients:
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 2.4.1 (May 15, 2017)
2
+
3
+ Features:
4
+ - Rails 5.1 support added
5
+
1
6
  ## 2.4.0 (December 8, 2016)
2
7
 
3
8
  Features:
data/Gemfile CHANGED
@@ -7,6 +7,10 @@ if ENV['RAILS_VERSION']
7
7
  gem 'actionpack', "~> #{ENV['RAILS_VERSION']}"
8
8
  end
9
9
 
10
+ if RUBY_VERSION =~ /^2\.0\./
11
+ gem 'nokogiri', '~> 1.6.8.1'
12
+ end
13
+
10
14
  group :test do
11
15
  gem 'simplecov'
12
16
  gem 'codeclimate-test-reporter', '~> 1.0.0'
data/README.md CHANGED
@@ -10,7 +10,7 @@ Search Engine Optimization (SEO) plugin for Ruby on Rails applications.
10
10
  ## Ruby on Rails
11
11
 
12
12
  MetaTags master branch now fully supports Rails 3.2+, and is tested against all
13
- major Rails releases up to 5.0.1.
13
+ major Rails releases up to 5.1.
14
14
 
15
15
  Ruby versions older than 2.0.0 are no longer officially supported.
16
16
 
@@ -45,8 +45,8 @@ end
45
45
  ### Titles
46
46
 
47
47
  Page titles are very important for Search engines. The titles in the
48
- browser are displayed in the title bar. The search engines would look at
49
- the this title bar to determine what the page is all about.
48
+ browser are displayed in the title bar. The search engines look at
49
+ the title bar to determine what the page is all about.
50
50
 
51
51
  ```ruby
52
52
  set_meta_tags title: 'Member Login'
@@ -62,7 +62,7 @@ Recommended title tag length: up to <b>70 characters</b>, <b>10 words</b>.
62
62
  ### Description
63
63
 
64
64
  Description tags are called meta tags as they are not displayed by the
65
- browsers as that of titles. But these descriptions may be displayed by
65
+ browsers unlike the titles. However, these descriptions may be displayed by
66
66
  some search engines. They are used to describe the contents of a page in
67
67
  2 or 3 sentences.
68
68
 
@@ -1,4 +1,4 @@
1
1
  module MetaTags
2
2
  # Gem version.
3
- VERSION = '2.4.0'
3
+ VERSION = '2.4.1'
4
4
  end
data/meta-tags.gemspec CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
20
20
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
21
21
  spec.require_paths = ["lib"]
22
22
 
23
- spec.add_dependency "actionpack", ">= 3.2.0", "<= 5.1.0"
23
+ spec.add_dependency "actionpack", ">= 3.2.0", "< 5.2"
24
24
 
25
25
  spec.add_development_dependency "rake", "~> 10.0"
26
26
  spec.add_development_dependency "rspec", "~> 3.5.0"
data.tar.gz.sig CHANGED
Binary file
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.4.0
4
+ version: 2.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dmytro Shteflyuk
@@ -30,7 +30,7 @@ cert_chain:
30
30
  He5T3dBG5WWdIclQcE+JgohBpQ78TcVs1pFNjFmW9pC/P7Rm2GlYqOPHBQG1/Qx9
31
31
  ySbbrGHRLVz8DCxQbhKw+mdT5bg=
32
32
  -----END CERTIFICATE-----
33
- date: 2016-12-08 00:00:00.000000000 Z
33
+ date: 2017-05-15 00:00:00.000000000 Z
34
34
  dependencies:
35
35
  - !ruby/object:Gem::Dependency
36
36
  name: actionpack
@@ -39,9 +39,9 @@ dependencies:
39
39
  - - ">="
40
40
  - !ruby/object:Gem::Version
41
41
  version: 3.2.0
42
- - - "<="
42
+ - - "<"
43
43
  - !ruby/object:Gem::Version
44
- version: 5.1.0
44
+ version: '5.2'
45
45
  type: :runtime
46
46
  prerelease: false
47
47
  version_requirements: !ruby/object:Gem::Requirement
@@ -49,9 +49,9 @@ dependencies:
49
49
  - - ">="
50
50
  - !ruby/object:Gem::Version
51
51
  version: 3.2.0
52
- - - "<="
52
+ - - "<"
53
53
  - !ruby/object:Gem::Version
54
- version: 5.1.0
54
+ version: '5.2'
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: rake
57
57
  requirement: !ruby/object:Gem::Requirement
metadata.gz.sig CHANGED
Binary file