This repository was archived by the owner on Jul 7, 2021. It is now read-only.
forked from hanloong/string-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstring-utils.gemspec
More file actions
30 lines (26 loc) · 1.36 KB
/
string-utils.gemspec
File metadata and controls
30 lines (26 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{string-utils}
s.version = "0.2.0"
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
s.authors = ["Silvio Relli"]
s.date = %q{2011-01-23}
s.description = %q{This small extension enables string sanitization in models and controller. Provides also a function for making url friendly strings removing all unwanted characters.}
s.email = %q{silvio@relli.org}
s.extra_rdoc_files = ["CHANGELOG.rdoc", "README.rdoc", "lib/string-utils.rb"]
s.files = ["CHANGELOG.rdoc", "README.rdoc", "Rakefile", "lib/string-utils.rb", "string-utils.gemspec"]
s.homepage = %q{http://github.com/silviorelli/string-utils}
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "String-utils", "--main", "README.rdoc"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{string-utils}
s.rubygems_version = %q{1.3.7}
s.summary = %q{This small extension enables string sanitization in models and controller. Provides also a function for making url friendly strings removing all unwanted characters.}
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
else
end
else
end
end