Added dependency to therubyracer (V8 implementation for Ruby) if the OS is not OSX.

This commit is contained in:
antisnatchor
2013-10-02 14:24:22 +01:00
parent 86d23d3815
commit 8d44b48768

View File

@@ -16,8 +16,11 @@ gem "thin"
gem "sinatra", "1.4.2"
gem "rack", "1.5.2"
gem "em-websocket", "~> 0.3.6"
gem "jsmin", "~> 1.0.1"
gem "uglifier", "~> 2.2.1"
# install https://github.com/cowboyd/therubyracer if the OS is != than OSX
if !RUBY_PLATFORM.downcase.include?("darwin")
gem "therubyracer", "~> 0.12.0"
end
gem "ansi"
gem "term-ansicolor", :require => "term/ansicolor"
gem "dm-core"