Skip to content
This repository has been archived by the owner on Nov 27, 2022. It is now read-only.

Commit

Permalink
Fixed: assets pipeline refs #856
Browse files Browse the repository at this point in the history
  • Loading branch information
mallowlabs committed Aug 23, 2012
1 parent 18a424a commit 0841369
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,19 @@

require File.expand_path('../config/application', __FILE__)
require 'rake'
require 'ci/reporter/rake/rspec'
require 'rspec/core/rake_task'

include Rake::DSL
AsakusaSatellite::Application.load_tasks

namespace :plugins do
RSpec::Core::RakeTask.new(:spec) do|t|
t.pattern = "./vendor/plugins/as_*/spec/**/*_spec.rb"
if %(development test).include?(Rails.env)
require 'rspec/core'
require 'rspec/core/rake_task'
require 'ci/reporter/rake/rspec'

namespace :plugins do
RSpec::Core::RakeTask.new(:spec) do|t|
t.pattern = "./vendor/plugins/as_*/spec/**/*_spec.rb"
end
end
end

0 comments on commit 0841369

Please sign in to comment.