Sha256: 651650716fa3a3397b5d4faa0b15f68e9b21b3fa3b8599a186f43524f469b9f4

Contents?: true

Size: 814 Bytes

Versions: 6

Compression:

Stored size: 814 Bytes

Contents

# Look in the tasks/setup.rb file for the various options that can be
# configured in this Rakefile. The .rake files in the tasks directory
# are where the options are used.

load 'tasks/setup.rb'

ensure_in_path 'lib'
require 'pingfm'

task :default => 'spec:run'

PROJ.name = 'pingfm'
PROJ.authors = ['Krunoslav Husak', 'Dale Campbell', 'Kevin Williams']
PROJ.email = ['dale@save-state.net', 'kevwil@gmail.com']
PROJ.url = 'http://pingfm.rubyforge.org/'
PROJ.version = ENV['VERSION'] || Pingfm.version
PROJ.rubyforge.name = 'pingfm'
PROJ.readme_file = 'README'

PROJ.spec.opts << '--color'

namespace :gem do
  desc 'create a gemspec file to support github gems'
  task :gemspec => 'gem:prereqs' do
    File.open("#{PROJ.name}.gemspec", 'w+') do |f|
      f.write PROJ.gem._spec.to_ruby
    end
  end
end

# EOF

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
Oshuma-pingfm-1.0.0 Rakefile
Oshuma-pingfm-1.0.1 Rakefile
Oshuma-pingfm-1.0.2 Rakefile
pingfm-1.0.0 Rakefile
pingfm-1.0.1 Rakefile
pingfm-1.0.2 Rakefile