-
Notifications
You must be signed in to change notification settings - Fork 498
Expand file tree
/
Copy pathblazer.gemspec
More file actions
23 lines (18 loc) · 788 Bytes
/
blazer.gemspec
File metadata and controls
23 lines (18 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require_relative "lib/blazer/version"
Gem::Specification.new do |spec|
spec.name = "blazer"
spec.version = Blazer::VERSION
spec.summary = "Explore your data with SQL. Easily create charts and dashboards, and share them with your team."
spec.homepage = "https://github.com/ankane/blazer"
spec.license = "MIT"
spec.author = "Andrew Kane"
spec.email = "andrew@ankane.org"
spec.files = Dir["*.{md,txt}", "{app,config,lib,licenses}/**/*"]
spec.require_path = "lib"
spec.required_ruby_version = ">= 3.3"
spec.add_dependency "railties", ">= 7.2"
spec.add_dependency "activerecord", ">= 7.2"
spec.add_dependency "chartkick", ">= 5"
spec.add_dependency "safely_block", ">= 1"
spec.add_dependency "csv"
end