Sha256: 2ef6516876e34dd6eca81187afc279e931407d1af17c29730a3665f937a40e0b

Contents?: true

Size: 1.01 KB

Versions: 5

Compression:

Stored size: 1.01 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 = "padrino-localization"
  gem.homepage = "http://github.com/kot-begemot/padrino-localization"
  gem.license = "MIT"
  gem.summary = %Q{Padrino localization Gem}
  gem.description = %Q{This gem allows you to localalize your padrino application with ease}
  gem.email = "max@studentify.nl"
  gem.authors = ["kot-begemot"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
  test.libs << 'lib' << 'test'
  test.pattern = 'test/**/*_test.rb'
  test.verbose = true
end

task :default => :test

require 'yard'
YARD::Rake::YardocTask.new

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
padrino-localization-0.2.0 Rakefile
padrino-localization-0.1.3 Rakefile
padrino-localization-0.1.2 Rakefile
padrino-localization-0.1.1 Rakefile
padrino-localization-0.1.0 Rakefile