Sha256: 7915e2f28f183f53a8ac0ca53536087142d112f85c829b7446d7aeeedee09ebd
Contents?: true
Size: 1.02 KB
Versions: 3
Compression:
Stored size: 1.02 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 = FileList["[A-Z]*", "{bin,lib,spec}/**/*"] 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
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
staticmatic-0.11.0 | Rakefile |
staticmatic-0.11.0.alpha.10 | Rakefile |
staticmatic-0.11.0.alpha.9 | Rakefile |