xmms2_utils 0.1.0 → 0.1.1
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.
- data/.gitignore +1 -0
- data/Makefile +6 -0
- data/lib/xmms2_utils/version.rb +1 -1
- data/xmms2_utils.gemspec +2 -2
- metadata +8 -4
data/.gitignore
CHANGED
data/Makefile
ADDED
data/lib/xmms2_utils/version.rb
CHANGED
data/xmms2_utils.gemspec
CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["Mark Watts"]
|
10
10
|
spec.email = ["wattsmark2015@gmail.com"]
|
11
11
|
spec.summary = %q{A set of utilites for working with the ruby bindings for the XMMS2 client library.}
|
12
|
-
|
13
|
-
spec.homepage = ""
|
12
|
+
spec.description = File.new("./README.md").read()
|
13
|
+
spec.homepage = "http://github.com/mwatts15/xmm2_utils"
|
14
14
|
spec.license = "MPL-2.0"
|
15
15
|
|
16
16
|
spec.files = `git ls-files -z`.split("\x0")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: xmms2_utils
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2016-03-27 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -43,7 +43,10 @@ dependencies:
|
|
43
43
|
- - ~>
|
44
44
|
- !ruby/object:Gem::Version
|
45
45
|
version: '10.0'
|
46
|
-
description:
|
46
|
+
description: ! "# Xmms2Utils\n\nThis is a set of utilites for working with the ruby
|
47
|
+
bindings for the XMMS2 client library.\n\n## Installation\n\nAdd this line to your
|
48
|
+
application's Gemfile:\n\n```ruby\ngem 'xmms2_utils'\n```\n\nAnd then execute:\n\n
|
49
|
+
\ $ bundle\n\nOr install it yourself as:\n\n $ gem install xmms2_utils\n"
|
47
50
|
email:
|
48
51
|
- wattsmark2015@gmail.com
|
49
52
|
executables: []
|
@@ -53,12 +56,13 @@ files:
|
|
53
56
|
- .gitignore
|
54
57
|
- Gemfile
|
55
58
|
- LICENSE.txt
|
59
|
+
- Makefile
|
56
60
|
- README.md
|
57
61
|
- Rakefile
|
58
62
|
- lib/xmms2_utils.rb
|
59
63
|
- lib/xmms2_utils/version.rb
|
60
64
|
- xmms2_utils.gemspec
|
61
|
-
homepage:
|
65
|
+
homepage: http://github.com/mwatts15/xmm2_utils
|
62
66
|
licenses:
|
63
67
|
- MPL-2.0
|
64
68
|
post_install_message:
|