forked from catarse/dbhero
-
Notifications
You must be signed in to change notification settings - Fork 1
/
dbhero.gemspec
32 lines (27 loc) · 1.06 KB
/
dbhero.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
29
30
31
32
# -*- coding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
# Maintain your gem's version:
require "dbhero/version"
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = "dbhero"
s.version = Dbhero::VERSION
s.authors = ["Antônio Roberto Silva"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/catarse/dbhero"
s.summary = "Simple heroku dataclips report tool"
s.description = "Based on heroku dataclips feature, SQL -> Dataset"
s.license = "MIT"
s.files = Dir["{app,config,db,lib}/**/*", "MIT-LICENSE", "Rakefile", "README.rdoc"]
s.test_files = Dir["spec/**/*"]
s.add_dependency "rails", "> 4"
s.add_dependency "responders"
s.add_dependency "slim-rails"
s.add_dependency "has_scope"
s.add_development_dependency "pg"
s.add_development_dependency 'rspec-rails', '> 3'
s.add_development_dependency 'factory_bot_rails'
s.add_development_dependency 'simplecov'
s.add_development_dependency 'pry-byebug'
s.add_development_dependency 'shoulda'
end