soogem 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ require 'rake/testtask'
2
+
3
+ Rake::TestTask.new do |t|
4
+ t.libs << 'test'
5
+ end
6
+
7
+ desc "Run tests"
8
+ task :default => :test
@@ -1,4 +1,9 @@
1
+ # This is a custom replacement for a CSV parser
1
2
  class SooSV
3
+ # In theory, this file should be able to handle CSV, TSV and other types of files.
4
+ #
5
+ # Example
6
+ # ....
2
7
 
3
8
  attr_accessor :new_line_char, :delimiter, :header, :body
4
9
 
data/lib/soogem.rb CHANGED
@@ -1,2 +1,7 @@
1
1
  class Soogem
2
2
  end
3
+
4
+ class SooSV
5
+ end
6
+
7
+ require 'soogem/soosv'
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: soogem
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 27
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 2
10
+ version: 0.0.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Jason Soo
@@ -27,9 +27,10 @@ extensions: []
27
27
  extra_rdoc_files: []
28
28
 
29
29
  files:
30
+ - lib/soogem/soosv.rb
30
31
  - lib/soogem.rb
31
- - lib/soosv.rb
32
- - lib/soosv_tests.rb
32
+ - Rakefile
33
+ - test/test_soosv.rb
33
34
  homepage: http://rubygems.org/gems/soogem
34
35
  licenses: []
35
36
 
@@ -59,7 +60,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
59
60
  requirements: []
60
61
 
61
62
  rubyforge_project:
62
- rubygems_version: 1.8.10
63
+ rubygems_version: 1.8.12
63
64
  signing_key:
64
65
  specification_version: 3
65
66
  summary: A collection of classes I always seem to be rewriting
File without changes