Sha256: 425e73b23c47f0a21be76ceb26b7eaf64c27e0a0cc792783515c4302dc899aeb
Contents?: true
Size: 994 Bytes
Versions: 1
Compression:
Stored size: 994 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 'rspec/core' require 'rspec/core/rake_task' desc 'Default: run rspec for all' task :default => :spec desc "Run the code examples" RSpec::Core::RakeTask.new(:spec ) do |t| t.pattern = "./spec/**/*_spec.rb" 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 gemspec.add_dependency "rails", "~> 3.1.0" end rescue LoadError puts "Jeweler not available. Install it with: gem install jeweler" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
themes_for_rails-1.0.0rc1 | Rakefile |