Sha256: 396c560d5cb438ccfd105f644d797c9908d1e9c20f9bd7122a01770229544707
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.} 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.0", ">= 1.5.1" spec.add_development_dependency "rake", "~> 10.4", ">= 10.4.2" spec.add_development_dependency "guard-rspec", "~> 4.5" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
accent-buster-2.0.0 | accent-buster.gemspec |