-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbovespa_ingestion.gemspec
25 lines (21 loc) · 1.09 KB
/
bovespa_ingestion.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
lib = File.expand_path("../lib", __FILE__)
$:.unshift lib unless $:.include?(lib)
require 'historic_quotes/version'
# -*- encoding: utf-8 -*-
Gem::Specification.new 'bovespa_ingestion', HistoricQuotes::VERSION do |s|
s.summary = "An importer of historical stock quotations from BM&F Bovespa"
s.description = "It reads historical files of daily stock quotations, parses each line and inserts into database for future use."
s.date = "2013-05-27"
s.authors = ["Felipe Seixas", "Rodrigo Fraga"]
s.email = "[email protected]"
s.homepage = "http://github.com/seixasfelipe/bovespa_ingestion"
s.executables = ["bovespa-parser"]
s.files = `git ls-files`.split("\n") - %w[.gitignore .travis.yml]
s.test_files = s.files.select { |p| p =~ /^test\/.*_test.rb/ }
s.extra_rdoc_files = s.files.select { |p| p =~ /^README/ } << 'LICENSE'
s.licenses = ["MIT"]
s.require_paths = ["lib"]
s.rubygems_version = "2.0.3"
s.add_dependency 'activerecord', '>= 3'
s.add_dependency 'standalone_migrations'
end