inboundio_seo_checklist 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
- # InboundioSeoChecklist
1
+ # SEO Checklist for Rails
2
2
 
3
- TODO: Write a gem description
3
+ SEO Checklist is a simple gem which tells you the list of ruby gems which you can use to make your ror app more search engine friendly. It also suggests some code changes and edits. You can find more exhaustive list here http://www.inboundio.com/blog/seo-for-ruby-on-rails-complete-guide/
4
4
 
5
5
  ## Installation
6
6
 
@@ -18,10 +18,16 @@ Or install it yourself as:
18
18
 
19
19
  ## Usage
20
20
 
21
- TODO: Write usage instructions here
21
+ After installing, run
22
+
23
+ $ inboundioseochecklist
24
+
25
+ and it should display the complete checklist at command line.
22
26
 
23
27
  ## Contributing
24
28
 
29
+ Feel free to play with it, edit and change it though please if possible do keep a link to this gem and/or to http://www.inboundio.com as source.
30
+
25
31
  1. Fork it
26
32
  2. Create your feature branch (`git checkout -b my-new-feature`)
27
33
  3. Commit your changes (`git commit -am 'Add some feature'`)
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'inboundio_seo_checklist'
4
+
5
+ checklist = InboundioSeoChecklist::Checklist.new
6
+ checklist.display
@@ -8,11 +8,12 @@ Gem::Specification.new do |gem|
8
8
  gem.version = InboundioSeoChecklist::VERSION
9
9
  gem.authors = ["Pushkar Gaikwad"]
10
10
  gem.email = ["pushkar.gaikwad@gmail.com"]
11
- gem.description = %q{This Gem was created for inBoundio.com and it shows the list of gems and changes in your rails app, you want to have for your site to be search engine friendly.}
11
+ gem.description = %q{This Gem was created for inBoundio.com and it shows the list of gems and changes needed in your rails app for your site to be search engine friendly.}
12
12
  gem.summary = %q{This Gem was created for inBoundio.com and it shows the list of gems and changes in your rails app you want to have for your rails app/website to get search engine friendly.}
13
13
  gem.homepage = "http://www.inboundio.com"
14
14
  gem.files = `git ls-files`.split($/)
15
- gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
15
+ # gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
16
+ gem.executables = ["inboundioseochecklist"]
16
17
  gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
17
18
  gem.require_paths = ["lib"]
18
19
  end
@@ -2,4 +2,21 @@ require "inboundio_seo_checklist/version"
2
2
 
3
3
  module InboundioSeoChecklist
4
4
  # Your code goes here...
5
+ class Checklist
6
+ def display
7
+ # puts "Welcome to checklist for your Rails App."
8
+ # puts "1. Install SEO Module"
9
+ # puts "2. Install test Module"
10
+ puts <<-'HEREDOC'
11
+ Install following gems
12
+ 1. friendly_id - https://github.com/norman/friendly_id
13
+ 2. meta-tags - https://github.com/kpumuk/meta-tags or metamagic - https://github.com/lassebunk/metamagic
14
+ 3. dynamic_sitemaps - https://github.com/lassebunk/dynamic_sitemaps
15
+ 4. xml-sitemap - http://rubygems.org/gems/xml-sitemap
16
+ 5. gretel - https://github.com/lassebunk/gretel
17
+
18
+ You can check http://www.inboundio.com/blog/seo-for-ruby-on-rails-complete-guide/ for more code edit and tweaks needed.
19
+ HEREDOC
20
+ end
21
+ end
5
22
  end
@@ -1,3 +1,3 @@
1
1
  module InboundioSeoChecklist
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: inboundio_seo_checklist
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -12,11 +12,11 @@ cert_chain: []
12
12
  date: 2013-09-01 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: This Gem was created for inBoundio.com and it shows the list of gems
15
- and changes in your rails app, you want to have for your site to be search engine
16
- friendly.
15
+ and changes needed in your rails app for your site to be search engine friendly.
17
16
  email:
18
17
  - pushkar.gaikwad@gmail.com
19
- executables: []
18
+ executables:
19
+ - inboundioseochecklist
20
20
  extensions: []
21
21
  extra_rdoc_files: []
22
22
  files:
@@ -25,6 +25,7 @@ files:
25
25
  - LICENSE.txt
26
26
  - README.md
27
27
  - Rakefile
28
+ - bin/inboundioseochecklist
28
29
  - inboundio_seo_checklist.gemspec
29
30
  - lib/inboundio_seo_checklist.rb
30
31
  - lib/inboundio_seo_checklist/version.rb