Sha256: 73b5c714571f1533ecf31d3a5879599bf8d9ad638f44191bd7c1c603fd3346cd

Contents?: true

Size: 1.63 KB

Versions: 12

Compression:

Stored size: 1.63 KB

Contents

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 = "rasem"
  gem.homepage = "http://github.com/aseldawy/rasem"
  gem.license = "MIT"
  gem.summary = %Q{A gem to generate images from ruby files}
  gem.description = <<-DESCRIPTION
  This gem allows you to describe your images using ruby code.
  You can use rasem to draw complex images using small portions of ruby code
  DESCRIPTION
  gem.email = "eldawy@cs.umn.edu"
  gem.authors = ["Ahmed Eldawy"]
  # Include your dependencies below. Runtime dependencies are required when using your gem,
  # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
  #  gem.add_runtime_dependency 'jabber4r', '> 0.1'
  #  gem.add_development_dependency 'rspec', '> 1.2.3'
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 = "rasem #{version}"
  rdoc.rdoc_files.include('README*')
  rdoc.rdoc_files.include('lib/**/*.rb')
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
rasem-0.6.1 Rakefile
rasem-0.6.0 Rakefile
rasem-0.5.6 Rakefile
rasem-0.5.3 Rakefile
rasem-0.5.2 Rakefile
rasem-0.5.1 Rakefile
rasem-0.4.0 Rakefile
rasem-0.3.0 Rakefile
rasem-0.2.0 Rakefile
rasem-0.1.1 Rakefile
rasem-0.1.0 Rakefile
rasem-0.0.0 Rakefile