Sha256: 7206de5e7c80d4c50a15dae307b31c12919d6213ba44096a8526649ef7b2c4da

Contents?: true

Size: 1.13 KB

Versions: 1

Compression:

Stored size: 1.13 KB

Contents

# Author:: Mark Sonnabaum <mark.sonnabaum@acquia.com>
# Cookbook Name::  phpunit
# Recipe:: default
#
# Licensed 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.

include_recipe "php"

channels = %w{pear.phpunit.de components.ez.no pear.symfony.com pear.symfony-project.com}
channels.each do |chan|
  php_pear_channel chan do
    action [:discover, :update]
  end
end

php_pear "PEAR" do
  cur_version = `pear -V| head -1| awk -F': ' '{print $2}'`
  action :upgrade
  # This feels super ghetto. Open to improvements.
  not_if { Gem::Version.new(cur_version) > Gem::Version.new('1.9.0') }
end

php_pear "PHPUnit" do
  channel "phpunit"
  version "3.7.15"
  action :install
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
megalodon-0.1.0 cookbooks/phpunit/recipes/default.rb