-
Notifications
You must be signed in to change notification settings - Fork 22
/
axiom.gemspec
28 lines (23 loc) · 1.12 KB
/
axiom.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
# encoding: utf-8
require File.expand_path('../lib/axiom/version', __FILE__)
require 'English'
Gem::Specification.new do |gem|
gem.name = 'axiom'
gem.version = Axiom::VERSION.dup
gem.authors = ['Dan Kubb']
gem.email = 'dan.kubb@gmail.com'
gem.description = 'Simplifies querying of structured data using relational algebra'
gem.summary = 'Ruby Relational Algebra'
gem.homepage = 'https://github.com/dkubb/axiom'
gem.license = 'MIT'
gem.require_paths = %w[lib]
gem.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
gem.test_files = `git ls-files -- spec/{unit,integration}`.split($INPUT_RECORD_SEPARATOR)
gem.extra_rdoc_files = %w[LICENSE README.md CONTRIBUTING.md TODO]
gem.add_runtime_dependency('abstract_type', '~> 0.0.7')
gem.add_runtime_dependency('adamantium', '~> 0.2.0')
gem.add_runtime_dependency('axiom-types', '~> 0.1.1')
gem.add_runtime_dependency('descendants_tracker', '~> 0.0.4')
gem.add_runtime_dependency('equalizer', '~> 0.0.9')
gem.add_development_dependency('bundler', '~> 1.6', '>= 1.6.3')
end