-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstring_comparision.gemspec
22 lines (19 loc) · 1.09 KB
/
string_comparision.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "string_comparision/version"
Gem::Specification.new do |s|
s.name = "string_comparision"
s.version = StringComparision::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Chandra Mohan Thakur"]
s.email = ["chandra.thakur@sprout-technology.com"]
s.homepage = "http://www.cmthakur.co.cc"
s.summary = %q{string comparision gem provides you the facility of comparision between two string and returns how much % the string is matched.
Similiarly it provides the quality test for a obtained hash and expected hash.}
s.description = %q{Quality control is the main theme of this gem. It cam be implied where there is two hash one is what you expect and one is what you got}
s.rubyforge_project = "string_comparision"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end