forked from splendeo/to_xls
-
Notifications
You must be signed in to change notification settings - Fork 1
/
to_xls.gemspec
28 lines (22 loc) · 1.11 KB
/
to_xls.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "to_xls/version"
Gem::Specification.new do |s|
s.name = "to_xls"
s.version = ToXls::VERSION
s.authors = ["Enrique Garcia Cota", "Francisco de Juan", "Sergio Díaz Álvarez"]
s.email = %q{egarcia@splendeo.es}
s.homepage = "https://github.com/splendeo/to_xls"
s.summary = %q{to_xls for Enumerations}
s.description = %q{Adds a to_xls method to all enumerations, which can be used to generate excel files conveniently. Can rely on ActiveRecord sugar for obtaining attribute names.}
s.rubyforge_project = "to_xls"
s.files = Dir['**/*'].select{|f| File.file?(f)}
s.executables = s.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
s.test_files = s.files.grep(%r{^(test|spec|features)/})
s.require_paths = ["lib"]
s.add_runtime_dependency 'spreadsheet', '>= 1.0', '>= 1.0'
s.add_development_dependency "spreadsheet", '>= 1.0', '>= 1.0'
s.add_development_dependency "rspec", "~> 2.3.0"
s.add_development_dependency "bundler", "> 1.1.0"
s.add_development_dependency "rake", "~> 0.9.2"
end