mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-23 15:48:43 -05:00
fb25985b91
This is a bit weird with the Rakefiles but makes it consistent. Found with rpmlint.
7 lines
163 B
Ruby
Executable file
7 lines
163 B
Ruby
Executable file
#!/usr/bin/env rake
|
|
require "bundler/gem_tasks"
|
|
require "rspec/core/rake_task"
|
|
|
|
RSpec::Core::RakeTask.new(:test) do |spec|
|
|
spec.pattern = 'spec/*_spec.rb'
|
|
end
|