bingwallpaper 0.5.0 → 0.5.2

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
- ZTI4MWMxNjg1NzM2NWVjNDMzMDFlMzE3YzlkMmM1ZDVmNDI4ZjgwMw==
4
+ NjEwMTU3ZWY1ZjZlZTkyNjQxYzFhNzQ5N2U5ZDc0ZTdmMzBkYWNhYg==
5
5
  data.tar.gz: !binary |-
6
- MzQ1NGFlNzFkMGQyYzY2ZThlNTQwOTU3Y2UwYmM1ZDhmNzE5Yzc2Yw==
6
+ ZTBjYjVlNmY3ZDY1MDY5ZDJmNWVkNmRiNTg0NDI4NTZmNmVjM2MzNg==
7
7
  SHA512:
8
8
  metadata.gz: !binary |-
9
- MTcxYjc3Zjc2NDBmNDQ5OTViNzA0YjA2NWNkM2IxMjZiNDMyNzlmNDlkODVl
10
- ZjlhMzNmZWY1M2MwYTczZGVmMTk0NTc1Y2FhMzViODJkYzQ0MDIzNTAwZDgz
11
- ZjkzMDJkNjUwOWYwNmZlMzdjNGY1NTliYjYzZjhmYzg2YzIyZGY=
9
+ MGMxMjhhNzg2NGJkMmQzZjBjNDIwY2E1OGVjMmRkZjEzNTc0N2Q0YzljZGU2
10
+ OTI3YmUyMjgwMjQ2OWE5NmU5NzAwZDY1NTAwMjQ1OTU4ZTViZDFlOGE3MWEw
11
+ YjgxMDgyMDA4MmNmODIyODgyMjE5NWViMTkwZGEzMzYwM2NhNjU=
12
12
  data.tar.gz: !binary |-
13
- OGMzOTYxMDJlNGVjNDBjOGJhNDgzYmRhZDE3ZjVjZjM0OWI3MGFiZTNiOGRh
14
- MjUzOTRiMzI1ODIwYjI0ZmI5YzlmODY4NmVlZGUwMWQxNmIzYTNkN2Y3NmQx
15
- YWIyODM3NThhMGQxYjllN2RhZjhkM2EzODQxMjIzMzk5ZDk5ZGM=
13
+ MTU1MWI4M2ZlYjIxMWY3YmJhNWM0MmIxMGUwOTM2OGRhZGUyN2M0NzU4Nzg3
14
+ NTFjYTFiZWQ5OGRhYzYwZjBiMjMxZjYwZGZhOTE3M2RhYmIwOTAzNmE1NjYx
15
+ YzU3NTNiNmRkOTVjMTJkNjgxYmM0M2JlNzRhMDEwMzQ0ZjZiOTg=
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
8
8
  spec.version = Bingwallpaper::VERSION
9
9
  spec.authors = ["cmiles74"]
10
10
  spec.email = ["twitch@nervestaple.com"]
11
- spec.summary = %q{Write a short summary. Required.}
12
- spec.description = %q{Write a longer description. Optional.}
11
+ spec.summary = %q{Sets your wallpaper to Bing's "Image of the Day"}
12
+ spec.description = %q{This script downloads the "Image of the Day" and then uses Feh to set your desktop wallpaper. More information available at https://github.com/cmiles74/bingwallpaper/.}
13
13
  spec.homepage = ""
14
14
  spec.license = "MIT"
15
15
 
@@ -18,6 +18,7 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
20
 
21
+ spec.add_dependency "nokogiri", "~> 1.6.2.1"
21
22
  spec.add_development_dependency "bundler", "~> 1.6"
22
23
  spec.add_development_dependency "rake"
23
24
  end
@@ -1,3 +1,3 @@
1
1
  module Bingwallpaper
2
- VERSION = "0.5.0"
2
+ VERSION = "0.5.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bingwallpaper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - cmiles74
@@ -10,6 +10,20 @@ bindir: bin
10
10
  cert_chain: []
11
11
  date: 2014-06-15 00:00:00.000000000 Z
12
12
  dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: nokogiri
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 1.6.2.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 1.6.2.1
13
27
  - !ruby/object:Gem::Dependency
14
28
  name: bundler
15
29
  requirement: !ruby/object:Gem::Requirement
@@ -38,7 +52,8 @@ dependencies:
38
52
  - - ! '>='
39
53
  - !ruby/object:Gem::Version
40
54
  version: '0'
41
- description: Write a longer description. Optional.
55
+ description: This script downloads the "Image of the Day" and then uses Feh to set
56
+ your desktop wallpaper. More information available at https://github.com/cmiles74/bingwallpaper/.
42
57
  email:
43
58
  - twitch@nervestaple.com
44
59
  executables:
@@ -79,5 +94,5 @@ rubyforge_project:
79
94
  rubygems_version: 2.2.2
80
95
  signing_key:
81
96
  specification_version: 4
82
- summary: Write a short summary. Required.
97
+ summary: Sets your wallpaper to Bing's "Image of the Day"
83
98
  test_files: []