Sha256: d83ce2cf5d789c87a9b02e44c02e91ccab134033daa44d0a4ce9f79ccfc5208b

Contents?: true

Size: 1.06 KB

Versions: 4

Compression:

Stored size: 1.06 KB

Contents

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

Gem::Specification.new do |gem|
	gem.name          = "temporal_tables"
	gem.version       = TemporalTables::VERSION
	gem.authors       = ["Brent Kroeker"]
	gem.email         = ["brent@bkroeker.com"]
	gem.description   = %q{Easily recall what your data looked like at any point in the past!  TemporalTables sets up and maintains history tables to track all temporal changes to to your data.}
	gem.summary       = %q{Tracks all history of changes to a table automatically in a history table.}
	gem.homepage      = ""

	gem.files         = `git ls-files`.split($/)
	gem.executables   = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
	gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
	gem.require_paths = ["lib"]

	gem.add_dependency "rails", "~> 5.0"
	gem.add_development_dependency "rspec", "~> 3.4"
	gem.add_development_dependency "combustion", "~> 0.9.1"
	gem.add_development_dependency "gemika"
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
temporal_tables-0.6.10 temporal_tables.gemspec
temporal_tables-0.6.9 temporal_tables.gemspec
temporal_tables-0.6.7 temporal_tables.gemspec
temporal_tables-0.6.6 temporal_tables.gemspec