hearken 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,4 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/*
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in hearken.gemspec
4
+ gemspec
@@ -0,0 +1 @@
1
+ require 'bundler/gem_tasks'
@@ -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
@@ -0,0 +1,5 @@
1
+ require "hearken/version"
2
+
3
+ module Hearken
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module Hearken
2
+ VERSION = "0.0.1"
3
+ end
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
+