File: Rakefile

package info (click to toggle)
ruby-influxdb 0.8.1-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 424 kB
  • sloc: ruby: 3,530; sh: 61; makefile: 7
file content (46 lines) | stat: -rw-r--r-- 1,004 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
require "rake/testtask"
require "bundler/gem_tasks"
require "rubocop/rake_task"

RuboCop::RakeTask.new

targeted_files = ARGV.drop(1)
file_pattern   = targeted_files.empty? ? "spec/**/*_spec.rb" : targeted_files

require "rspec/core"
require "rspec/core/rake_task"

RSpec::Core::RakeTask.new(:spec) do |t|
  t.pattern = FileList[file_pattern]
end

if ENV.key?("CI")
  task default: %i[spec]
else
  task default: %i[spec rubocop]
end

task :console do
  lib = File.expand_path("lib", __dir__)
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
  require "influxdb"

  begin
    require "pry-byebug"
    Pry.start
  rescue LoadError
    puts \
      "Could not load pry-byebug. Create a file Gemfile.local with",
      "the following line, if you want to get rid of this message:",
      "",
      "\tgem \"pry-byebug\"",
      "",
      "(don't forget to run bundle afterwards). Falling back to IRB.",
      ""

    require "irb"
    require "irb/completion"
    ARGV.clear
    IRB.start
  end
end