-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathguard-migrate.gemspec
31 lines (25 loc) · 1.12 KB
/
guard-migrate.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
# -*- encoding: utf-8 -*-
$LOAD_PATH.push File.expand_path('../lib', __FILE__)
require 'guard/migrate/version'
Gem::Specification.new do |s|
s.name = 'guard-migrate'
s.version = Guard::MigrateVersion::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ['Geoff Lanotte']
s.email = ['geofflanotte@gmail.com']
s.homepage = 'http://rubygems.org/gems/guard-migrate'
s.summary = 'Guard gem for rails migrations'
s.description = 'Guard::Migrate automatically runs your database migrations when needed'
s.license = 'MIT'
s.required_rubygems_version = '>= 1.3.6'
s.rubyforge_project = 'guard-migrate'
s.add_dependency 'guard', '~> 2.3'
s.add_dependency 'guard-compat', '~> 1.1'
s.add_dependency 'activerecord', '>= 4.1.0'
s.add_development_dependency 'bundler', '>= 1.3.5'
s.files = Dir.glob('{lib}/**/*') + %w(LICENSE.txt README.rdoc)
s.require_path = 'lib'
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.require_paths = ['lib']
s.rdoc_options = ['--charset=UTF-8', '--main=README.rdoc', "--exclude='(lib|test|spec)|(Gem|Guard|Rake)file'"]
end