Sha256: fc85cfb96f13948588d304c2e58c5a1e004d7caa9f37de1780e09b13bca4b079
Contents?: true
Size: 1.08 KB
Versions: 3
Compression:
Stored size: 1.08 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", "< 6.1" gem.add_development_dependency "rspec", "~> 3.4" gem.add_development_dependency "combustion", "~> 0.9.1" gem.add_development_dependency "gemika" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
temporal_tables-0.8.1 | temporal_tables.gemspec |
temporal_tables-0.8.0 | temporal_tables.gemspec |
temporal_tables-0.7.1 | temporal_tables.gemspec |