Sha256: a84af20989eb27bba1940bef13952f8cdfdf6a38780397412a214a54a13d220c

Contents?: true

Size: 1 KB

Versions: 13

Compression:

Stored size: 1 KB

Contents

require 'rubygems'
require 'rcov/rcovtask'
require "spec"
require "spec/rake/spectask"
require File.join(File.dirname(__FILE__), *%w[lib sms_notify version])

begin
	require 'jeweler'

	Jeweler::Tasks.new do |gemspec|
		gemspec.name = "cdyne-sms-notify"
    gemspec.summary = "Ruby interface to the CDYNE SMSNotify! service."
    gemspec.email = "gems@skiblerspot.net"
    gemspec.rubyforge_project = 'cdyne-sms-notify'
    gemspec.homepage = "http://github.com/badreligion/cdyne-sms-notify"
    gemspec.authors = ["Sean Kibler"]
    gemspec.extra_rdoc_files = %w{History.txt License.txt README.rdoc}
    gemspec.has_rdoc = true
    gemspec.version = SmsNotify::Version
	end
  
  Jeweler::GemcutterTasks.new
rescue LoadError
	puts "Jeweler not found, it can be installed with the following command:\n\ngem install jeweler"
end

task :default => :spec

Spec::Rake::SpecTask.new('spec:rcov') do |t|
	t.spec_files = FileList['spec/**/*.rb']
	t.rcov = true
	#t.rcov_opts = ['--exclude', '']
end

task :doc do
	system("rdoc")
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
cdyne-sms-notify-1.0.4 Rakefile
cdyne-sms-notify-1.0.3 Rakefile
cdyne-sms-notify-1.0.2 Rakefile
cdyne-sms-notify-1.0.1 Rakefile
cdyne-sms-notify-1.0.0 Rakefile
cdyne-sms-notify-0.10.1 Rakefile
cdyne-sms-notify-0.10.0 Rakefile
cdyne-sms-notify-0.9.6 Rakefile
cdyne-sms-notify-0.8.5 Rakefile
cdyne-sms-notify-0.8.4 Rakefile
cdyne-sms-notify-0.8.3 Rakefile
cdyne-sms-notify-0.8.1 Rakefile
cdyne-sms-notify-0.8.0 Rakefile