jt-rails-meta 1.0.2 → 1.0.3

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: 4750041ac97d4118c0979a00666a7deeeb7b15b6
4
- data.tar.gz: 2fecc85bd738dcd441ac89d8f615dc9a3bda9982
3
+ metadata.gz: 0bd7c131ab8cf98dd65bbaced42b1e6fb9bec948
4
+ data.tar.gz: 3aa8360dcea624f048ef1ca2a3f967a261cbf966
5
5
  SHA512:
6
- metadata.gz: 07bf86b862058e3015f46bfdbb501aa43de181ed1aeecb870cc9c1e67f9c44703a628007b6c478592845f78c55724a32c4f3b1f15750c0061c92073f8537fce3
7
- data.tar.gz: 01bd43b595114461ce607d29aa07b5a894ffadfed02ac995d3ef9d19d416502a8ec499fa766f48a380a5db256fb84e636dcdc2e4fd874211652e16d03cfa7d30
6
+ metadata.gz: 4a38b46f918533f98c35e18d4573b922b9ee22935380928e62e4c63fa91652a16b47bebad3cb0a20650aa2708657342ca494fb76de4de205f62079e06d15cacd
7
+ data.tar.gz: f2273d08be4c0489b15b7b9a3948576a58ca855b5596c2500d88ceaa23df9dc83fd2454f9dc83ef4a4a92d479472fb876c393658147fc32e8001d69dff279276
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # JTRailsMeta
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/jt-rails-meta.svg)](http://badge.fury.io/rb/jt-rails-meta)
4
+
3
5
  JTRailsMeta help you to manage HTML meta tags like title, description, keywords used in Search Engine Optimization (SEO).
4
6
 
5
7
  ## Installation
@@ -10,9 +12,9 @@ Include the gem in your Gemfile:
10
12
 
11
13
  gem 'jt-rails-meta', '~> 1.0'
12
14
 
13
- Create a `meta.yml` file for the translation:
15
+ Create a `meta.yml` file for the translations:
14
16
 
15
- rails g rails_meta:install
17
+ rails g jt:meta
16
18
 
17
19
  ## Usage
18
20
 
@@ -102,4 +104,4 @@ There is some methods already created using `add_meta_link` method:
102
104
 
103
105
  ## License
104
106
 
105
- JTRailsMeta is released under the MIT license. See the LICENSE file for more info.
107
+ JTRailsMeta is released under the MIT license. See the LICENSE file for more info.
@@ -3,7 +3,7 @@ Gem::Specification.new do |s|
3
3
  s.summary = "Manage HTML meta tags for SEO in Ruby On Rails"
4
4
  s.description = "JTRailsMeta help you to manage HTML meta tags like title, description, keywords used in Search Engine Optimization (SEO)."
5
5
  s.homepage = 'https://github.com/jonathantribouharet/jt-rails-meta'
6
- s.version = '1.0.2'
6
+ s.version = '1.0.3'
7
7
  s.files = `git ls-files`.split("\n")
8
8
  s.require_paths = ['lib']
9
9
  s.authors = ['Jonathan TRIBOUHARET']
@@ -1,3 +1,3 @@
1
1
  Create a default locale file to your Rails App.
2
2
 
3
- rails g rails_meta:install
3
+ rails g jt:meta
@@ -1,11 +1,9 @@
1
- module RailsMeta
2
-
3
- class InstallGenerator < Rails::Generators::Base
1
+ module Jt
2
+ class MetaGenerator < Rails::Generators::Base
4
3
  source_root File.expand_path("../templates", __FILE__)
5
4
 
6
5
  def create_initializer_file
7
6
  copy_file "meta.yml", "config/locales/meta.yml"
8
7
  end
9
8
  end
10
-
11
9
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jt-rails-meta
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jonathan TRIBOUHARET
@@ -22,9 +22,9 @@ files:
22
22
  - LICENSE
23
23
  - README.md
24
24
  - jt-rails-meta.gemspec
25
- - lib/generators/rails_meta/USAGE
26
- - lib/generators/rails_meta/install_generator.rb
27
- - lib/generators/rails_meta/templates/meta.yml
25
+ - lib/generators/jt/meta/USAGE
26
+ - lib/generators/jt/meta/meta_generator.rb
27
+ - lib/generators/jt/meta/templates/meta.yml
28
28
  - lib/jt-rails-meta.rb
29
29
  homepage: https://github.com/jonathantribouharet/jt-rails-meta
30
30
  licenses: