File: Rakefile

package info (click to toggle)
ruby-ffi-rzmq 2.0.7-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 392 kB
  • sloc: ruby: 2,992; sh: 21; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 307 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
require 'bundler/gem_tasks'

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

task :default => :spec

task :console do
  require 'irb'
  require 'irb/completion'
  require 'ffi-rzmq'
  ARGV.clear
  IRB.start
end

task :pryconsole do
  require 'pry'
  require 'ffi-rzmq'
  ARGV.clear
  Pry.start
end