sitemap2png 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- NmJkMzIwMTM4YTE3MWUzYzEzZjVhZjczZjE1NjA1M2U3MjYzOWU3OQ==
4
+ MWY2MjJmMDE1M2E3MzRmZWE1MGMwNmRlNzU0ZTQ4Y2IwNDRhNDdhNw==
5
5
  data.tar.gz: !binary |-
6
- YmZiNjhlZTAxNGU4NTMzYTY5NmEzOTdkZGMxYmNlZGJmMzA5ZjRkMg==
6
+ ZmZkZTYzYzFkYWVlNjVjNjg3NDYzMDVhZDkwZmRiMjRkNGFiYTk1Yg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- NzI0ZTBhZjIzY2ZiZjgyOGYxMTZkNGU5OTY1ODRmNTllOTcxNWE2ZTI4ZjRi
10
- NDI3ZTU5N2U4YWFkMWZmZmVkMWIzOTVjMTAzOWZmYWIyOTRkOTBhMjU0ODMw
11
- ZmU4MWIwNjY3MjI2NTBjYjY3NWE3MDczMGEyNDI0NWJhODk3NGM=
9
+ OTc3NjcxZjFkOTRlODFhMTExZDc5NzE1NjVlNThhNjFkMjhlYzUxMjkyMGUy
10
+ Y2JkODIxZjliYzgxOTMxNzZjNGFhYzE1ZWEyZDRkY2RlMWFlZDRjZDQzOTYy
11
+ MWI0NTlkYzliODU3NWFkOGFjODhjMGNmNjgyMmVmYWM1NjEwZjQ=
12
12
  data.tar.gz: !binary |-
13
- NDcyYjk1MGUwODcxMTRhZDljZjIyNzc0ODZhYzNjNmI4ODMyODZlY2I4OGIz
14
- Y2I0ZjM4ZWE2YjlmZDI1MDY4MjUyMjFiMGQyNTdmMmU2NDk1MjE5Y2Q5Mjk1
15
- YjE1ZGI5YjExYTQ0NTdlZDQ1ZDBhY2NhMGY4OWVmODdiMDBhNjA=
13
+ ZTYzMWI3OGFjN2ZmZDFmMGM5NDE2NDU3MDViNWE5ZTAzMzhjNGViY2IwZjc4
14
+ OGQ1NjJjYWJkNGY4MmU5ODE2NGZjMzgwZjFjMjU1ODJmYWVhNzczOTI0OWJj
15
+ M2U5OTQ2NzNiYzIwZjlhYzZjZDU1MTliMDlhNmMzMjE2MmZlMTk=
data/README.md CHANGED
@@ -19,7 +19,7 @@ The following tasks are available trough the command line.
19
19
  ```
20
20
  Commands:
21
21
  sitemap2png help [COMMAND] # Describe available commands or one specific command
22
- sitemap2png load SITEMAP PATH WITH # Load sitemap.xml & save screenshots
22
+ sitemap2png load SITEMAP PATH # Load sitemap.xml & save screenshots
23
23
  ```
24
24
 
25
25
  ## Commands
@@ -28,10 +28,10 @@ Commands:
28
28
 
29
29
  ```
30
30
  Usage:
31
- sitemap2png load SITEMAP PATH WITH
31
+ sitemap2png load SITEMAP PATH
32
32
 
33
33
  Options:
34
- -w, [--with=N]
34
+ -w, [--width=N]
35
35
  # Default: 1024
36
36
  -d, [--delay=N]
37
37
  # Default: 0
@@ -55,6 +55,8 @@ rake release # Create tag v0.1.1 and build and push sitemap2png-0.1.0.gem to Ru
55
55
  ```
56
56
 
57
57
  ## Contributing
58
+ [![I Love Open Source](http://www.iloveopensource.io/images/logo-lightbg.png)](http://www.iloveopensource.io/projects/52ee312487659fce66000052)
59
+
58
60
  In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality.
59
61
 
60
62
  1. Fork it
@@ -65,3 +67,5 @@ In lieu of a formal styleguide, take care to maintain the existing coding style.
65
67
 
66
68
  ## License
67
69
  Copyright (c) 2013 We Are Interactive under the MIT license.
70
+
71
+ [![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/weareinteractive/gem-sitemap2png/trend.png)](https://bitdeli.com/free "Bitdeli Badge")
@@ -6,8 +6,8 @@ require 'fileutils'
6
6
  module Sitemap2png
7
7
  class Cli < Thor
8
8
 
9
- desc "load SITEMAP PATH WITH", "Load sitemap.xml & save screenshots"
10
- method_option :with, :aliases => "-w", :type => :numeric, :default => 1024
9
+ desc "load SITEMAP PATH", "Load sitemap.xml & save screenshots"
10
+ method_option :width, :aliases => "-w", :type => :numeric, :default => 1024
11
11
  method_option :delay, :aliases => "-d", :type => :numeric, :default => 0
12
12
  def load(sitemap, path)
13
13
  @basedir = File.dirname(File.dirname(File.dirname(__FILE__)))
@@ -1,3 +1,3 @@
1
1
  module Sitemap2png
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sitemap2png
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - franklin
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-01-19 00:00:00.000000000 Z
11
+ date: 2014-02-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor
@@ -106,7 +106,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
106
106
  version: '0'
107
107
  requirements: []
108
108
  rubyforge_project:
109
- rubygems_version: 2.1.11
109
+ rubygems_version: 2.2.1
110
110
  signing_key:
111
111
  specification_version: 4
112
112
  summary: Takes screenshots of all pages defined in a sitemap.xml.