Sha256: 315db6008052f5cb158fb07ebb10ae3a8d9034529f99b4b34591d077744f2e8a

Contents?: true

Size: 1.51 KB

Versions: 4

Compression:

Stored size: 1.51 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'activefacts/api/version'

Gem::Specification.new do |spec|
  spec.name = "activefacts-api"
  spec.version       = ActiveFacts::API::VERSION
  spec.authors       = ["Clifford Heath"]
  spec.email         = ["clifford.heath@gmail.com"]
  spec.date = "2015-10-02"

  spec.summary = "A fact-based data model DSL and API"
  spec.description   = %q{
The ActiveFacts API is a Ruby DSL for managing constellations of elementary facts.
Each fact is either existential (a value or an entity), characteristic (boolean) or
binary relational (A rel B). Relational facts are consistently co-referenced, so you
can traverse them efficiently in any direction. Each constellation maintains constraints
over the fact population.
}
  spec.homepage      = "https://github.com/cjheath/activefacts-api"
  spec.license       = "MIT"

  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]

  spec.extra_rdoc_files = [
    "LICENSE.txt",
    "README.rdoc"
  ]
  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }

  spec.add_runtime_dependency 'rbtree-pure', [">= 0.1.1", "~> 0"]
  spec.add_runtime_dependency 'tracing', ["~> 2", ">= 2.0.4"]

  spec.add_development_dependency "bundler", ">= 1.10"
  spec.add_development_dependency "rake", "~> 10.0"
  spec.add_development_dependency "rspec", "~> 3.3"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
activefacts-api-1.9.11 activefacts-api.gemspec
activefacts-api-1.9.10 activefacts-api.gemspec
activefacts-api-1.9.9 activefacts-api.gemspec
activefacts-api-1.9.8 activefacts-api.gemspec