forked from wikiti/deepl-rb
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Rakefile
53 lines (43 loc) · 1.38 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
# frozen_string_literal: true
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 'juwelier'
Juwelier::Tasks.new do |gem|
gem.name = 'deepl-rb'
gem.homepage = 'https://github.com/DeepLcom/deepl-rb'
gem.license = 'MIT'
gem.summary = 'Official Ruby library for the DeepL language translation API.'
gem.description =
'Official Ruby library for the DeepL language translation API (v2). ' \
'For more information, check this: https://www.deepl.com/docs/api-reference.html'
gem.email = '[email protected]'
gem.authors = ['DeepL SE']
gem.metadata = {
'bug_tracker_uri' => 'https://github.com/DeepLcom/deepl-rb/issues',
'changelog_uri' => 'https://github.com/DeepLcom/deepl-rb/blob/main/CHANGELOG.md',
'documentation_uri' => 'https://github.com/DeepLcom/deepl-rb/blob/main/README.md',
'homepage_uri' => 'https://github.com/DeepLcom/deepl-rb'
}
gem.files.exclude '.github'
gem.files.exclude '.circleci'
end
Juwelier::RubygemsDotOrgTasks.new
# Tests
require 'rspec/core/rake_task'
require 'rubocop/rake_task'
RuboCop::RakeTask.new
RSpec::Core::RakeTask.new(:spec)
desc 'Run all tests.'
task :test do
Rake::Task['spec'].invoke
Rake::Task['rubocop'].invoke
end
task default: :test