File: Rakefile

package info (click to toggle)
ruby-arbre 1.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 440 kB
  • sloc: ruby: 1,716; makefile: 7
file content (23 lines) | stat: -rw-r--r-- 358 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# frozen_string_literal: true
require 'bundler'
Bundler::GemHelper.install_tasks

import "tasks/gemfiles.rake"

require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec)

import 'tasks/lint.rake'

task default: [:spec, :lint]

task :console do
  require 'irb'
  require 'irb/completion'

  require 'pry'
  require 'arbre'

  ARGV.clear
  IRB.start
end