Sha256: 6096d68d9cb85ae54be688669540ee57daa16125f037ff2e3105f0c633daf716
Contents?: true
Size: 1.08 KB
Versions: 1
Compression:
Stored size: 1.08 KB
Contents
require "rubygems" require 'spec/rake/spectask' require File.expand_path("../lib/staticmatic", __FILE__) 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.include "[A-Z]*", "{bin,lib,spec}/**/*" gem.files.exclude "spec/sandbox/tmp", "spec/sandbox/test_site/site/*" gem.add_dependency("haml", ">=2.0.0") gem.add_dependency("rack", ">=1.0") gem.add_dependency("compass", ">=0.10.0") end rescue LoadError puts "Jeweler, or one of its dependencies, is not available. Install it with: gem install jeweler" 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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
staticmatic-0.11.1 | Rakefile |