forked from ankane/blazer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblazer.gemspec
28 lines (21 loc) · 923 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
26
27
28
lib = File.expand_path("../lib", __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "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.3"
spec.add_dependency "railties", ">= 4.2"
spec.add_dependency "activerecord", ">= 4.2"
spec.add_dependency "chartkick"
spec.add_dependency "safely_block", ">= 0.1.1"
spec.add_development_dependency "bundler"
spec.add_development_dependency "rake"
end