Sha256: 2d0975d3b269ae95786ba3947f035eb570547c73de7150cdb2bb2218e94c7216

Contents?: true

Size: 1.06 KB

Versions: 5

Compression:

Stored size: 1.06 KB

Contents

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

Gem::Specification.new do |s|
  s.name        = 'tiny_sweeper'
  s.version     = TinySweeper::VERSION
  s.date        = Date.today.to_s

  s.summary     = "A tiny helper to clean your inputs"
  s.description = "
    Tiny Sweeper is a handy way to clean attributes on your Rails models,
    though it's independent of Rails, and can be used in any Ruby project.
    It gives you a light-weight way to override your methods and declare
    how their inputs should be cleaned.
  ".strip.gsub(/^\s*/, '')
  s.homepage    = 'https://github.com/ContinuityControl/tiny_sweeper'
  s.license     = 'ASL2'

  s.authors     = ["Dan Bernier"]
  s.email       = ['dbernier@continuity.net']

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

  s.add_development_dependency "bundler", "~> 1.5"
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
tiny_sweeper-0.0.5 tiny_sweeper.gemspec
tiny_sweeper-0.0.4 tiny_sweeper.gemspec
tiny_sweeper-0.0.3 tiny_sweeper.gemspec
tiny_sweeper-0.0.2 tiny_sweeper.gemspec
tiny_sweeper-0.0.1 tiny_sweeper.gemspec