-
Notifications
You must be signed in to change notification settings - Fork 7
/
stockboy.gemspec
36 lines (30 loc) · 1.24 KB
/
stockboy.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "stockboy/version"
Gem::Specification.new do |s|
s.name = "stockboy"
s.version = Stockboy::VERSION
s.authors = ["Andrew Vit"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/avit/stockboy"
s.license = "MIT"
s.summary = %q{Multi-source data normalization library}
s.description = %q{Supports importing data over various transports with key-value remapping & normalization}
s.rubyforge_project = "stockboy"
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"]
s.has_rdoc = false
s.add_development_dependency "rake"
s.add_development_dependency "rspec", ">= 3.0"
s.add_development_dependency "rspec-its"
# s.add_development_dependency "vcr"
s.add_runtime_dependency "roo", ">= 2.0"
s.add_runtime_dependency "roo-xls"
s.add_runtime_dependency "savon", ">= 2.3.0"
s.add_runtime_dependency "httpi"
s.add_runtime_dependency "mail"
s.add_runtime_dependency "activesupport", ">= 3.0"
s.add_runtime_dependency "net-sftp"
end