Sha256: 0c6adeed832a2fd6c5cfe8c095fc655c00583c2e32963aeaeb0787108c535215

Contents?: true

Size: 1.64 KB

Versions: 13

Compression:

Stored size: 1.64 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 = "weather_fetcher"
  gem.homepage = "http://github.com/akwiatkowski/weather_fetcher"
  gem.license = "LGPLv3"
  gem.summary = %Q{Fetch weather from various Polish websites and via other gems}
  gem.description = %Q{Fetch weather from various Polish websites and via other gems. At the moment it is only polish portal Onet.pl but more providers will come soon.}
  gem.email = "bobikx@poczta.fm"
  gem.authors = ["Aleksander Kwiatkowski"]
  # dependencies defined in Gemfile

  gem.files = FileList[
    "[A-Z]*", "{bin,generators,lib,test}/**/*"
  ]
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'
require 'rdoc/task'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

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

desc "Run RSpec with code coverage"
task :coverage do
  `rake spec COVERAGE=true`
  #`open coverage/index.html`
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
weather_fetcher-0.0.14 Rakefile
weather_fetcher-0.0.13 Rakefile
weather_fetcher-0.0.12 Rakefile
weather_fetcher-0.0.11 Rakefile
weather_fetcher-0.0.10 Rakefile
weather_fetcher-0.0.9 Rakefile
weather_fetcher-0.0.8 Rakefile
weather_fetcher-0.0.7 Rakefile
weather_fetcher-0.0.6 Rakefile
weather_fetcher-0.0.5 Rakefile
weather_fetcher-0.0.4 Rakefile
weather_fetcher-0.0.3 Rakefile
weather_fetcher-0.0.2 Rakefile