-
Notifications
You must be signed in to change notification settings - Fork 1
/
yandex_disk.gemspec
23 lines (22 loc) · 1.07 KB
/
yandex_disk.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'yandex_disk/cfg'
Gem::Specification.new do |s|
s.name = 'yandex_disk'
s.version = YandexDisk::VERSION
s.summary = 'API for Yandex Disk'
s.description = 'An easy-to-use client library for Yandex Disk API written in pure ruby.'
s.author = 'Boris Murga'
s.email = 'denwwer.c4@gmail.com'
s.files = Dir.glob("lib/**/*")
s.test_files = Dir.glob('spec/**/*')
s.require_path = 'lib'
s.required_ruby_version = '>= 1.9.3'
s.add_development_dependency 'rspec', '~> 0'
s.add_development_dependency 'simplecov', '~> 0'
s.add_development_dependency 'codeclimate-test-reporter', '~> 0'
s.add_development_dependency 'fastimage', '~> 0'
s.post_install_message = "Thanks for installation, check #{YandexDisk::HOME_PAGE} for news."
s.homepage = YandexDisk::HOME_PAGE
s.license = 'MIT'
end