middleman/middleman.gemspec

44 lines
2 KiB
Ruby
Raw Normal View History

# -*- encoding: utf-8 -*-
2010-12-23 17:18:15 -08:00
$:.push File.expand_path("../lib", __FILE__)
require "middleman/version"
Gem::Specification.new do |s|
2010-12-23 17:18:15 -08:00
s.name = "middleman"
s.version = Middleman::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Thomas Reynolds"]
2011-07-26 16:24:10 -07:00
s.email = ["me@tdreyno.com"]
2011-07-10 13:55:40 -07:00
s.homepage = "http://middlemanapp.com"
s.summary = "A static site generator based on Sinatra. Providing Haml, Sass, Compass, CoffeeScript and including minification, compression and cache busting."
2010-12-23 17:18:15 -08:00
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {fixtures,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
2011-07-16 15:38:15 -07:00
s.add_runtime_dependency("rack", ["~> 1.3.0"])
2011-07-26 16:23:09 -07:00
s.add_runtime_dependency("thin", ["~> 1.2.11"])
2011-01-30 14:18:49 -08:00
s.add_runtime_dependency("thor", ["~> 0.14.0"])
2011-06-01 12:33:03 -07:00
s.add_runtime_dependency("tilt", ["~> 1.3.1"])
s.add_runtime_dependency("maruku", ["~> 0.6.0"])
2011-07-27 12:33:20 -07:00
s.add_runtime_dependency("sinatra", ["~> 1.2.6"])
2011-08-02 21:58:20 -07:00
s.add_runtime_dependency("padrino-core", ["~> 0.10.1"])
s.add_runtime_dependency("padrino-helpers", ["~> 0.10.1"])
2011-07-27 13:39:21 -07:00
s.add_runtime_dependency("rack-test", ["~> 0.6.1"])
s.add_runtime_dependency("uglifier", ["~> 1.0.0"])
2011-07-27 12:33:20 -07:00
s.add_runtime_dependency("slim", ["~> 0.9.0"])
2011-04-24 20:13:07 -07:00
s.add_runtime_dependency("haml", ["~> 3.1.0"])
2011-08-03 15:25:08 -07:00
s.add_runtime_dependency("sass", ["~> 3.1.5", '< 3.1.6'])
s.add_runtime_dependency("compass", ["~> 0.11.3"])
2011-08-03 15:25:08 -07:00
s.add_runtime_dependency("coffee-script", ["~> 2.2.0"])
2011-08-05 10:45:14 -07:00
s.add_runtime_dependency("sprockets", ["2.0.0.beta.13"])
2011-08-03 23:27:50 -07:00
s.add_runtime_dependency("httparty", ["~> 0.7.8"])
2011-07-26 11:49:06 -07:00
s.add_runtime_dependency("guard", ["~> 0.5.1"])
2011-08-02 21:58:20 -07:00
s.add_runtime_dependency("guard-livereload", ["~> 0.2.1"])
s.add_development_dependency("coffee-filter", ["~> 0.1.1"])
2011-08-02 21:58:20 -07:00
s.add_development_dependency("cucumber", ["~> 1.0.2"])
2011-06-24 11:04:26 -07:00
s.add_development_dependency("rake", ["0.8.7"])
2011-07-26 11:49:06 -07:00
s.add_development_dependency("rspec", ["~> 2.6.0"])
end
2010-08-03 20:58:05 -07:00