forked from ankane/blazer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblazer.gemspec
More file actions
22 lines (17 loc) · 764 Bytes
/
blazer.gemspec
File metadata and controls
22 lines (17 loc) · 764 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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"
spec.add_dependency "railties", ">= 6.1"
spec.add_dependency "activerecord", ">= 6.1"
spec.add_dependency "chartkick", ">= 3.2"
spec.add_dependency "safely_block", ">= 0.1.1"
end