-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathspreadsheet_architect.gemspec
More file actions
27 lines (22 loc) · 1.04 KB
/
Copy pathspreadsheet_architect.gemspec
File metadata and controls
27 lines (22 loc) · 1.04 KB
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
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'spreadsheet_architect/version.rb'
Gem::Specification.new do |s|
s.name = 'spreadsheet_architect'
s.version = SpreadsheetArchitect::VERSION
s.author = "Weston Ganger"
s.email = 'weston@westonganger.com'
s.homepage = 'https://github.com/westonganger/spreadsheet_architect'
s.summary = "Spreadsheet Architect is a library that allows you to create XLSX, ODS, or CSV spreadsheets easily from ActiveRecord relations, Plain Ruby classes, or predefined data."
s.description = s.summary
s.license = 'MIT'
s.files = Dir.glob("{lib/**/*}") + %w{ LICENSE README.md Rakefile CHANGELOG.md }
s.require_path = 'lib'
s.add_runtime_dependency 'caxlsx', '>= 4.0'
s.add_runtime_dependency 'rodf'
s.add_runtime_dependency 'csv'
s.add_development_dependency 'rake'
s.add_development_dependency 'minitest', '~> 5.0'
s.add_development_dependency 'minitest-reporters'
s.add_development_dependency 'warning'
end