Sha256: 451dbfdb8b177d727d98a00ba28ffff5bafdbb71169a70c497f9566dcb3601c4

Contents?: true

Size: 1.32 KB

Versions: 1

Compression:

Stored size: 1.32 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "the_moderator"
  spec.version       = TheModerator::VERSION
  spec.authors       = ["Guillaume DOTT"]
  spec.email         = ["guillaume+github@dott.fr"]
  spec.description   = %q{Moderate fields of a model or its associations}
  spec.summary       = %q{Moderate fields before their insertion in the database by serializing and saving them into a separate 'moderations' table.}
  spec.homepage      = "https://github.com/gdott9/the_moderator"
  spec.license       = "MIT"

  spec.files         = `git ls-files`.split($/)
  spec.executables   = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
  spec.test_files    = spec.files.grep(%r{^(test|spec|features)/})
  spec.require_paths = ["lib"]

  spec.add_dependency "activemodel", ">= 3.2.0", "< 5.3"
  spec.add_dependency "activerecord", ">= 3.2.0", "< 5.3"
  spec.add_dependency "activesupport", ">= 3.2.0", "< 5.3"

  spec.add_development_dependency "bundler", "~> 1.3"
  spec.add_development_dependency "rake", "~> 10.3"

  spec.add_development_dependency "rspec", "~> 2.14"
  spec.add_development_dependency "combustion", "~> 0.5"
  spec.add_development_dependency "sqlite3", "~> 1.3"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
the_moderator-0.1.3 the_moderator.gemspec