rutaci 0.1.1 → 0.1.2

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.
Files changed (4) hide show
  1. data/Manifest +7 -7
  2. data/Rakefile +2 -1
  3. data/rutaci.gemspec +35 -107
  4. metadata +14 -14
data/Manifest CHANGED
@@ -1,11 +1,4 @@
1
- LICENSE
2
- Manifest
3
- README
4
- Rakefile
5
- TODO
6
- rutaci.gemspec
7
1
  bin/rutaci
8
- lib/rutaci.rb
9
2
  lib/rutaci/application.rb
10
3
  lib/rutaci/filename_source.rb
11
4
  lib/rutaci/formater.rb
@@ -15,4 +8,11 @@ lib/rutaci/renamer.rb
15
8
  lib/rutaci/setter.rb
16
9
  lib/rutaci/source.rb
17
10
  lib/rutaci/taglib_source.rb
11
+ lib/rutaci.rb
12
+ LICENSE
13
+ Manifest
14
+ Rakefile
15
+ README
16
+ rutaci.gemspec
18
17
  templates/rubyfile.rb
18
+ TODO
data/Rakefile CHANGED
@@ -2,7 +2,7 @@ require 'echoe'
2
2
  # try "rake -T" so see the wunderfull tasks generated by the little code below ;-)
3
3
 
4
4
  Echoe.new("rutaci") do |p|
5
- p.version = "0.1.1"
5
+ p.version = "0.1.2"
6
6
  p.author = "Jonas Bähr"
7
7
  p.email = "jonas@fs.ei.tum.de"
8
8
  p.url = "http://rutaci.rubyforge.org"
@@ -10,4 +10,5 @@ Echoe.new("rutaci") do |p|
10
10
  p.platform = Gem::Platform::RUBY
11
11
  p.runtime_dependencies = ['rtaglib >= 0.1.2']
12
12
  p.ignore_pattern = Dir.glob("{tmp}/**/*")
13
+ p.rubygems_version = nil
13
14
  end
@@ -1,111 +1,39 @@
1
+ # -*- encoding: utf-8 -*-
1
2
 
2
- # Gem::Specification for Rutaci-0.1.1
3
- # Originally generated by Echoe
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{rutaci}
5
+ s.version = "0.1.2"
4
6
 
5
- --- !ruby/object:Gem::Specification
6
- name: rutaci
7
- version: !ruby/object:Gem::Version
8
- version: 0.1.1
9
- platform: ruby
10
- authors:
11
- - "Jonas B\xC3\xA4hr"
12
- autorequire:
13
- bindir: bin
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["Jonas B\303\244hr"]
9
+ s.date = %q{2008-11-07}
10
+ s.default_executable = %q{rutaci}
11
+ s.description = %q{A command line tool for manupulating the metadata of music files}
12
+ s.email = %q{jonas@fs.ei.tum.de}
13
+ s.executables = ["rutaci"]
14
+ s.extra_rdoc_files = ["bin/rutaci", "lib/rutaci/application.rb", "lib/rutaci/filename_source.rb", "lib/rutaci/formater.rb", "lib/rutaci/getter.rb", "lib/rutaci/interaction.rb", "lib/rutaci/renamer.rb", "lib/rutaci/setter.rb", "lib/rutaci/source.rb", "lib/rutaci/taglib_source.rb", "lib/rutaci.rb", "LICENSE", "README", "TODO"]
15
+ s.files = ["bin/rutaci", "lib/rutaci/application.rb", "lib/rutaci/filename_source.rb", "lib/rutaci/formater.rb", "lib/rutaci/getter.rb", "lib/rutaci/interaction.rb", "lib/rutaci/renamer.rb", "lib/rutaci/setter.rb", "lib/rutaci/source.rb", "lib/rutaci/taglib_source.rb", "lib/rutaci.rb", "LICENSE", "Manifest", "Rakefile", "README", "rutaci.gemspec", "templates/rubyfile.rb", "TODO"]
16
+ s.has_rdoc = true
17
+ s.homepage = %q{http://rutaci.rubyforge.org}
18
+ s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Rutaci", "--main", "README"]
19
+ s.require_paths = ["lib"]
20
+ s.rubyforge_project = %q{rutaci}
21
+ s.rubygems_version = %q{1.3.1}
22
+ s.summary = %q{A command line tool for manupulating the metadata of music files}
14
23
 
15
- date: 2008-09-26 00:00:00 +02:00
16
- default_executable:
17
- dependencies:
18
- - !ruby/object:Gem::Dependency
19
- name: rtaglib
20
- type: :runtime
21
- version_requirement:
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ">="
25
- - !ruby/object:Gem::Version
26
- version: "0"
27
- - - "="
28
- - !ruby/object:Gem::Version
29
- version: 0.1.2
30
- version:
31
- - !ruby/object:Gem::Dependency
32
- name: echoe
33
- type: :development
34
- version_requirement:
35
- version_requirements: !ruby/object:Gem::Requirement
36
- requirements:
37
- - - ">="
38
- - !ruby/object:Gem::Version
39
- version: "0"
40
- version:
41
- description: A command line tool for manupulating the metadata of music files
42
- email: jonas@fs.ei.tum.de
43
- executables:
44
- - rutaci
45
- extensions: []
24
+ if s.respond_to? :specification_version then
25
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
26
+ s.specification_version = 2
46
27
 
47
- extra_rdoc_files:
48
- - LICENSE
49
- - README
50
- - TODO
51
- - bin/rutaci
52
- - lib/rutaci.rb
53
- - lib/rutaci/application.rb
54
- - lib/rutaci/filename_source.rb
55
- - lib/rutaci/formater.rb
56
- - lib/rutaci/getter.rb
57
- - lib/rutaci/interaction.rb
58
- - lib/rutaci/renamer.rb
59
- - lib/rutaci/setter.rb
60
- - lib/rutaci/source.rb
61
- - lib/rutaci/taglib_source.rb
62
- files:
63
- - LICENSE
64
- - Manifest
65
- - README
66
- - Rakefile
67
- - TODO
68
- - rutaci.gemspec
69
- - bin/rutaci
70
- - lib/rutaci.rb
71
- - lib/rutaci/application.rb
72
- - lib/rutaci/filename_source.rb
73
- - lib/rutaci/formater.rb
74
- - lib/rutaci/getter.rb
75
- - lib/rutaci/interaction.rb
76
- - lib/rutaci/renamer.rb
77
- - lib/rutaci/setter.rb
78
- - lib/rutaci/source.rb
79
- - lib/rutaci/taglib_source.rb
80
- - templates/rubyfile.rb
81
- has_rdoc: true
82
- homepage: http://rutaci.rubyforge.org
83
- post_install_message:
84
- rdoc_options:
85
- - --line-numbers
86
- - --inline-source
87
- - --title
88
- - Rutaci
89
- - --main
90
- - README
91
- require_paths:
92
- - lib
93
- required_ruby_version: !ruby/object:Gem::Requirement
94
- requirements:
95
- - - ">="
96
- - !ruby/object:Gem::Version
97
- version: "0"
98
- version:
99
- required_rubygems_version: !ruby/object:Gem::Requirement
100
- requirements:
101
- - - "="
102
- - !ruby/object:Gem::Version
103
- version: "1.2"
104
- version:
105
- requirements: []
106
-
107
- rubyforge_project: rutaci
108
- rubygems_version: 1.2.0
109
- specification_version: 2
110
- summary: A command line tool for manupulating the metadata of music files
111
- test_files: []
28
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
29
+ s.add_runtime_dependency(%q<rtaglib>, [">= 0", "= 0.1.2"])
30
+ s.add_development_dependency(%q<echoe>, [">= 0"])
31
+ else
32
+ s.add_dependency(%q<rtaglib>, [">= 0", "= 0.1.2"])
33
+ s.add_dependency(%q<echoe>, [">= 0"])
34
+ end
35
+ else
36
+ s.add_dependency(%q<rtaglib>, [">= 0", "= 0.1.2"])
37
+ s.add_dependency(%q<echoe>, [">= 0"])
38
+ end
39
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rutaci
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - "Jonas B\xC3\xA4hr"
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-09-26 00:00:00 +02:00
12
+ date: 2008-11-07 00:00:00 +01:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -42,11 +42,7 @@ executables:
42
42
  extensions: []
43
43
 
44
44
  extra_rdoc_files:
45
- - LICENSE
46
- - README
47
- - TODO
48
45
  - bin/rutaci
49
- - lib/rutaci.rb
50
46
  - lib/rutaci/application.rb
51
47
  - lib/rutaci/filename_source.rb
52
48
  - lib/rutaci/formater.rb
@@ -56,15 +52,12 @@ extra_rdoc_files:
56
52
  - lib/rutaci/setter.rb
57
53
  - lib/rutaci/source.rb
58
54
  - lib/rutaci/taglib_source.rb
59
- files:
55
+ - lib/rutaci.rb
60
56
  - LICENSE
61
- - Manifest
62
57
  - README
63
- - Rakefile
64
58
  - TODO
65
- - rutaci.gemspec
59
+ files:
66
60
  - bin/rutaci
67
- - lib/rutaci.rb
68
61
  - lib/rutaci/application.rb
69
62
  - lib/rutaci/filename_source.rb
70
63
  - lib/rutaci/formater.rb
@@ -74,7 +67,14 @@ files:
74
67
  - lib/rutaci/setter.rb
75
68
  - lib/rutaci/source.rb
76
69
  - lib/rutaci/taglib_source.rb
70
+ - lib/rutaci.rb
71
+ - LICENSE
72
+ - Manifest
73
+ - Rakefile
74
+ - README
75
+ - rutaci.gemspec
77
76
  - templates/rubyfile.rb
77
+ - TODO
78
78
  has_rdoc: true
79
79
  homepage: http://rutaci.rubyforge.org
80
80
  post_install_message:
@@ -95,14 +95,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
95
95
  version:
96
96
  required_rubygems_version: !ruby/object:Gem::Requirement
97
97
  requirements:
98
- - - "="
98
+ - - ">="
99
99
  - !ruby/object:Gem::Version
100
- version: "1.2"
100
+ version: "0"
101
101
  version:
102
102
  requirements: []
103
103
 
104
104
  rubyforge_project: rutaci
105
- rubygems_version: 1.2.0
105
+ rubygems_version: 1.3.1
106
106
  signing_key:
107
107
  specification_version: 2
108
108
  summary: A command line tool for manupulating the metadata of music files