-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathindicators.gemspec
More file actions
21 lines (18 loc) · 866 Bytes
/
indicators.gemspec
File metadata and controls
21 lines (18 loc) · 866 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/indicators/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Nedomas"]
gem.email = ["domas.bitvinskas@me.com"]
gem.description = %q{A gem for calculating technical analysis indicators.}
gem.summary = %q{A gem for calculating technical analysis indicators.}
gem.homepage = "http://github.com/Nedomas/indicators"
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = "indicators"
gem.require_paths = ["lib"]
gem.version = Indicators::VERSION
gem.add_dependency 'rails'
gem.add_development_dependency 'securities', ">= 2.0.0", "< 3.0.0"
gem.add_development_dependency 'rspec'
end