Sha256: 2e519580308f5c7dd44bd22d2dbf2e1323094c7eff1a9d7cb93976f8efcd7398

Contents?: true

Size: 1.09 KB

Versions: 7

Compression:

Stored size: 1.09 KB

Contents

require "rubygems"
require 'spec/rake/spectask'

require File.dirname(__FILE__) + '/lib/staticmatic'

begin
  require 'jeweler'
  Jeweler::Tasks.new do |gem|
    gem.name = "staticmatic"
    gem.executables = "staticmatic"
    gem.summary = "Lightweight Static Site Framework"
    gem.email = "steve@curve21.com"
    gem.homepage = "http://staticmatic.net"
    gem.description = "Lightweight Static Site Framework"
    gem.authors = ["Stephen Bartholomew"]
    gem.rubyforge_project = "staticmatic"
    
    gem.files =  FileList["[A-Z]*", "{bin,lib,spec}/**/*"]
    
    gem.add_dependency("haml", ">=2.0.0")
    gem.add_dependency("rack", ">=1.0")
    gem.add_dependency("mongrel", ">=1.1.5")
    gem.add_dependency("compass")
  end
rescue LoadError
  puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gemgem.github.com"
end

Spec::Rake::SpecTask.new(:spec) do |spec|
  spec.libs << 'lib' << 'spec'
  spec.spec_files = FileList['spec/**/*_spec.rb']
  # spec.spec_opts = ['--options', 'spec/spec.opts']
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
staticmatic-0.11.0.alpha.7 Rakefile
staticmatic-0.11.0.alpha.6 Rakefile
staticmatic-0.11.0.alpha.5 Rakefile
staticmatic-0.11.0.alpha.4 Rakefile
staticmatic-0.11.0.alpha.3 Rakefile
staticmatic-0.11.0.alpha.1 Rakefile
staticmatic-0.11.0.alpha.0 Rakefile