-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathntcharts.gemspec
More file actions
34 lines (28 loc) · 1020 Bytes
/
ntcharts.gemspec
File metadata and controls
34 lines (28 loc) · 1020 Bytes
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
# frozen_string_literal: true
require_relative "lib/ntcharts/version"
Gem::Specification.new do |spec|
spec.name = "ntcharts"
spec.version = Ntcharts::VERSION
spec.authors = ["Marco Roth"]
spec.email = ["marco.roth@intergga.ch"]
spec.summary = "Ruby wrapper for NimbleMarkets' ntcharts terminal charting library."
spec.description = spec.summary
spec.homepage = "https://github.com/marcoroth/ntcharts-ruby"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = "https://github.com/marcoroth/ntcharts-ruby"
spec.metadata["changelog_uri"] = "https://github.com/marcoroth/ntcharts-ruby/releases"
spec.metadata["rubygems_mfa_required"] = "true"
spec.files = Dir[
"ntcharts.gemspec",
"LICENSE.txt",
"README.md",
"lib/**/*.rb",
"ext/**/*.{c,h,rb}",
"go/**/*.{go,mod,sum}",
"go/build/**/*"
]
spec.require_paths = ["lib"]
spec.extensions = ["ext/ntcharts/extconf.rb"]
end