-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathopenc3-cosmos-trends.gemspec
More file actions
29 lines (27 loc) · 985 Bytes
/
openc3-cosmos-trends.gemspec
File metadata and controls
29 lines (27 loc) · 985 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
# encoding: ascii-8bit
# Create the overall gemspec
Gem::Specification.new do |s|
s.name = 'openc3-cosmos-trends'
s.summary = 'Trend Analysis'
s.description = <<-EOF
Tool to analyze trends and make simple statistical predictions based on historical data.
EOF
s.license = 'MIT'
s.authors = ['Clay Kramp']
s.email = ['clay@openc3.com']
s.homepage = 'https://github.com/clayandgen/openc3-cosmos-trends'
s.platform = Gem::Platform::RUBY
s.required_ruby_version = '>= 3.0'
s.metadata = {
'openc3_store_keywords' => 'Trends,Graph,Analysis,Prediction,Anomaly',
'source_code_uri' => 'https://github.com/clayandgen/openc3-cosmos-trends',
'openc3_store_access_type' => 'public'
}
if ENV['VERSION']
s.version = ENV['VERSION'].dup
else
time = Time.now.strftime("%Y%m%d%H%M%S")
s.version = '0.0.0' + ".#{time}"
end
s.files = Dir.glob("{targets,lib,public,tools,microservices}/**/*") + %w(Rakefile README.md LICENSE.md plugin.txt)
end