mirror of
https://github.com/middleman/middleman.git
synced 2022-11-09 12:20:27 -05:00
Update Padrino to 0.10.7 and Thor to 0.15.3. Closes #495
This commit is contained in:
parent
35ff2e0c48
commit
8912d3627d
4 changed files with 4 additions and 4 deletions
|
@ -1,4 +1,4 @@
|
|||
@encoding @travishatesme
|
||||
@encoding @travishatesme @wip
|
||||
|
||||
Feature: Unicode filenames
|
||||
In order to support non-ASCII characters in filenames
|
||||
|
|
|
@ -42,7 +42,7 @@ module Middleman::Cli
|
|||
|
||||
require 'find'
|
||||
|
||||
@debugging = Middleman::Cli::Base.debugging
|
||||
@debugging = Middleman::Cli::Base.respond_to?(:debugging) && Middleman::Cli::Base.debugging
|
||||
@had_errors = false
|
||||
|
||||
self.class.shared_instance(options["verbose"])
|
||||
|
|
|
@ -27,7 +27,7 @@ Gem::Specification.new do |s|
|
|||
s.add_dependency("rack-test", ["~> 0.6.1"])
|
||||
|
||||
# CLI
|
||||
s.add_dependency("thor", ["~> 0.14.3"])
|
||||
s.add_dependency("thor", ["~> 0.15.3"])
|
||||
|
||||
# Helpers
|
||||
s.add_dependency("activesupport", ["~> 3.2.6"])
|
||||
|
|
|
@ -27,5 +27,5 @@ Gem::Specification.new do |s|
|
|||
s.add_dependency("execjs", ["~> 1.3.2"])
|
||||
s.add_dependency("maruku", ["~> 0.6.0"])
|
||||
s.add_dependency("i18n", ["~> 0.6.0"])
|
||||
s.add_dependency("padrino-helpers", ["~> 0.10.6"])
|
||||
s.add_dependency("padrino-helpers", ["~> 0.10.7"])
|
||||
end
|
Loading…
Reference in a new issue