dhun 0.5.1 → 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.
- data/README.md +2 -1
- data/dhun.gemspec +3 -1
- data/lib/dhun.rb +1 -1
- metadata +22 -3
data/README.md
CHANGED
|
@@ -15,7 +15,8 @@ It uses Spotlight to search for audio files on your computer and play them.
|
|
|
15
15
|
|
|
16
16
|
Run the following commands to install Dhun. This will download the latest gem
|
|
17
17
|
from [http://gemcutter.org](http://gemcutter.org), compile the extensions and
|
|
18
|
-
put the binaries in the right place.
|
|
18
|
+
put the binaries in the right place. You will need to have XCode installed for
|
|
19
|
+
the `gem` command to compile the native extensions.
|
|
19
20
|
|
|
20
21
|
$ gem sources -a http://gemcutter.org
|
|
21
22
|
$ gem install dhun
|
data/dhun.gemspec
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'dhun'
|
|
3
|
-
s.version = '0.5.
|
|
3
|
+
s.version = '0.5.2'
|
|
4
4
|
s.summary = "Minimalist music for OS X"
|
|
5
5
|
s.date = '2009-12-08'
|
|
6
6
|
s.email = 'deepak.jois@gmail.com'
|
|
7
7
|
s.homepage = 'http://github.com/deepakjois/dhun'
|
|
8
8
|
s.has_rdoc = false
|
|
9
|
+
s.add_dependency('eventmachine', '>=0.12.10')
|
|
10
|
+
s.add_dependency('json_pure', '>=1.2.0')
|
|
9
11
|
s.authors = ["Deepak Jois"]
|
|
10
12
|
# = MANIFEST =
|
|
11
13
|
s.files = %w[
|
data/lib/dhun.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dhun
|
|
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
|
- Deepak Jois
|
|
@@ -11,8 +11,27 @@ cert_chain: []
|
|
|
11
11
|
|
|
12
12
|
date: 2009-12-08 00:00:00 -08:00
|
|
13
13
|
default_executable:
|
|
14
|
-
dependencies:
|
|
15
|
-
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: eventmachine
|
|
17
|
+
type: :runtime
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 0.12.10
|
|
24
|
+
version:
|
|
25
|
+
- !ruby/object:Gem::Dependency
|
|
26
|
+
name: json_pure
|
|
27
|
+
type: :runtime
|
|
28
|
+
version_requirement:
|
|
29
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 1.2.0
|
|
34
|
+
version:
|
|
16
35
|
description:
|
|
17
36
|
email: deepak.jois@gmail.com
|
|
18
37
|
executables:
|