+sunny / fixing the multi_json octal number error
This commit is contained in:
parent
724541a2cb
commit
4e1ba551e0
2
.gitignore
vendored
2
.gitignore
vendored
@ -16,3 +16,5 @@ _site/
|
|||||||
jhw.*.html
|
jhw.*.html
|
||||||
coverage/
|
coverage/
|
||||||
tmp/
|
tmp/
|
||||||
|
.rvmrc
|
||||||
|
.idea/*
|
1
Gemfile
1
Gemfile
@ -27,4 +27,3 @@ gem 'jquery-rails', '~> 1.0.0'
|
|||||||
gem 'ejs'
|
gem 'ejs'
|
||||||
|
|
||||||
gem 'guard-jasmine-headless-webkit', :git => 'git://github.com/johnbintz/guard-jasmine-headless-webkit.git'
|
gem 'guard-jasmine-headless-webkit', :git => 'git://github.com/johnbintz/guard-jasmine-headless-webkit.git'
|
||||||
|
|
||||||
|
@ -27,4 +27,3 @@ Gem::Specification.new do |s|
|
|||||||
s.add_runtime_dependency 'sprockets'
|
s.add_runtime_dependency 'sprockets'
|
||||||
s.add_runtime_dependency 'sprockets-vendor_gems'
|
s.add_runtime_dependency 'sprockets-vendor_gems'
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
module Jasmine
|
module Jasmine
|
||||||
module Headless
|
module Headless
|
||||||
VERSION = "0.9.0.rc1"
|
VERSION = "0.9.0.rc1.patched"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
6
vendor/assets/javascripts/intense.coffee
vendored
6
vendor/assets/javascripts/intense.coffee
vendored
@ -11,16 +11,16 @@ window.Intense = {
|
|||||||
methods:
|
methods:
|
||||||
foreground: (color) ->
|
foreground: (color) ->
|
||||||
if Intense.useColors
|
if Intense.useColors
|
||||||
"\033[3#{Intense.colors[color]}m#{this}\033[0m"
|
"\x33[3#{Intense.colors[color]}m#{this}\x33[0m"
|
||||||
else
|
else
|
||||||
this
|
this
|
||||||
bright: ->
|
bright: ->
|
||||||
if Intense.useColors
|
if Intense.useColors
|
||||||
"\033[1m#{this}\033[0m"
|
"\x33[1m#{this}\x33[0m"
|
||||||
else
|
else
|
||||||
this
|
this
|
||||||
useColors: true
|
useColors: true
|
||||||
moveBack: (count = 1) -> "\033[#{count}D"
|
moveBack: (count = 1) -> "\x33[#{count}D"
|
||||||
}
|
}
|
||||||
|
|
||||||
for method, code of Intense.methods
|
for method, code of Intense.methods
|
||||||
|
Loading…
Reference in New Issue
Block a user