scottmotte-csvmapper 0.4.0 → 0.4.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.
Files changed (4) hide show
  1. data/Rakefile +1 -2
  2. data/VERSION +1 -1
  3. data/csvmapper.gemspec +49 -0
  4. metadata +2 -1
data/Rakefile CHANGED
@@ -11,8 +11,7 @@ begin
11
11
  gem.authors = ["scottmotte"]
12
12
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
13
13
 
14
- gem.add_dependency('right_aws')
15
- gem.add_dependency('mini_magick')
14
+ gem.add_dependency('fastercsv')
16
15
  end
17
16
 
18
17
  rescue LoadError
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.4.0
1
+ 0.4.2
data/csvmapper.gemspec ADDED
@@ -0,0 +1,49 @@
1
+ # -*- encoding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |s|
4
+ s.name = %q{csvmapper}
5
+ s.version = "0.4.2"
6
+
7
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
8
+ s.authors = ["scottmotte"]
9
+ s.date = %q{2009-07-20}
10
+ s.email = %q{scott@scottmotte.com}
11
+ s.extra_rdoc_files = [
12
+ "LICENSE",
13
+ "README.rdoc"
14
+ ]
15
+ s.files = [
16
+ ".document",
17
+ ".gitignore",
18
+ "LICENSE",
19
+ "README.rdoc",
20
+ "Rakefile",
21
+ "VERSION",
22
+ "csvmapper.gemspec",
23
+ "lib/csvmapper.rb",
24
+ "spec/csvmapper_spec.rb",
25
+ "spec/spec_helper.rb"
26
+ ]
27
+ s.homepage = %q{http://github.com/scottmotte/csvmapper}
28
+ s.rdoc_options = ["--charset=UTF-8"]
29
+ s.require_paths = ["lib"]
30
+ s.rubygems_version = %q{1.3.4}
31
+ s.summary = %q{Stolen from pillowfactory's csv-mapper and adjusted slightly}
32
+ s.test_files = [
33
+ "spec/csvmapper_spec.rb",
34
+ "spec/spec_helper.rb"
35
+ ]
36
+
37
+ if s.respond_to? :specification_version then
38
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
39
+ s.specification_version = 3
40
+
41
+ if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
42
+ s.add_runtime_dependency(%q<fastercsv>, [">= 0"])
43
+ else
44
+ s.add_dependency(%q<fastercsv>, [">= 0"])
45
+ end
46
+ else
47
+ s.add_dependency(%q<fastercsv>, [">= 0"])
48
+ end
49
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: scottmotte-csvmapper
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - scottmotte
@@ -48,6 +48,7 @@ files:
48
48
  - README.rdoc
49
49
  - Rakefile
50
50
  - VERSION
51
+ - csvmapper.gemspec
51
52
  - lib/csvmapper.rb
52
53
  - spec/csvmapper_spec.rb
53
54
  - spec/spec_helper.rb