rob-gordon 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/Rakefile +10 -2
  2. data/VERSION +1 -1
  3. data/rob-gordon.gemspec +11 -5
  4. metadata +10 -18
data/Rakefile CHANGED
@@ -16,12 +16,20 @@ Jeweler::Tasks.new do |gem|
16
16
  gem.homepage = "http://github.com/andyleclair/rob-gordon"
17
17
  gem.license = "MIT"
18
18
  gem.summary = %Q{A music organizer, for the self confessed obsessive}
19
- gem.description = %Q{A music organizer, for the self confessed obsessive}
19
+ gem.description = %Q{
20
+ "What came first, the music or the misery? People worry about kids playing with guns, or watching violent videos, that some sort of culture of violence will take them over.
21
+ Nobody worries about kids listening to thousands, literally thousands of songs about heartbreak, rejection, pain, misery and loss.
22
+ Did I listen to pop music because I was miserable? Or was I miserable because I listened to pop music?"
23
+
24
+ usage:
25
+ rob %folder %library
26
+
27
+ That command will import the folder to your library
28
+ }
20
29
  gem.email = "andyleclair@gmail.com"
21
30
  gem.authors = ["andyleclair"]
22
31
  # Include your dependencies below. Runtime dependencies are required when using your gem,
23
32
  # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
24
- gem.add_runtime_dependency 'id3lib-ruby', '> 0.1'
25
33
  end
26
34
  Jeweler::RubygemsDotOrgTasks.new
27
35
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.2
1
+ 0.1.3
data/rob-gordon.gemspec CHANGED
@@ -5,13 +5,22 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rob-gordon}
8
- s.version = "0.1.2"
8
+ s.version = "0.1.3"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["andyleclair"]
12
12
  s.date = %q{2011-03-09}
13
13
  s.default_executable = %q{rob}
14
- s.description = %q{A music organizer, for the self confessed obsessive}
14
+ s.description = %q{
15
+ "What came first, the music or the misery? People worry about kids playing with guns, or watching violent videos, that some sort of culture of violence will take them over.
16
+ Nobody worries about kids listening to thousands, literally thousands of songs about heartbreak, rejection, pain, misery and loss.
17
+ Did I listen to pop music because I was miserable? Or was I miserable because I listened to pop music?"
18
+
19
+ usage:
20
+ rob %folder %library
21
+
22
+ That command will import the folder to your library
23
+ }
15
24
  s.email = %q{andyleclair@gmail.com}
16
25
  s.executables = ["rob"]
17
26
  s.extra_rdoc_files = [
@@ -57,14 +66,12 @@ Gem::Specification.new do |s|
57
66
  s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
58
67
  s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
59
68
  s.add_development_dependency(%q<rcov>, [">= 0"])
60
- s.add_runtime_dependency(%q<id3lib-ruby>, ["> 0.1"])
61
69
  else
62
70
  s.add_dependency(%q<id3lib-ruby>, [">= 0"])
63
71
  s.add_dependency(%q<shoulda>, [">= 0"])
64
72
  s.add_dependency(%q<bundler>, ["~> 1.0.0"])
65
73
  s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
66
74
  s.add_dependency(%q<rcov>, [">= 0"])
67
- s.add_dependency(%q<id3lib-ruby>, ["> 0.1"])
68
75
  end
69
76
  else
70
77
  s.add_dependency(%q<id3lib-ruby>, [">= 0"])
@@ -72,7 +79,6 @@ Gem::Specification.new do |s|
72
79
  s.add_dependency(%q<bundler>, ["~> 1.0.0"])
73
80
  s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
74
81
  s.add_dependency(%q<rcov>, [">= 0"])
75
- s.add_dependency(%q<id3lib-ruby>, ["> 0.1"])
76
82
  end
77
83
  end
78
84
 
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 2
9
- version: 0.1.2
8
+ - 3
9
+ version: 0.1.3
10
10
  platform: ruby
11
11
  authors:
12
12
  - andyleclair
@@ -86,21 +86,13 @@ dependencies:
86
86
  type: :development
87
87
  prerelease: false
88
88
  version_requirements: *id005
89
- - !ruby/object:Gem::Dependency
90
- name: id3lib-ruby
91
- requirement: &id006 !ruby/object:Gem::Requirement
92
- none: false
93
- requirements:
94
- - - ">"
95
- - !ruby/object:Gem::Version
96
- segments:
97
- - 0
98
- - 1
99
- version: "0.1"
100
- type: :runtime
101
- prerelease: false
102
- version_requirements: *id006
103
- description: A music organizer, for the self confessed obsessive
89
+ description: "\n\
90
+ \t\"What came first, the music or the misery? People worry about kids playing with guns, or watching violent videos, that some sort of culture of violence will take them over. \n\
91
+ \tNobody worries about kids listening to thousands, literally thousands of songs about heartbreak, rejection, pain, misery and loss. \n\
92
+ \tDid I listen to pop music because I was miserable? Or was I miserable because I listened to pop music?\"\n\n\
93
+ \tusage:\n\
94
+ \trob %folder %library\n\n\
95
+ \tThat command will import the folder to your library\n"
104
96
  email: andyleclair@gmail.com
105
97
  executables:
106
98
  - rob
@@ -141,7 +133,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
141
133
  requirements:
142
134
  - - ">="
143
135
  - !ruby/object:Gem::Version
144
- hash: -3961011936587715293
136
+ hash: 1502841684353975868
145
137
  segments:
146
138
  - 0
147
139
  version: "0"