public
Description: Ping.fm Ruby Library
Homepage: http://pingfm.rubyforge.org/
Clone URL: git://github.com/Oshuma/pingfm.git
Click here to lend your support to: pingfm and make a donation at www.pledgie.com !
Dale Campbell (author)
Wed Jun 10 14:53:47 -0700 2009
commit  b3fe2b9b422fe3cf4fa357ef63eb760451140c9b
tree    9753c2c1854cce2d1a48a5da63a0ecdce0e92088
parent  d3f7d0766c468dce64169000e33f63ddd1f6bea3
pingfm / Rakefile
100644 32 lines (24 sloc) 0.814 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# 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