the_moderator/the_moderator.gemspec

32 lines
1.3 KiB
Ruby
Raw Normal View History

2013-11-25 10:35:53 +01:00
# 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"]
2014-08-12 17:31:05 +02:00
spec.email = ["guillaume+github@dott.fr"]
2013-11-27 16:41:28 +01:00
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.}
2014-08-12 17:31:05 +02:00
spec.homepage = "https://github.com/gdott9/the_moderator"
2014-09-23 14:49:20 +02:00
spec.license = "MIT"
2013-11-25 10:35:53 +01:00
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"]
2024-12-19 16:36:53 +01:00
spec.add_dependency "activemodel", ">= 3.2.0", "< 9"
spec.add_dependency "activerecord", ">= 3.2.0", "< 9"
spec.add_dependency "activesupport", ">= 3.2.0", "< 9"
2021-07-09 11:34:09 +02:00
spec.add_development_dependency "bundler", "~> 2.2"
spec.add_development_dependency "rake", "~> 13.0"
2021-07-09 11:34:09 +02:00
spec.add_development_dependency "rspec", "~> 3.10"
spec.add_development_dependency "combustion", "~> 1.3"
2014-08-27 11:43:31 +02:00
spec.add_development_dependency "sqlite3", "~> 1.3"
2013-11-25 10:35:53 +01:00
end