Fixing cucumber failed test

master
Emilio Forrer 2015-02-22 22:09:54 -06:00
parent 1806c9263b
commit c590d005cf
3 changed files with 15 additions and 1 deletions

1
.ruby-gemset Normal file
View File

@ -0,0 +1 @@
rails4

1
.ruby-version Normal file
View File

@ -0,0 +1 @@
ruby-2.2.0

View File

@ -5,7 +5,19 @@ require 'middleman-core'
module Middleman
module Deploy
cattr_accessor :options
@options
class << self
def options
@options
end
def options= options
@options = options
end
end
class Extension < Extension