Sha256: e82013caaa265ab185f2aad4686dbc0f3470d32d2f33bd37efdeb04b2bab1be3

Contents?: true

Size: 1.31 KB

Versions: 41

Compression:

Stored size: 1.31 KB

Contents

# encoding: utf-8

require 'rubygems'
require 'bundler'
begin
  Bundler.setup(:default, :development)
rescue Bundler::BundlerError => e
  $stderr.puts e.message
  $stderr.puts "Run `bundle install` to install missing gems"
  exit e.status_code
end
require 'rake'

require 'jeweler'
Jeweler::Tasks.new do |gem|
  # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
  gem.name = "openall_time_applet"
  gem.homepage = "http://github.com/kaspernj/openall_time_applet"
  gem.license = "MIT"
  gem.summary = %Q{Time-tracking for OpenAll.}
  gem.description = %Q{Off-line time-tracking for OpenAll with syncing when online.}
  gem.email = "k@spernj.org"
  gem.authors = ["Kasper Johansen"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rspec/core'
require 'rspec/core/rake_task'
RSpec::Core::RakeTask.new(:spec) do |spec|
  spec.pattern = FileList['spec/**/*_spec.rb']
end

RSpec::Core::RakeTask.new(:rcov) do |spec|
  spec.pattern = 'spec/**/*_spec.rb'
  spec.rcov = true
end

task :default => :spec

require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = "openall_time_applet #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

41 entries across 41 versions & 1 rubygems

Version Path
openall_time_applet-0.0.45 Rakefile
openall_time_applet-0.0.44 Rakefile
openall_time_applet-0.0.43 Rakefile
openall_time_applet-0.0.42 Rakefile
openall_time_applet-0.0.41 Rakefile
openall_time_applet-0.0.40 Rakefile
openall_time_applet-0.0.38 Rakefile
openall_time_applet-0.0.37 Rakefile
openall_time_applet-0.0.36 Rakefile
openall_time_applet-0.0.35 Rakefile
openall_time_applet-0.0.34 Rakefile
openall_time_applet-0.0.33 Rakefile
openall_time_applet-0.0.32 Rakefile
openall_time_applet-0.0.31 Rakefile
openall_time_applet-0.0.30 Rakefile
openall_time_applet-0.0.29 Rakefile
openall_time_applet-0.0.28 Rakefile
openall_time_applet-0.0.27 Rakefile
openall_time_applet-0.0.26 Rakefile
openall_time_applet-0.0.25 Rakefile