fastercsv 0.1.2 → 0.1.3

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 (3) hide show
  1. data/CHANGELOG +4 -0
  2. data/Rakefile +2 -2
  3. metadata +2 -2
data/CHANGELOG CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  Below is a complete listing of changes for each revision of FasterCSV.
4
4
 
5
+ == 0.1.3
6
+
7
+ * Fixed typo in gem spec causing a require bug.
8
+
5
9
  == 0.1.2
6
10
 
7
11
  * Built gem with Ruby 1.8.2, to bypass YAML/RubyGems issue.
data/Rakefile CHANGED
@@ -44,7 +44,7 @@ end
44
44
 
45
45
  spec = Gem::Specification.new do |spec|
46
46
  spec.name = "fastercsv"
47
- spec.version = "0.1.2"
47
+ spec.version = "0.1.3"
48
48
  spec.platform = Gem::Platform::RUBY
49
49
  spec.summary = "FasterCSV is CSV, but faster, smaller, and cleaner."
50
50
 
@@ -61,7 +61,7 @@ spec = Gem::Specification.new do |spec|
61
61
  "--main" << "README"
62
62
 
63
63
  spec.require_path = "lib"
64
- spec.autorequire = "fastercsv"
64
+ spec.autorequire = "faster_csv"
65
65
 
66
66
  spec.author = "James Edward Gray II"
67
67
  spec.email = "james@grayproductions.net"
metadata CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.8.11
3
3
  specification_version: 1
4
4
  name: fastercsv
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.1.2
6
+ version: 0.1.3
7
7
  date: 2005-11-16 00:00:00 -06:00
8
8
  summary: "FasterCSV is CSV, but faster, smaller, and cleaner."
9
9
  require_paths:
@@ -12,7 +12,7 @@ email: james@grayproductions.net
12
12
  homepage: http://fastercsv.rubyforge.org
13
13
  rubyforge_project: fastercsv
14
14
  description: FasterCSV is intended as a complete replacement to the CSV standard library. It is significantly faster and smaller while still being pure Ruby code. It also strives for a better interface.
15
- autorequire: fastercsv
15
+ autorequire: faster_csv
16
16
  default_executable:
17
17
  bindir: bin
18
18
  has_rdoc: true