This repository has been archived by the owner on Mar 21, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathRakefile
52 lines (47 loc) · 1.6 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
require 'rubygems'
require 'bundler'
begin
Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
warn e.message
warn 'Run `bundle install` to install missing gems'
exit e.status_code
end
require 'rake'
require 'jeweler'
require_relative 'lib/version'
Jeweler::Tasks.new do |gem|
# gem is a Gem::Specification... see
# http://guides.rubygems.org/specification-reference/ for more options
gem.name = 'algoliasearch-jekyll'
gem.version = AlgoliaSearchJekyllVersion.to_s
gem.homepage = 'https://github.com/algolia/algoliasearch-jekyll'
gem.license = 'MIT'
gem.summary = '[⚠ DEPRECATED ⚠]: Use jekyll-algolia instead'.freeze
gem.description = '[⚠ DEPRECATED ⚠]: Use jekyll-algolia instead'.freeze
gem.email = '[email protected]'
gem.authors = ['Tim Carry']
gem.post_install_message = <<-MESSAGE
! The 'algolisearch-jekyll' gem has been deprecated and has been replaced with 'jekyll-algolia'.
! See: https://rubygems.org/gems/jekyll-algolia
! And: https://github.com/algolia/jekyll-algolia
!
! You can get quickly started on the new plugin using this documentation:
! https://community.algolia.com/jekyll-algolia/getting-started.html
MESSAGE
# dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new
require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
spec.rspec_opts = '--color --format documentation'
spec.pattern = FileList['spec/**/*_spec.rb']
end
task test: :spec
desc 'Code coverage detail'
task :coverage do
ENV['COVERAGE'] = 'true'
Rake::Task['spec'].execute
end
task default: :test