10 lines
280 B
Ruby
Executable file
10 lines
280 B
Ruby
Executable file
#!/usr/bin/env ruby
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
begin
|
|
load File.expand_path('spring', __dir__)
|
|
rescue LoadError => e
|
|
raise unless e.message.include?('spring')
|
|
end
|
|
require 'bundler/setup'
|
|
load Gem.bin_path('rspec-core', 'rspec')
|