-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathRakefile
More file actions
26 lines (24 loc) · 688 Bytes
/
Rakefile
File metadata and controls
26 lines (24 loc) · 688 Bytes
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
# encoding: utf-8
require 'rubygems'
require 'bundler'
begin
Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
$stderr.puts e.message
$stderr.puts "Run `bundle install` to install missing gems"
exit e.status_code
end
require 'rake'
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "vk-ruby"
gem.homepage = "http://github.com/zinenko/vk-ruby"
gem.license = "MIT"
gem.summary = %Q{ Ruby wrapper for vk.com API }
gem.description = %Q{ Ruby wrapper for vk.com API }
gem.email = "zinenkoan@gmail.com"
gem.authors = ["Andrew Zinenko"]
gem.files.include 'lib/**/*'
gem.add_runtime_dependency 'transformer'
end
Jeweler::GemcutterTasks.new