Sha256: 3994b3fc378bd624cb0cc849e806fce786b55685adc8afe168d6ce1cbb048b1f

Contents?: true

Size: 841 Bytes

Versions: 1

Compression:

Stored size: 841 Bytes

Contents

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

Gem::Specification.new do |gem|
  gem.name          = 'persisted'
  gem.version       = Persisted::VERSION
  gem.authors       = ['Derek Lindahl']
  gem.email         = ['dlindahl@customink.com']
  gem.description   = 'Persists Ruby Objects with an ActiveRecord model'
  gem.summary       = gem.description
  gem.homepage      = 'https://github.com/dlindahl/persisted'

  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 'activesupport', '~> 3.2'
  gem.add_dependency 'activerecord',  '~> 3.2'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
persisted-0.0.1 persisted.gemspec