-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmorpher_inflect.gemspec
More file actions
27 lines (22 loc) · 1.05 KB
/
morpher_inflect.gemspec
File metadata and controls
27 lines (22 loc) · 1.05 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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "morpher_inflect/version"
Gem::Specification.new do |s|
s.name = "morpher_inflect"
s.version = MorpherInflect::VERSION
s.authors = ["Alexey Trofimenko", "Yaroslav Markin"]
s.email = ["codesnik@gmail.com"]
s.homepage = "http://github.com/codesnik/morpher_inflect/"
s.summary = "Morpher.ru webservice client (Russian language inflection)"
s.description = "Morpher.ru inflections for russian proper and common nouns. Code based on yandex_inflect gem by Yaroslav Markin"
s.rubyforge_project = "morpher_inflect"
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"]
s.has_rdoc = true
s.extra_rdoc_files = ["README.rdoc", "LICENSE", 'TODO', 'CHANGELOG']
s.add_dependency "httparty"
s.add_development_dependency "rspec", '2.6'
s.add_development_dependency "rake"
end