-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathyandex-api.gemspec
More file actions
21 lines (18 loc) · 817 Bytes
/
yandex-api.gemspec
File metadata and controls
21 lines (18 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/yandex-api/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ['Evgeniy Shurmin']
gem.email = ['eshurmin@gmail.com']
gem.description = %q{Yandex.API integration}
gem.summary = %q{Yandex.API integration}
gem.homepage = 'https://github.com/jpascal/yandex-api'
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = 'yandex-api'
gem.require_paths = ['lib']
gem.version = Yandex::API::VERSION
gem.add_development_dependency 'bundler', '~> 1.7'
gem.add_development_dependency 'rake', '~> 10.0'
gem.add_development_dependency 'rspec'
end