tabularasa 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- data/Manifest +1 -0
- data/Rakefile +1 -1
- data/lib/tabularasa.rb +1 -0
- data/tabularasa.gemspec +2 -2
- metadata +2 -2
data/Manifest
CHANGED
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.
|
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
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
|
+
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"
|
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.
|
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:
|