tabularasa 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +1 -1
- data/Rakefile +4 -4
- data/tabularasa.gemspec +3 -6
- metadata +4 -15
data/README.rdoc
CHANGED
data/Rakefile
CHANGED
@@ -12,13 +12,13 @@ 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.4') do |p|
|
16
16
|
p.description = "This Rails gem gives you the ability to call to_csv to a collection of activerecords"
|
17
|
-
p.url = "https://github.com/
|
18
|
-
p.author = "Ary Djmal"
|
17
|
+
p.url = "https://github.com/callenrosario/tabularasa"
|
18
|
+
p.author = ["Chris Rosario", "Ary Djmal"]
|
19
19
|
p.email = "arydjmal@gmail.com"
|
20
20
|
p.ignore_pattern = ["tmp/*", "script/*"]
|
21
|
-
p.runtime_dependencies = [
|
21
|
+
p.runtime_dependencies = []
|
22
22
|
p.development_dependencies = []
|
23
23
|
end
|
24
24
|
|
data/tabularasa.gemspec
CHANGED
@@ -2,16 +2,16 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = "tabularasa"
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.4"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
|
-
s.authors = ["Ary Djmal"]
|
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
12
|
s.extra_rdoc_files = ["README.rdoc", "lib/to_csv.rb"]
|
13
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"]
|
14
|
-
s.homepage = "https://github.com/
|
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"
|
@@ -23,11 +23,8 @@ Gem::Specification.new do |s|
|
|
23
23
|
s.specification_version = 3
|
24
24
|
|
25
25
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
26
|
-
s.add_runtime_dependency(%q<ruby>, [">= 1.9"])
|
27
26
|
else
|
28
|
-
s.add_dependency(%q<ruby>, [">= 1.9"])
|
29
27
|
end
|
30
28
|
else
|
31
|
-
s.add_dependency(%q<ruby>, [">= 1.9"])
|
32
29
|
end
|
33
30
|
end
|
metadata
CHANGED
@@ -1,27 +1,16 @@
|
|
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.4
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
8
|
-
- Ary Djmal
|
8
|
+
- Chris Rosario, Ary Djmal
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
12
|
date: 2011-11-23 00:00:00.000000000Z
|
13
|
-
dependencies:
|
14
|
-
- !ruby/object:Gem::Dependency
|
15
|
-
name: ruby
|
16
|
-
requirement: &3924680 !ruby/object:Gem::Requirement
|
17
|
-
none: false
|
18
|
-
requirements:
|
19
|
-
- - ! '>='
|
20
|
-
- !ruby/object:Gem::Version
|
21
|
-
version: '1.9'
|
22
|
-
type: :runtime
|
23
|
-
prerelease: false
|
24
|
-
version_requirements: *3924680
|
13
|
+
dependencies: []
|
25
14
|
description: This Rails gem gives you the ability to call to_csv to a collection of
|
26
15
|
activerecords
|
27
16
|
email: arydjmal@gmail.com
|
@@ -40,7 +29,7 @@ files:
|
|
40
29
|
- test/test_helper.rb
|
41
30
|
- test/to_csv_test.rb
|
42
31
|
- Manifest
|
43
|
-
homepage: https://github.com/
|
32
|
+
homepage: https://github.com/callenrosario/tabularasa
|
44
33
|
licenses: []
|
45
34
|
post_install_message:
|
46
35
|
rdoc_options:
|