-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrails_db_objects.gemspec
26 lines (21 loc) · 1.08 KB
/
rails_db_objects.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
$LOAD_PATH.push File.expand_path('lib', __dir__)
# Maintain your gem's version:
require 'rails_db_objects/version'
# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
s.name = 'rails_db_objects'
s.version = RailsDbObjects::VERSION
s.authors = ['']
s.email = ['']
s.homepage = 'https://github.com/neongrau/rails_db_objects'
s.summary = 'Drops and Creates database objects via rake/hook before and after any rake db:migrate call.'
s.description = 'A tool to manage database objects like views, functions, triggers, stored procedures or assemblies.
Inspired by the rails_db_views gem (which you can find at https://github.com/anykeyh/rails_db_views)
and re-using a lot of the code from there.'
s.license = 'MIT'
s.files = Dir['{app,config,db,lib}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.rdoc']
s.test_files = Dir['test/**/*']
s.add_dependency 'rake-hooks', '~>1.2.3'
s.add_development_dependency 'rubocop', '~>1.30.1'
s.add_development_dependency 'rubocop-rspec', '~>2.11.1'
end