forked from actie/fnsapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fnsapi.gemspec
34 lines (27 loc) · 1.2 KB
/
fnsapi.gemspec
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
31
32
33
34
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'fnsapi/version'
Gem::Specification.new do |spec|
spec.name = 'fnsapi'
spec.version = Fnsapi::VERSION
spec.authors = ['Fedor Koshel']
spec.email = ['alexsnaumov@gmail.com']
spec.summary = %(Ruby implementation for Russian FNS api)
spec.description = %(If you got approved for wirking with Russian FNS API, this gem will help you.)
spec.homepage = 'https://github.com/actie/fnsapi'
spec.license = 'MIT'
if spec.respond_to?(:metadata)
spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/actie/fnsapi'
spec.metadata['changelog_uri'] = 'https://github.com/actie/fnsapi/CHANGELOG.md'
else
raise 'RubyGems 2.0 or newer is required to protect against public gem pushes.'
end
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^spec/}) }
spec.require_paths = ['lib']
spec.add_runtime_dependency 'savon'
spec.add_development_dependency 'bundler'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'rspec'
end