diff options
| author | Darryl L. Pierce <mcpierce@apache.org> | 2013-03-20 17:20:34 +0000 |
|---|---|---|
| committer | Darryl L. Pierce <mcpierce@apache.org> | 2013-03-20 17:20:34 +0000 |
| commit | bef7da03ea1cacc98ae33e28f09b48fa9335204b (patch) | |
| tree | 02feae405afe9ed2f1f11b1025649e04f517c042 /qpid/tools/src/ruby/qpid_management/Rakefile | |
| parent | ca84abd2a227eb09d483c66b8a3dcf7211484ee7 (diff) | |
| download | qpid-python-bef7da03ea1cacc98ae33e28f09b48fa9335204b.tar.gz | |
QPID-4644: Provides a Ruby version of qpidtoollibs
Contributed by: Andrew Goldstein <agoldste@redhat.com>
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1458961 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/tools/src/ruby/qpid_management/Rakefile')
| -rw-r--r-- | qpid/tools/src/ruby/qpid_management/Rakefile | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/qpid/tools/src/ruby/qpid_management/Rakefile b/qpid/tools/src/ruby/qpid_management/Rakefile new file mode 100644 index 0000000000..7f295eda5c --- /dev/null +++ b/qpid/tools/src/ruby/qpid_management/Rakefile @@ -0,0 +1,27 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you under the Apache License, Version 2.0 (the +# "License"); you may not use this file except in compliance +# with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, +# software distributed under the License is distributed on an +# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# KIND, either express or implied. See the License for the +# specific language governing permissions and limitations +# under the License. +# + +require "bundler/gem_tasks" +require 'rspec/core/rake_task' + +require 'rake/clean' +CLOBBER.include('pkg') + +RSpec::Core::RakeTask.new('spec') + |
