chronic_tree.gemspec
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'chronic_tree/version'
Gem::Specification.new do |spec|
spec.name = "chronic_tree"
spec.version = ChronicTree::VERSION
spec.authors = ["bigxiang"]
spec.email = ["bigxiang@gmail.com"]
spec.description = %q{Build a tree with historical versions and multiple scopes by one model class.}
spec.summary = %q{Build a tree with historical versions and multiple scopes by one model class.}
spec.homepage = "https://github.com/bigxiang/chronic_tree"
spec.license = "MIT"
spec.files = `git ls-files`.split($/)
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
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 "rspec", "~> 3.0.0"
spec.add_development_dependency "sqlite3"
spec.add_development_dependency "pry"
spec.add_development_dependency "codeclimate-test-reporter"
spec.add_development_dependency "coveralls"
spec.add_dependency "activerecord", ">= 4.0.0"
end