autogg 0.2.0 → 0.2.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/autogg-0.2.0.gem +0 -0
- data/autogg.gemspec +2 -1
- metadata +13 -3
data/autogg-0.2.0.gem
ADDED
|
Binary file
|
data/autogg.gemspec
CHANGED
|
@@ -3,7 +3,8 @@ spec = Gem::Specification.new do |s|
|
|
|
3
3
|
s.summary = 'converts a folder of flacs to ogg, preserving directory structure'
|
|
4
4
|
s.description = File.read(File.join(File.dirname(__FILE__), 'README'))
|
|
5
5
|
s.requirements << 'oggenc must be installed on the base system'
|
|
6
|
-
s.
|
|
6
|
+
s.add_dependency 'rb-inotify', '>= 0.8.4'
|
|
7
|
+
s.version = "0.2.1"
|
|
7
8
|
s.author = 'Evan Simmons'
|
|
8
9
|
s.email = 'esims89@gmail.com'
|
|
9
10
|
s.homepage = 'https://github.com/estk/autogg'
|
metadata
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
name: autogg
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 0.2.
|
|
5
|
+
version: 0.2.1
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
8
8
|
- Evan Simmons
|
|
@@ -11,8 +11,18 @@ bindir: bin
|
|
|
11
11
|
cert_chain: []
|
|
12
12
|
|
|
13
13
|
date: 2011-05-26 00:00:00 Z
|
|
14
|
-
dependencies:
|
|
15
|
-
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: rb-inotify
|
|
17
|
+
prerelease: false
|
|
18
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
|
19
|
+
none: false
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: 0.8.4
|
|
24
|
+
type: :runtime
|
|
25
|
+
version_requirements: *id001
|
|
16
26
|
description: |
|
|
17
27
|
Encodes all flac files in a given directory to ogg in another given directory while preserving the directory structure. Also if rb-inotify is installed and -w flag is passed, it will watch for changes on the filesystem and rescan the directory, encoding the new files.
|
|
18
28
|
|