Sha256: 6ee8733d951693b1a3b3294d0721d15f61222a3e89d6890ea157c28ae852b2ae

Contents?: true

Size: 1.33 KB

Versions: 18

Compression:

Stored size: 1.33 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 = "will-paginate-i18n"
  gem.homepage = "http://github.com/tigrish/will-paginate-i18n"
  gem.license = "MIT"
  gem.summary = %Q{Translations for the will_paginate gem}
  gem.description = %Q{Translations for the will_paginate gem}
  gem.email = "chris@tigrish.com"
  gem.authors = ["Christopher Dell"]
  # 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 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
  version = File.exist?('VERSION') ? File.read('VERSION') : ""

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

require 'i18n-spec/tasks'

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
will-paginate-i18n-0.1.15 Rakefile
will-paginate-i18n-0.1.13 Rakefile
will-paginate-i18n-0.1.12 Rakefile
will-paginate-i18n-0.1.11 Rakefile
will-paginate-i18n-0.1.10 Rakefile
will-paginate-i18n-0.1.9 Rakefile
will-paginate-i18n-0.1.8 Rakefile
will-paginate-i18n-0.1.7 Rakefile
will-paginate-i18n-0.1.6 Rakefile
will-paginate-i18n-0.1.5 Rakefile
will-paginate-i18n-0.1.4 Rakefile
will-paginate-i18n-0.1.3 Rakefile
will-paginate-i18n-0.1.2 Rakefile
will-paginate-i18n-0.1.1 Rakefile
will-paginate-i18n-0.1.0 Rakefile
will-paginate-i18n-0.0.9 Rakefile
will-paginate-i18n-0.0.8 Rakefile
will-paginate-i18n-0.0.7 Rakefile