Sha256: 500d7ad43e0fa2772977aeeb248526baec10fdf95f0bc3981829b896992f8e78

Contents?: true

Size: 767 Bytes

Versions: 5

Compression:

Stored size: 767 Bytes

Contents

lib = File.expand_path("../lib/", __FILE__)
$:.unshift lib unless $:.include?(lib)

require 'property_sets/version'

Gem::Specification.new "property_sets", PropertySets::VERSION do |s|
  s.summary     = "Property sets for ActiveRecord."
  s.description = "This gem is an ActiveRecord extension which provides a convenient interface for managing per row properties."
  s.authors  = ["Morten Primdahl"]
  s.email    = 'primdahl@me.com'
  s.homepage = 'http://github.com/zendesk/property_sets'
  s.license  = 'Apache License Version 2.0'

  s.add_runtime_dependency("activesupport", ">= 2.3.14", "< 3.3")
  s.add_runtime_dependency("activerecord", ">= 2.3.14", "< 3.3")
  s.add_runtime_dependency("json")

  s.files = `git ls-files`.split("\n")
  s.license = "MIT"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
property_sets-2.4.0 property_sets.gemspec
property_sets-2.3.0 property_sets.gemspec
property_sets-2.2.1 property_sets.gemspec
property_sets-2.2.0 property_sets.gemspec
property_sets-2.1.0 property_sets.gemspec