-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
105 lines (97 loc) · 3.04 KB
/
Rakefile
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# require 'rubygems'
# require 'rake'
#
# begin
# require 'jeweler'
# Jeweler::Tasks.new do |gem|
# gem.name = "oa-mailru_alexandrov"
# gem.summary = %Q{OmniAuth extension for mail.ru authentication}
# gem.description = %Q{OmniAuth extension for mail.ru authentication}
# gem.email = "igor.alexandrov@gmail.com"
# gem.homepage = "http://github.com/igor-alexandrov/oa-mailru"
# gem.authors = ["Igor Alexandrov", "Alexander Gorkunov"]
# # gem.rubyforge_project = "oa-mailru"
# gem.add_dependency 'omniauth', '>=0.2.0.beta4'
# gem.add_development_dependency "rspec", ">= 1.2.9"
# gem.add_development_dependency "yard", ">= 0"
# # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
# end
# Jeweler::GemcutterTasks.new
# Jeweler::RubyforgeTasks.new do |rubyforge|
# rubyforge.doc_task = "yardoc"
# end
# rescue LoadError
# puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
# end
#
# require 'spec/rake/spectask'
# Spec::Rake::SpecTask.new(:spec) do |spec|
# spec.libs << 'lib' << 'spec'
# spec.spec_files = FileList['spec/**/*_spec.rb']
# end
#
# Spec::Rake::SpecTask.new(:rcov) do |spec|
# spec.libs << 'lib' << 'spec'
# spec.pattern = 'spec/**/*_spec.rb'
# spec.rcov = true
# end
#
# task :spec => :check_dependencies
#
# task :default => :spec
#
# begin
# require 'yard'
# YARD::Rake::YardocTask.new
# rescue LoadError
# task :yardoc do
# abort "YARD is not available. In order to run yardoc, you must: sudo gem install yard"
# end
# end
# 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 = "oa-mailru_alexandrov"
gem.summary = %Q{OmniAuth extension for mail.ru authentication}
gem.description = %Q{OmniAuth extension for mail.ru authentication}
gem.email = "igor.alexandrov@gmail.com"
gem.homepage = "http://github.com/igor-alexandrov/oa-mailru"
gem.authors = ["Igor Alexandrov", "Alexander Gorkunov"]
# gem.rubyforge_project = "oa-mailru"
gem.add_dependency 'omniauth', '>=0.2.0.beta4'
gem.add_development_dependency "rspec", ">= 1.2.9"
gem.add_development_dependency "yard", ">= 0"
end
Jeweler::RubygemsDotOrgTasks.new
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
test.libs << 'lib' << 'test'
test.pattern = 'test/**/test_*.rb'
test.verbose = true
end
require 'rcov/rcovtask'
Rcov::RcovTask.new do |test|
test.libs << 'test'
test.pattern = 'test/**/test_*.rb'
test.verbose = true
test.rcov_opts << '--exclude "gems/*"'
end
task :default => :test
require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ""
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "oa-mailru_alexandrov #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end