listlace 0.0.4 → 0.0.5
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/Gemfile.lock +1 -1
- data/bin/listlace +5 -1
- data/lib/listlace/commands/playback.rb +1 -0
- data/lib/listlace/commands/queue.rb +1 -0
- data/lib/listlace.rb +5 -0
- data/listlace.gemspec +2 -2
- metadata +2 -2
data/Gemfile.lock
CHANGED
data/bin/listlace
CHANGED
|
@@ -13,4 +13,8 @@ Listlace::Database.generate_schema unless Listlace::Database.exists?
|
|
|
13
13
|
|
|
14
14
|
puts "Hello, you have #{Listlace::Track.count} songs."
|
|
15
15
|
|
|
16
|
-
Listlace.pry
|
|
16
|
+
Listlace.pry(
|
|
17
|
+
quiet: true,
|
|
18
|
+
prompt: Listlace::PROMPT,
|
|
19
|
+
print: Listlace::PRINT
|
|
20
|
+
)
|
data/lib/listlace.rb
CHANGED
data/listlace.gemspec
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "listlace"
|
|
3
|
-
s.version = "0.0.
|
|
4
|
-
s.date = "2012-08-
|
|
3
|
+
s.version = "0.0.5"
|
|
4
|
+
s.date = "2012-08-26"
|
|
5
5
|
s.summary = "A music player in a REPL."
|
|
6
6
|
s.description = "Listlace is a music player which is interacted with through a Ruby REPL."
|
|
7
7
|
s.author = "Jeremy Ruten"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: listlace
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.5
|
|
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: 2012-08-
|
|
12
|
+
date: 2012-08-26 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: pry
|