-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathanalytics_plane.gemspec
More file actions
31 lines (24 loc) · 1.18 KB
/
analytics_plane.gemspec
File metadata and controls
31 lines (24 loc) · 1.18 KB
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
# frozen_string_literal: true
require_relative "lib/analytics_plane/version"
Gem::Specification.new do |spec|
spec.name = "analytics_plane"
spec.version = AnalyticsPlane::VERSION
spec.authors = ["Mark Harbison"]
spec.email = ["mark@tyne-solutions.com"]
spec.summary = "A data analytics framework for building charts, dashboards, and reports in Ruby."
spec.description = "A data analytics framework for building charts, dashboards, and reports in Ruby."
spec.homepage = "https://github.com/CodeTectonics/analytics_plane"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2.0"
spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
spec.metadata["changelog_uri"] = "#{spec.homepage}/blob/main/CHANGELOG.md"
spec.files = `git ls-files`.split("\n")
spec.test_files = `git ls-files -- spec/*`.split("\n")
spec.require_paths = ["lib"]
# Uncomment to register a new dependency of your gem
# spec.add_dependency "example-gem", "~> 1.0"
spec.add_dependency "rails", ">= 6.1"
# For more information and examples about making a new gem, check out our
# guide at: https://bundler.io/guides/creating_gem.html
end