Sha256: 73d2c82409b007f39064c526d2ca04e2d015b08c1df4381632d46ef7f4f59e6c
Contents?: true
Size: 1.31 KB
Versions: 1
Compression:
Stored size: 1.31 KB
Contents
# coding: utf-8 lib = File.expand_path('../lib', __FILE__) $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib) require 'accent-buster/version' Gem::Specification.new do |spec| spec.name = "accent-buster" spec.version = AccentBuster::VERSION spec.authors = ["Ronie Uliana"] spec.email = ["ronie.uliana@gmail.com"] spec.description = %q{Add "String#accent_buster" that replaces diacritics marks by their non-diacritic equivalents.} spec.summary = %q{Add "String#accent_buster" that replaces diacritics marks by their non-diacritic equivalents. I made it because I don't want to add "ActiveSupport" to the projects everytime I need that (also, I'm too lazy to type the same thing all the time). This lib will have NO MORE than the very strictly necessary to replace diacritics, currently, it has 2 methods: "String#accent_buster" and "String#accent_buster!" (note the bang).} spec.homepage = "http://github.com/ruliana/accent-buster" 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_development_dependency "bundler", "~> 1.3" spec.add_development_dependency "rake" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
accent-buster-0.9.0 | accent-buster.gemspec |