Remove dependency on compiled file watchers, will fall back to polling by default. This keeps Middleman from needing a compiler to install. Will ask user to upgrade to a compiled watcher on install.
This commit is contained in:
parent
642ee42b4f
commit
41ae1053eb
|
@ -1,38 +0,0 @@
|
|||
# -*- encoding: utf-8 -*-
|
||||
$:.push File.expand_path("../lib", __FILE__)
|
||||
require "middleman-core/version"
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = "middleman-core-x86-mingw32"
|
||||
s.version = Middleman::VERSION
|
||||
s.platform = Gem::Platform::RUBY
|
||||
s.license = "MIT"
|
||||
s.authors = ["Thomas Reynolds", "Ben Hollis"]
|
||||
s.email = ["me@tdreyno.com", "ben@benhollis.net"]
|
||||
s.homepage = "http://middlemanapp.com"
|
||||
s.summary = "Hand-crafted frontend development"
|
||||
s.description = "A static site generator. Provides dozens of templating languages (Haml, Sass, Compass, Slim, CoffeeScript, and more). Makes minification, compression, cache busting, Yaml data (and more) an easy part of your development cycle."
|
||||
|
||||
s.files = `git ls-files -z`.split("\0")
|
||||
s.test_files = `git ls-files -z -- {fixtures,features}/*`.split("\0")
|
||||
s.executable = "middleman"
|
||||
s.require_path = "lib"
|
||||
|
||||
# Core
|
||||
s.add_dependency("bundler", ["~> 1.1"])
|
||||
s.add_dependency("rack", ["~> 1.4.1"])
|
||||
s.add_dependency("tilt", ["~> 1.3.1"])
|
||||
|
||||
# Builder
|
||||
s.add_dependency("rack-test", ["~> 0.6.1"])
|
||||
|
||||
# CLI
|
||||
s.add_dependency("thor", ["~> 0.15.4"])
|
||||
|
||||
# Helpers
|
||||
s.add_dependency("activesupport", ["~> 3.2.6"])
|
||||
|
||||
# Watcher
|
||||
s.add_dependency("listen", ["~> 0.5.2"])
|
||||
s.add_dependency("wdm", ["~> 0.0.3"]) # Windows
|
||||
end
|
|
@ -34,6 +34,4 @@ Gem::Specification.new do |s|
|
|||
|
||||
# Watcher
|
||||
s.add_dependency("listen", ["~> 0.5.2"])
|
||||
s.add_dependency("rb-fsevent", ["~> 0.9.1"]) # Linux
|
||||
s.add_dependency("rb-inotify", ["~> 0.8.8"]) # OS X
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue