Sha256: 485ebadd72fbfecc5004ca7122197efe681a3e498a641417f59e446ff541f60c

Contents?: true

Size: 1.03 KB

Versions: 3

Compression:

Stored size: 1.03 KB

Contents

require_relative 'lib/json_attributes/version'

Gem::Specification.new do |spec|
  spec.name          = 'json_attributes'
  spec.version       = JsonAttributes::VERSION
  spec.authors       = ['Joel AZEMAR']
  spec.email         = ['joel.azemar@gmail.com']

  spec.summary       = %q{Allow to use postgres json field in a totally transparently manner}
  spec.description   = %q{Allow to use postgres json field in a totally transparently manner with ActiveRecord}
  spec.homepage      = 'https://github.com/joel/json_attributes'
  spec.license       = 'MIT'

  spec.files         = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  spec.bindir        = 'exe'
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ['lib']

  spec.add_dependency 'activerecord',  '~> 4.2'
  spec.add_dependency 'activesupport', '~> 4.2'

  spec.add_development_dependency 'bundler', '~> 1.10'
  spec.add_development_dependency 'rake',    '~> 10.0'
  spec.add_development_dependency 'rspec'
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
json_attributes-0.1.2 json_attributes.gemspec
json_attributes-0.1.1 json_attributes.gemspec
json_attributes-0.1.0 json_attributes.gemspec