hearken 0.0.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 +4 -0
- data/Gemfile +4 -0
- data/Rakefile +1 -0
- data/hearken.gemspec +26 -0
- data/lib/hearken.rb +5 -0
- data/lib/hearken/version.rb +3 -0
- metadata +68 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/Rakefile
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require 'bundler/gem_tasks'
|
data/hearken.gemspec
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
+
require "hearken/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.name = "hearken"
|
|
7
|
+
s.version = Hearken::VERSION
|
|
8
|
+
s.authors = ["Mark Ryall"]
|
|
9
|
+
s.email = ["mark@ryall.name"]
|
|
10
|
+
s.homepage = "http://github.com/markryall/hearken"
|
|
11
|
+
s.summary = "command line music player"
|
|
12
|
+
s.description = <<EOF
|
|
13
|
+
A command line tool to enqueue and play music tracks.
|
|
14
|
+
|
|
15
|
+
This also extracts the tags from a collection of folders.
|
|
16
|
+
|
|
17
|
+
This replaces and combines the functionality from a couple of other gems (audio_library and songbirdsh).
|
|
18
|
+
EOF
|
|
19
|
+
|
|
20
|
+
s.rubyforge_project = "hearken"
|
|
21
|
+
|
|
22
|
+
s.files = `git ls-files`.split("\n")
|
|
23
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
24
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
25
|
+
s.require_paths = ["lib"]
|
|
26
|
+
end
|
data/lib/hearken.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: hearken
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
prerelease:
|
|
5
|
+
version: 0.0.1
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Mark Ryall
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
|
|
13
|
+
date: 2011-07-04 00:00:00 +10:00
|
|
14
|
+
default_executable:
|
|
15
|
+
dependencies: []
|
|
16
|
+
|
|
17
|
+
description: |
|
|
18
|
+
A command line tool to enqueue and play music tracks.
|
|
19
|
+
|
|
20
|
+
This also extracts the tags from a collection of folders.
|
|
21
|
+
|
|
22
|
+
This replaces and combines the functionality from a couple of other gems (audio_library and songbirdsh).
|
|
23
|
+
|
|
24
|
+
email:
|
|
25
|
+
- mark@ryall.name
|
|
26
|
+
executables: []
|
|
27
|
+
|
|
28
|
+
extensions: []
|
|
29
|
+
|
|
30
|
+
extra_rdoc_files: []
|
|
31
|
+
|
|
32
|
+
files:
|
|
33
|
+
- .gitignore
|
|
34
|
+
- Gemfile
|
|
35
|
+
- Rakefile
|
|
36
|
+
- hearken.gemspec
|
|
37
|
+
- lib/hearken.rb
|
|
38
|
+
- lib/hearken/version.rb
|
|
39
|
+
has_rdoc: true
|
|
40
|
+
homepage: http://github.com/markryall/hearken
|
|
41
|
+
licenses: []
|
|
42
|
+
|
|
43
|
+
post_install_message:
|
|
44
|
+
rdoc_options: []
|
|
45
|
+
|
|
46
|
+
require_paths:
|
|
47
|
+
- lib
|
|
48
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
49
|
+
none: false
|
|
50
|
+
requirements:
|
|
51
|
+
- - ">="
|
|
52
|
+
- !ruby/object:Gem::Version
|
|
53
|
+
version: "0"
|
|
54
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
55
|
+
none: false
|
|
56
|
+
requirements:
|
|
57
|
+
- - ">="
|
|
58
|
+
- !ruby/object:Gem::Version
|
|
59
|
+
version: "0"
|
|
60
|
+
requirements: []
|
|
61
|
+
|
|
62
|
+
rubyforge_project: hearken
|
|
63
|
+
rubygems_version: 1.5.2
|
|
64
|
+
signing_key:
|
|
65
|
+
specification_version: 3
|
|
66
|
+
summary: command line music player
|
|
67
|
+
test_files: []
|
|
68
|
+
|