Sha256: 8d55b7de66d0377fde4abc9a8a9ed85bde739470d2898a0f88c3ab8d04b5cff1
Contents?: true
Size: 1.35 KB
Versions: 1
Compression:
Stored size: 1.35 KB
Contents
# encoding: utf-8 $: << File.expand_path('../lib', __FILE__) require 'vkontakte_api/version' Gem::Specification.new do |s| s.name = 'vkontakte_api' s.version = VkontakteApi::VERSION s.authors = ['Vsevolod Romashov'] s.email = ['7@7vn.ru'] s.homepage = 'http://7even.github.com/vkontakte_api' s.summary = %q{Ruby-way wrapper for VKontakte API} s.description = %q{A transparent wrapper for API of vk.com social network called VKontakte. Supports ruby-way method naming (without any method lists inside), result typecasting and any faraday-supported http adapter of your choice (no hardcoded Net::HTTP).} 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.add_runtime_dependency 'faraday', '~> 0.8' s.add_runtime_dependency 'faraday_middleware', '~> 0.8' s.add_runtime_dependency 'faraday_middleware-parse_oj', '~> 0.1' s.add_runtime_dependency 'oauth2', '~> 0.8' s.add_runtime_dependency 'hashie', '~> 1.2' s.add_development_dependency 'rake' s.add_development_dependency 'rspec' s.add_development_dependency 'pry' s.add_development_dependency 'awesome_print' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
vkontakte_api-1.0.rc | vkontakte_api.gemspec |