2011-04-11 10:24:07 +00:00
# -*- encoding: utf-8 -*-
$: . push File . expand_path ( " ../lib " , __FILE__ )
2011-09-02 14:49:15 +00:00
require " jasmine/headless/version "
2011-04-11 10:24:07 +00:00
Gem :: Specification . new do | s |
2013-10-09 18:50:17 +00:00
s . name = " jasmine-headless-webkit-firstbanco "
2014-01-11 19:16:05 +00:00
s . version = '0.9.0.rc.5'
2011-04-11 10:24:07 +00:00
s . platform = Gem :: Platform :: RUBY
2011-04-11 11:00:05 +00:00
s . authors = [ " John Bintz " , " Sencha Inc. " , " Pivotal Labs " ]
2011-04-11 10:24:07 +00:00
s . email = [ " john@coswellproductions.com " ]
s . homepage = " "
s . summary = %q{ Run Jasmine specs headlessly in a WebKit browser }
2013-10-09 18:50:17 +00:00
s . description = %q{ Run Jasmine specs headlessly. This is a fork gem that makes firstbanco deploys easier. We don't normally do this, but the original gem is defunct. }
2011-04-11 10:24:07 +00:00
s . rubyforge_project = " jasmine-headless-webkit "
s . extensions = ` git ls-files -- ext/**/extconf.rb ` . split ( " \n " )
2011-04-11 11:00:05 +00:00
s . files = ` git ls-files ` . split ( " \n " ) + Dir [ 'jasmine/lib/*' ]
2011-04-11 10:24:07 +00:00
s . test_files = ` git ls-files -- {test,spec,features}/* ` . split ( " \n " )
s . executables = ` git ls-files -- bin/* ` . split ( " \n " ) . map { | f | File . basename ( f ) }
s . require_paths = [ " lib " ]
2011-04-11 10:38:47 +00:00
2013-12-17 13:16:06 +00:00
s . add_runtime_dependency 'jasmine-core' , '1.3.1' # Locking to 1.3.1. 2.0.0 is a breaking change we will have to migrate to.
2011-11-20 00:15:38 +00:00
s . add_runtime_dependency 'coffee-script'
s . add_runtime_dependency 'rainbow'
2012-04-23 13:30:56 +00:00
s . add_runtime_dependency 'multi_json' , '>= 1.2.0'
2012-02-08 14:07:54 +00:00
s . add_runtime_dependency 'sprockets'
s . add_runtime_dependency 'sprockets-vendor_gems'
2011-04-11 10:24:07 +00:00
end
2012-02-08 14:07:54 +00:00