catori 0.2.5 → 0.2.6

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/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.5
1
+ 0.2.6
data/bin/catori CHANGED
File without changes
@@ -1,3 +1,5 @@
1
1
  CHANGELOG
2
+ 0.2.6 : Bug fix - Wrong requires for yaml
3
+ 0.2.5 : First gem on rubyforge
2
4
  0.2.4 : Update support for ruby-mp3info (0.5.1)
3
5
  0.2.3 : Added support to Mysql and installer
data/construir CHANGED
@@ -1,3 +1,3 @@
1
1
  #!/bin/bash
2
2
  gem build catori.gemspec
3
- sudo gem install catori-0.2.5.gem
3
+ sudo gem install catori-0.2.6.gem
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -7,7 +7,7 @@ require 'audioinfo'
7
7
  require 'catori/Catalogador'
8
8
  require 'catori/Db'
9
9
  module Catori
10
- VERSION="0.2.3"
10
+ VERSION="0.2.6"
11
11
  CONFIG_DIR=File.expand_path("~/.config/php.apsique.com")
12
12
  CONFIG_FILE=CONFIG_DIR+"/catori.conf"
13
13
  LIB_DIR = File.expand_path(File.dirname(__FILE__)+"/../lib")
File without changes
@@ -19,6 +19,7 @@ module Catori
19
19
  def self.data_conexion
20
20
  if(File.exists?(Catori::CONFIG_FILE))
21
21
  data={}
22
+ require 'yaml'
22
23
  File.open( Catori::CONFIG_FILE ) { |yf| data=YAML::load( yf ) }
23
24
  else
24
25
  raise "Install the application using catori --install"
@@ -1,5 +1,4 @@
1
1
  require 'libglade2'
2
- require 'yaml'
3
2
 
4
3
  module Catori # {{{
5
4
  class Gui # {{{
@@ -1,4 +1,5 @@
1
1
  require 'catori'
2
+ require 'yaml'
2
3
  module Catori
3
4
  class Installer
4
5
  def self.install(db,user,pw)
@@ -0,0 +1,43 @@
1
+ Version 2.5 de catori
2
+ Cuenta con GUI preliminar, instalador para Mysql y algunas correcciones de errores
3
+ --Esta línea y las que están debajo serán ignoradas--
4
+
5
+ _M .
6
+ A sql
7
+ A sql/catori_mysql.sql
8
+ A sql/catori_pg.sql
9
+ A ext/audiofile/depend
10
+ M ext/audiofile/test.rb
11
+ M ext/audiofile/mkmf.log
12
+ M ext/rmac/extconf.rb
13
+ M ext/vorbisfile/test.rb
14
+ A tests
15
+ AM tests/saw.ogg
16
+ AM tests/saw.wav
17
+ AM tests/saw.mp3
18
+ AM tests/saw.mpc
19
+ AM tests/saw.flac
20
+ AM tests/saw.ape
21
+ AM tests/test_audioinfo.rb
22
+ M catori.gemspec
23
+ M VERSION
24
+ A changelog.txt
25
+ _M lib
26
+ A lib/audioinfo.rb
27
+ D lib/catori/AudioInfo.rb
28
+ A lib/catori/Installer.rb
29
+ A lib/catori/catori_gui.glade
30
+ M lib/catori/Catalogador.rb
31
+ A lib/catori/Gui.rb
32
+ M lib/catori/Db.rb
33
+ M lib/catori/Query.rb
34
+ A lib/pixmaps
35
+ AM lib/pixmaps/album.png
36
+ AM lib/pixmaps/artist.png
37
+ AM lib/pixmaps/song.png
38
+ AM lib/pixmaps/cdr.png
39
+ M lib/catori.rb
40
+ AM construir
41
+ M bin/catori
42
+ M install.rb
43
+ A instalar.txt
Binary file
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env ruby
2
2
  require 'rubygems'
3
- require_gem 'catori'
3
+ require 'catori'
4
4
  require 'audioinfo'
5
5
  require 'test/unit'
6
6
 
metadata CHANGED
@@ -1,33 +1,39 @@
1
1
  --- !ruby/object:Gem::Specification
2
- rubygems_version: 0.9.4
3
- specification_version: 1
4
2
  name: catori
5
3
  version: !ruby/object:Gem::Version
6
- version: 0.2.5
7
- date: 2008-06-18 00:00:00 -04:00
8
- summary: Command-line cataloger of CDs
9
- require_paths:
10
- - lib
11
- email:
12
- homepage: http://php.apsique.com/project/catori
13
- rubyforge_project:
14
- description: Nice command line cataloger of Music CD. Supports ape,flac,ogg,mp3, and all audiofile format's (wav, aiff...)
15
- autorequire:
16
- default_executable:
17
- bindir: bin
18
- has_rdoc: false
19
- required_ruby_version: !ruby/object:Gem::Version::Requirement
20
- requirements:
21
- - - ">="
22
- - !ruby/object:Gem::Version
23
- version: 1.8.0
24
- version:
4
+ version: 0.2.6
25
5
  platform: ruby
26
- signing_key:
27
- cert_chain:
28
- post_install_message:
29
6
  authors:
30
7
  - Claudio Bustos
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2008-07-06 00:00:00 -04:00
13
+ default_executable:
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: ruby-mp3info
17
+ version_requirement:
18
+ version_requirements: !ruby/object:Gem::Requirement
19
+ requirements:
20
+ - - ">="
21
+ - !ruby/object:Gem::Version
22
+ version: "0.5"
23
+ version:
24
+ description: Nice command line cataloger of Music CD. Supports ape,flac,ogg,mp3, and all audiofile format's (wav, aiff...)
25
+ email: clbustos@gmail.com
26
+ executables:
27
+ - catori
28
+ extensions:
29
+ - ext/mpc/extconf.rb
30
+ - ext/audiofile/extconf.rb
31
+ - ext/rmac/extconf.rb
32
+ - ext/vorbisfile/extconf.rb
33
+ - ext/flac/extconf.rb
34
+ - ext/mahoro-0.1/extconf.rb
35
+ extra_rdoc_files: []
36
+
31
37
  files:
32
38
  - ./ext
33
39
  - ./ext/mpc
@@ -113,6 +119,7 @@ files:
113
119
  - ./instalar.txt
114
120
  - ./doc
115
121
  - ./changelog.txt
122
+ - ./svn-commit.tmp
116
123
  - lib/taglib.rb
117
124
  - lib/catori.rb
118
125
  - lib/catori
@@ -183,21 +190,25 @@ files:
183
190
  - ext/mahoro-0.1/INSTALL
184
191
  - ext/mahoro-0.1/extconf.rb
185
192
  - bin/catori
186
- test_files:
187
- - tests/test_audioinfo.rb
193
+ has_rdoc: false
194
+ homepage: http://php.apsique.com/project/catori
195
+ post_install_message:
188
196
  rdoc_options: []
189
197
 
190
- extra_rdoc_files: []
191
-
192
- executables:
193
- - catori
194
- extensions:
195
- - ext/mpc/extconf.rb
196
- - ext/audiofile/extconf.rb
197
- - ext/rmac/extconf.rb
198
- - ext/vorbisfile/extconf.rb
199
- - ext/flac/extconf.rb
200
- - ext/mahoro-0.1/extconf.rb
198
+ require_paths:
199
+ - lib
200
+ required_ruby_version: !ruby/object:Gem::Requirement
201
+ requirements:
202
+ - - ">="
203
+ - !ruby/object:Gem::Version
204
+ version: 1.8.0
205
+ version:
206
+ required_rubygems_version: !ruby/object:Gem::Requirement
207
+ requirements:
208
+ - - ">="
209
+ - !ruby/object:Gem::Version
210
+ version: "0"
211
+ version:
201
212
  requirements:
202
213
  - libFLAC
203
214
  - libogg
@@ -205,13 +216,10 @@ requirements:
205
216
  - mpcdec
206
217
  - audiofile
207
218
  - mac
208
- dependencies:
209
- - !ruby/object:Gem::Dependency
210
- name: ruby-mp3info
211
- version_requirement:
212
- version_requirements: !ruby/object:Gem::Version::Requirement
213
- requirements:
214
- - - ">="
215
- - !ruby/object:Gem::Version
216
- version: "0.5"
217
- version:
219
+ rubyforge_project: catori
220
+ rubygems_version: 1.1.1
221
+ signing_key:
222
+ specification_version: 2
223
+ summary: Command-line cataloger of CDs
224
+ test_files:
225
+ - tests/test_audioinfo.rb