tabularasa 0.1.4 → 0.1.5

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
@@ -2,8 +2,7 @@ MIT-LICENSE
2
2
  README.rdoc
3
3
  Rakefile
4
4
  init.rb
5
- lib/to_csv.rb
6
- tabularasa.gemspec
5
+ lib/tabularasa.rb
7
6
  test/test_helper.rb
8
7
  test/to_csv_test.rb
9
8
  Manifest
data/Rakefile CHANGED
@@ -12,7 +12,8 @@ Rake::TestTask.new(:test) do |t|
12
12
  t.verbose = true
13
13
  end
14
14
 
15
- Echoe.new('tabularasa', '0.1.4') do |p|
15
+ Echoe.new('tabularasa', '0.1.5') do |p|
16
+ p.summary = "Gives the ability to convert activerecord objects into csv"
16
17
  p.description = "This Rails gem gives you the ability to call to_csv to a collection of activerecords"
17
18
  p.url = "https://github.com/callenrosario/tabularasa"
18
19
  p.author = ["Chris Rosario", "Ary Djmal"]
data/init.rb CHANGED
@@ -1,7 +1,2 @@
1
- if RUBY_VERSION >= "1.9.0"
2
- require 'csv'
3
- else
4
- require 'fastercsv'
5
- end
6
-
7
- require 'to_csv'
1
+ require 'csv'
2
+ require 'tabularasa'
@@ -1,5 +1,4 @@
1
1
  class Array
2
- require 'csv'
3
2
  def to_csv(options = {}, csv_options = {})
4
3
  return '' if self.empty?
5
4
 
data/tabularasa.gemspec CHANGED
@@ -2,21 +2,21 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "tabularasa"
5
- s.version = "0.1.4"
5
+ s.version = "0.1.5"
6
6
 
7
7
  s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
8
8
  s.authors = ["Chris Rosario, Ary Djmal"]
9
9
  s.date = "2011-11-23"
10
10
  s.description = "This Rails gem gives you the ability to call to_csv to a collection of activerecords"
11
11
  s.email = "arydjmal@gmail.com"
12
- s.extra_rdoc_files = ["README.rdoc", "lib/to_csv.rb"]
13
- s.files = ["MIT-LICENSE", "README.rdoc", "Rakefile", "init.rb", "lib/to_csv.rb", "tabularasa.gemspec", "test/test_helper.rb", "test/to_csv_test.rb", "Manifest"]
12
+ s.extra_rdoc_files = ["README.rdoc", "lib/tabularasa.rb"]
13
+ s.files = ["MIT-LICENSE", "README.rdoc", "Rakefile", "init.rb", "lib/tabularasa.rb", "test/test_helper.rb", "test/to_csv_test.rb", "Manifest", "tabularasa.gemspec"]
14
14
  s.homepage = "https://github.com/callenrosario/tabularasa"
15
15
  s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Tabularasa", "--main", "README.rdoc"]
16
16
  s.require_paths = ["lib"]
17
17
  s.rubyforge_project = "tabularasa"
18
18
  s.rubygems_version = "1.8.11"
19
- s.summary = "This Rails gem gives you the ability to call to_csv to a collection of activerecords"
19
+ s.summary = "Gives the ability to convert activerecord objects into csv"
20
20
  s.test_files = ["test/test_helper.rb", "test/to_csv_test.rb"]
21
21
 
22
22
  if s.respond_to? :specification_version then
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tabularasa
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.4
4
+ version: 0.1.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -18,17 +18,17 @@ executables: []
18
18
  extensions: []
19
19
  extra_rdoc_files:
20
20
  - README.rdoc
21
- - lib/to_csv.rb
21
+ - lib/tabularasa.rb
22
22
  files:
23
23
  - MIT-LICENSE
24
24
  - README.rdoc
25
25
  - Rakefile
26
26
  - init.rb
27
- - lib/to_csv.rb
28
- - tabularasa.gemspec
27
+ - lib/tabularasa.rb
29
28
  - test/test_helper.rb
30
29
  - test/to_csv_test.rb
31
30
  - Manifest
31
+ - tabularasa.gemspec
32
32
  homepage: https://github.com/callenrosario/tabularasa
33
33
  licenses: []
34
34
  post_install_message:
@@ -58,7 +58,7 @@ rubyforge_project: tabularasa
58
58
  rubygems_version: 1.8.11
59
59
  signing_key:
60
60
  specification_version: 3
61
- summary: This Rails gem gives you the ability to call to_csv to a collection of activerecords
61
+ summary: Gives the ability to convert activerecord objects into csv
62
62
  test_files:
63
63
  - test/test_helper.rb
64
64
  - test/to_csv_test.rb