forked from sitrox/schemacop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRakefile
45 lines (41 loc) · 1.6 KB
/
Rakefile
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
33
34
35
36
37
38
39
40
41
42
43
44
45
task :gemspec do
gemspec = Gem::Specification.new do |spec|
spec.name = 'schemacop'
spec.version = IO.read('VERSION').chomp
spec.authors = ['Sitrox']
spec.summary = %(
Schemacop validates ruby structures consisting of nested hashes and arrays
against simple schema definitions.
)
spec.license = 'MIT'
spec.homepage = 'https://github.com/sitrox/schemacop'
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
spec.executables = []
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
spec.require_paths = ['lib']
spec.add_development_dependency 'bundler', '~> 1.3'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'ci_reporter', '~> 2.0'
spec.add_development_dependency 'ci_reporter_minitest'
spec.add_development_dependency 'haml'
spec.add_development_dependency 'yard'
spec.add_development_dependency 'rubocop', '0.35.1'
spec.add_development_dependency 'redcarpet'
# This lower bound for ActiveSupport is not necessarily true. Schemacop
# needs access to ActiveSupport::HashWithIndifferentAccess and expects
# behavior of that as in version 5 of ActiveSupport.
spec.add_dependency 'activesupport', '>= 4.0', '< 6'
end
File.open('schemacop.gemspec', 'w') { |f| f.write(gemspec.to_ruby.strip) }
end
# rubocop: disable Lint/HandleExceptions
begin
require 'rake/testtask'
require 'ci/reporter/rake/minitest'
Rake::TestTask.new do |t|
t.pattern = 'test/*_test.rb'
t.verbose = false
t.libs << 'test'
end
rescue LoadError
end