tabularasa 0.1.5 → 0.1.6

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
@@ -3,6 +3,7 @@ README.rdoc
3
3
  Rakefile
4
4
  init.rb
5
5
  lib/tabularasa.rb
6
+ tabularasa.gemspec
6
7
  test/test_helper.rb
7
8
  test/to_csv_test.rb
8
9
  Manifest
data/Rakefile CHANGED
@@ -12,7 +12,7 @@ Rake::TestTask.new(:test) do |t|
12
12
  t.verbose = true
13
13
  end
14
14
 
15
- Echoe.new('tabularasa', '0.1.5') do |p|
15
+ Echoe.new('tabularasa', '0.1.6') do |p|
16
16
  p.summary = "Gives the ability to convert activerecord objects into csv"
17
17
  p.description = "This Rails gem gives you the ability to call to_csv to a collection of activerecords"
18
18
  p.url = "https://github.com/callenrosario/tabularasa"
data/lib/tabularasa.rb CHANGED
@@ -1,4 +1,5 @@
1
1
  class Array
2
+ require 'csv'
2
3
  def to_csv(options = {}, csv_options = {})
3
4
  return '' if self.empty?
4
5
 
data/tabularasa.gemspec CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  Gem::Specification.new do |s|
4
4
  s.name = "tabularasa"
5
- s.version = "0.1.5"
5
+ s.version = "0.1.6"
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"]
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
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
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"]
13
+ s.files = ["MIT-LICENSE", "README.rdoc", "Rakefile", "init.rb", "lib/tabularasa.rb", "tabularasa.gemspec", "test/test_helper.rb", "test/to_csv_test.rb", "Manifest"]
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"]
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.5
4
+ version: 0.1.6
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -25,10 +25,10 @@ files:
25
25
  - Rakefile
26
26
  - init.rb
27
27
  - lib/tabularasa.rb
28
+ - tabularasa.gemspec
28
29
  - test/test_helper.rb
29
30
  - test/to_csv_test.rb
30
31
  - Manifest
31
- - tabularasa.gemspec
32
32
  homepage: https://github.com/callenrosario/tabularasa
33
33
  licenses: []
34
34
  post_install_message: