-
Notifications
You must be signed in to change notification settings - Fork 2
/
make_exportable.gemspec
67 lines (62 loc) · 2.35 KB
/
make_exportable.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = "make_exportable"
s.version = "1.1.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Kevin Skoglund", "Matthew Bergman"]
s.date = "2012-04-28"
s.description = "MakeExportable is a Rails gem/plugin to assist in exporting application data as CSV, TSV, JSON, HTML, XML or Excel. Filter and limit the data exported using ActiveRecord. Export returned values from instance methods as easily as database columns."
s.email = "[email protected]"
s.extra_rdoc_files = [
"README.rdoc"
]
s.files = [
"Gemfile",
"Gemfile.lock",
"MIT-LICENSE",
"README.rdoc",
"Rakefile",
"VERSION",
"lib/make_exportable.rb",
"lib/make_exportable/core.rb",
"lib/make_exportable/errors.rb",
"lib/make_exportable/exportable_format.rb",
"lib/make_exportable/exportable_formats/csv.rb",
"lib/make_exportable/exportable_formats/excel.rb",
"lib/make_exportable/exportable_formats/html.rb",
"lib/make_exportable/exportable_formats/json.rb",
"lib/make_exportable/exportable_formats/tsv.rb",
"lib/make_exportable/exportable_formats/xml.rb",
"lib/make_exportable/make_exportable_helper.rb",
"lib/make_exportable/version.rb",
"rails/init.rb",
"spec/database.yml",
"spec/database.yml.sample",
"spec/make_exportable/formats_spec.rb",
"spec/make_exportable/make_exportable_helper_spec.rb",
"spec/make_exportable/make_exportable_spec.rb",
"spec/models.rb",
"spec/schema.rb",
"spec/spec_helper.rb"
]
s.homepage = "http://github.com/novafabrica/make_exportable"
s.require_paths = ["lib"]
s.rubygems_version = "1.8.21"
s.summary = "Makes any Rails model easily exportable"
if s.respond_to? :specification_version then
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<rails>, [">= 0"])
s.add_development_dependency(%q<jeweler>, [">= 0"])
else
s.add_dependency(%q<rails>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
end
else
s.add_dependency(%q<rails>, [">= 0"])
s.add_dependency(%q<jeweler>, [">= 0"])
end
end