forked from bspaulding/Sheets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
sheets.gemspec
29 lines (24 loc) · 1.27 KB
/
sheets.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "sheets/version"
Gem::Specification.new do |s|
s.name = "sheets"
s.version = Sheets::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Bradley J. Spaulding"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/bspaulding/Sheets"
s.summary = %q{Sheets provides a Facade for importing spreadsheets that gives the application control. Any Spreadsheet can be represented as either (1) a two dimensional array, or (2) an array of hashes. Sheets' goal is to convert any spreadsheet format to one of these native Ruby data structures.}
s.description = %q{Work with spreadsheets easily in a native ruby format.}
s.rubyforge_project = "sheets"
s.add_dependency('spreadsheet', '~>1.0.0')
s.add_dependency('rubyzip', '~>1.1.0')
s.add_dependency('nokogiri', '~>1.6.1')
s.add_development_dependency('rake', '~>10.1.1')
s.add_development_dependency('test-unit')
s.add_development_dependency('simplecov')
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end