gonzo_array_extensions 0.1.0 → 0.1.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/Manifest CHANGED
@@ -1,6 +1,7 @@
1
1
  Manifest
2
2
  README.rdoc
3
3
  Rakefile
4
+ gonzo_array_extensions.gemspec
4
5
  lib/gonzo_array_extensions.rb
5
6
  lib/gonzo_array_extensions/array.rb
6
7
  spec/custom_matchers.rb
data/Rakefile CHANGED
@@ -4,11 +4,11 @@ require 'echoe'
4
4
 
5
5
  Dir['tasks/**/*.rake'].each { |t| load t }
6
6
 
7
- Echoe.new('gonzo_array_extensions', '0.1.0') do |p|
7
+ Echoe.new('gonzo_array_extensions', '0.1.1') do |p|
8
8
  p.description = "Extends standard library Array with some common gonzo needs"
9
9
  p.url = "http://github.com/robertoles/gonzo_array_extensions"
10
10
  p.author = "Robert Oles"
11
11
  p.email = "robertoles@me.com"
12
12
  p.ignore_pattern = ["tmp/*", "script/*"]
13
- p.development_dependencies = []
13
+ p.development_dependencies = ['activesupport >=2.3.4']
14
14
  end
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = %q{gonzo_array_extensions}
5
- s.version = "0.1.0"
5
+ s.version = "0.1.1"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Robert Oles"]
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
10
10
  s.description = %q{Extends standard library Array with some common gonzo needs}
11
11
  s.email = %q{robertoles@me.com}
12
12
  s.extra_rdoc_files = ["README.rdoc", "lib/gonzo_array_extensions.rb", "lib/gonzo_array_extensions/array.rb", "tasks/rspec.rake"]
13
- s.files = ["Manifest", "README.rdoc", "Rakefile", "lib/gonzo_array_extensions.rb", "lib/gonzo_array_extensions/array.rb", "spec/custom_matchers.rb", "spec/gonzo_array_extensions/array_spec.rb", "spec/gonzo_array_extensions_spec.rb", "spec/spec_helper.rb", "tasks/rspec.rake", "gonzo_array_extensions.gemspec"]
13
+ s.files = ["Manifest", "README.rdoc", "Rakefile", "gonzo_array_extensions.gemspec", "lib/gonzo_array_extensions.rb", "lib/gonzo_array_extensions/array.rb", "spec/custom_matchers.rb", "spec/gonzo_array_extensions/array_spec.rb", "spec/gonzo_array_extensions_spec.rb", "spec/spec_helper.rb", "tasks/rspec.rake"]
14
14
  s.homepage = %q{http://github.com/robertoles/gonzo_array_extensions}
15
15
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Gonzo_array_extensions", "--main", "README.rdoc"]
16
16
  s.require_paths = ["lib"]
@@ -23,8 +23,11 @@ Gem::Specification.new do |s|
23
23
  s.specification_version = 3
24
24
 
25
25
  if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
26
+ s.add_development_dependency(%q<activesupport>, [">= 2.3.4"])
26
27
  else
28
+ s.add_dependency(%q<activesupport>, [">= 2.3.4"])
27
29
  end
28
30
  else
31
+ s.add_dependency(%q<activesupport>, [">= 2.3.4"])
29
32
  end
30
33
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gonzo_array_extensions
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Robert Oles
@@ -11,8 +11,17 @@ cert_chain: []
11
11
 
12
12
  date: 2010-02-21 00:00:00 +00:00
13
13
  default_executable:
14
- dependencies: []
15
-
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: activesupport
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 2.3.4
24
+ version:
16
25
  description: Extends standard library Array with some common gonzo needs
17
26
  email: robertoles@me.com
18
27
  executables: []
@@ -28,6 +37,7 @@ files:
28
37
  - Manifest
29
38
  - README.rdoc
30
39
  - Rakefile
40
+ - gonzo_array_extensions.gemspec
31
41
  - lib/gonzo_array_extensions.rb
32
42
  - lib/gonzo_array_extensions/array.rb
33
43
  - spec/custom_matchers.rb
@@ -35,7 +45,6 @@ files:
35
45
  - spec/gonzo_array_extensions_spec.rb
36
46
  - spec/spec_helper.rb
37
47
  - tasks/rspec.rake
38
- - gonzo_array_extensions.gemspec
39
48
  has_rdoc: true
40
49
  homepage: http://github.com/robertoles/gonzo_array_extensions
41
50
  licenses: []