bingwallpaper 0.5.0 → 0.5.2
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 +8 -8
- data/bingwallpaper.gemspec +3 -2
- data/lib/bingwallpaper/version.rb +1 -1
- metadata +18 -3
checksums.yaml
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
---
|
|
2
2
|
!binary "U0hBMQ==":
|
|
3
3
|
metadata.gz: !binary |-
|
|
4
|
-
|
|
4
|
+
NjEwMTU3ZWY1ZjZlZTkyNjQxYzFhNzQ5N2U5ZDc0ZTdmMzBkYWNhYg==
|
|
5
5
|
data.tar.gz: !binary |-
|
|
6
|
-
|
|
6
|
+
ZTBjYjVlNmY3ZDY1MDY5ZDJmNWVkNmRiNTg0NDI4NTZmNmVjM2MzNg==
|
|
7
7
|
SHA512:
|
|
8
8
|
metadata.gz: !binary |-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
MGMxMjhhNzg2NGJkMmQzZjBjNDIwY2E1OGVjMmRkZjEzNTc0N2Q0YzljZGU2
|
|
10
|
+
OTI3YmUyMjgwMjQ2OWE5NmU5NzAwZDY1NTAwMjQ1OTU4ZTViZDFlOGE3MWEw
|
|
11
|
+
YjgxMDgyMDA4MmNmODIyODgyMjE5NWViMTkwZGEzMzYwM2NhNjU=
|
|
12
12
|
data.tar.gz: !binary |-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
MTU1MWI4M2ZlYjIxMWY3YmJhNWM0MmIxMGUwOTM2OGRhZGUyN2M0NzU4Nzg3
|
|
14
|
+
NTFjYTFiZWQ5OGRhYzYwZjBiMjMxZjYwZGZhOTE3M2RhYmIwOTAzNmE1NjYx
|
|
15
|
+
YzU3NTNiNmRkOTVjMTJkNjgxYmM0M2JlNzRhMDEwMzQ0ZjZiOTg=
|
data/bingwallpaper.gemspec
CHANGED
|
@@ -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{
|
|
12
|
-
spec.description = %q{
|
|
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
|
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.
|
|
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:
|
|
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:
|
|
97
|
+
summary: Sets your wallpaper to Bing's "Image of the Day"
|
|
83
98
|
test_files: []
|