Sha256: 80dc870114faa2162283ea1b1cf13dd0ec91cb688e938f0b1d64fe0988cf60bd

Contents?: true

Size: 990 Bytes

Versions: 8

Compression:

Stored size: 990 Bytes

Contents

# require File.join(File.dirname(__FILE__), 'lib', 'themes_for_rails')
require File.dirname(__FILE__) + "/lib/themes_for_rails/version.rb"

require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'

desc 'Default: run tests for all ORMs.'
task :default => :test

desc 'Run unit tests.'
Rake::TestTask.new(:test) do |t|
  t.libs << 'lib'
  t.libs << 'test'
  t.pattern = 'test/**/*_test.rb'
  t.verbose = true
end

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = "themes_for_rails"
    gemspec.summary = "Themes support for rails (3)"
    gemspec.description = "It allows an application to have many different ways of rendering static assets and dynamic views. "
    gemspec.email = "lucasefe@gmail.com"
    gemspec.homepage = "http://github.com/lucasefe/themes_for_rails"
    gemspec.authors = ["Lucas Florio"]
    gemspec.version = ThemesForRails::VERSION
  end
rescue LoadError
  puts "Jeweler not available. Install it with: gem install jeweler"
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
themes_for_rails-0.4.1 Rakefile
themes_for_rails-0.4.0 Rakefile
themes_for_rails-0.3.1 Rakefile
themes_for_rails-0.3.0 Rakefile
themes_for_rails-0.2.5 Rakefile
themes_for_rails-0.2.4 Rakefile
themes_for_rails-0.2.2 Rakefile
themes_for_rails-0.2.1 Rakefile