Sha256: 977fe8eadf42c257f31f82b2eff8c06a58734475a47efd77b74e9529f66062b4

Contents?: true

Size: 1.07 KB

Versions: 3

Compression:

Stored size: 1.07 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 = "simple-layout"
  gem.homepage = "http://github.com/bighostkim/simple-layout"
  gem.license = "MIT"
  gem.summary = %Q{ Make layout ready for your application, so you don't have to }
  gem.description = %Q{This gotta be longer than summary. :). I will fill it out  }
  gem.email = "bighostkim@gmail.com"
  gem.authors = ["Allen Kim"]
  # dependencies defined in Gemfile
end
Jeweler::RubygemsDotOrgTasks.new

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

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

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
simple-layout-0.1.2 Rakefile
simple-layout-0.1.1 Rakefile
simple-layout-0.1.0 Rakefile