forked from ankane/blazer
-
Notifications
You must be signed in to change notification settings - Fork 2
/
blazer.gemspec
25 lines (19 loc) · 842 Bytes
/
blazer.gemspec
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
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 = "[email protected]"
spec.files = Dir["*.{md,txt}", "{app,config,lib}/**/*"]
spec.require_path = "lib"
spec.required_ruby_version = ">= 2.4"
spec.add_dependency "railties", ">= 5"
spec.add_dependency "activerecord", ">= 5"
spec.add_dependency "chartkick", ">= 3.2"
spec.add_dependency "safely_block", ">= 0.1.1"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
end