Sha256: b2526cbea181809f5040dfea54dde160bdf0a84faef02e2af97ebf349ca3c28d
Contents?: true
Size: 1022 Bytes
Versions: 3
Compression:
Stored size: 1022 Bytes
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'jamjar/version' Gem::Specification.new do |spec| spec.name = "jamjar" spec.version = JamJar::VERSION spec.authors = ["Thomas Drake-Brockman"] spec.email = ["thom@sfedb.com"] spec.summary = "JamJar generates ActiveRecord models for use in tests." spec.description = "JamJar dynamically creates SQLite-backed, in memory, ActiveRecord models to help you test your ActiveRecord extensions." spec.homepage = "https://github.com/thomasfedb/jamjar" spec.license = "MIT" spec.files = `git ls-files -z`.split("\x0") spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) } spec.test_files = spec.files.grep(%r{^(spec)/}) spec.require_paths = ["lib"] spec.required_ruby_version = ">= 1.9.2" spec.add_runtime_dependency "activerecord", ">= 3.2" spec.add_runtime_dependency "sqlite3", ">= 1.3.10" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
jamjar-1.2.0 | jamjar.gemspec |
jamjar-1.1.0 | jamjar.gemspec |
jamjar-1.0.0 | jamjar.gemspec |