Sha256: 39fccd2acce315f53adf5c210fb5f1a3375849e3498aa11d467f95cf315e7527

Contents?: true

Size: 1.05 KB

Versions: 5

Compression:

Stored size: 1.05 KB

Contents

require 'rake'
require 'spec/rake/spectask'

desc 'Default: run specs.'
task :default => :spec

desc 'Run the specs'
Spec::Rake::SpecTask.new(:spec) do |t|
  t.spec_opts = ['--colour --format progress --loadby mtime --reverse']
  t.spec_files = FileList['spec/**/*_spec.rb']
end

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gemspec|
    gemspec.name = "subdomain-fu"
    gemspec.summary = "SubdomainFu is a Rails plugin that provides subdomain routing and URL writing helpers."
    gemspec.email = "michael@intridea.com"
    gemspec.homepage = "http://github.com/mbleigh/subdomain-fu"
    gemspec.files =  FileList["[A-Z]*", "{lib,spec,rails}/**/*"] - FileList["**/*.log"]
    gemspec.description = "SubdomainFu is a Rails plugin to provide all of the basic functionality necessary to handle multiple subdomain applications (such as Basecamp-esque subdomain accounts and more)."
    gemspec.authors = ["Michael Bleigh"]
  end
rescue LoadError
  puts "Jeweler not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
end

Version data entries

5 entries across 5 versions & 3 rubygems

Version Path
mbleigh-subdomain-fu-0.1.0 Rakefile
mbleigh-subdomain-fu-0.3.0 Rakefile
pboling-subdomain-fu-0.2.1 Rakefile
pboling-subdomain-fu-0.3.0 Rakefile
subdomain-fu-0.4.0 Rakefile