-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathxquery.gemspec
35 lines (28 loc) · 1.24 KB
/
xquery.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
33
34
35
$LOAD_PATH.unshift(File.expand_path('../lib', __FILE__))
require 'xquery/version'
Gem::Specification.new do |spec|
spec.name = 'xquery'
spec.version = XQuery::VERSION
spec.authors = %w(jelf)
spec.summary = <<-TXT.gsub('\A {4}', '')
XQuery is designed to replace boring method call chains and allow to easier
convert it in a builder classes
see README.md for more information
TXT
spec.platform = 'java' if defined?(RUBY_ENGINE) && RUBY_ENGINE == 'jruby'
spec.homepage = 'https://github.com/JelF/xquery'
spec.license = 'WTFPL'
spec.description = File.read(File.expand_path('../README.md', __FILE__))
spec.email = %W(begdory4+#{spec.name}@gmail.com)
spec.files = `git ls-files -z`.split("\x0").grep(%r{\Alib/.+\.rb\z})
spec.require_paths = %w(lib)
spec.add_dependency 'activesupport', '>= 4.0'
spec.add_development_dependency 'bundler', '~> 1.12'
spec.add_development_dependency 'rake', '~> 10.0'
spec.add_development_dependency 'rspec', '~> 3.0'
spec.add_development_dependency 'rubocop', '~> 0.47'
spec.add_development_dependency 'pry', '~> 0.10'
spec.add_development_dependency 'coveralls', '~> 0.8'
spec.add_development_dependency 'yard', '~> 0.9'
spec.add_development_dependency 'launchy', '~> 2.4.3'
end