Sha256: f9f1a7ecb1a1bc3441d62866d4233525b05ed9e1d9084d28648d5dd621f43443
Contents?: true
Size: 1.3 KB
Versions: 1
Compression:
Stored size: 1.3 KB
Contents
# -*- encoding: utf-8 -*- $:.push File.expand_path("../lib", __FILE__) require "jasmine-phantom/version" Gem::Specification.new do |s| s.name = "jasmine-phantom" s.version = Jasmine::Phantom::VERSION s.authors = ["David Vollbracht"] s.email = ["david@flipstone.com"] s.license = "MIT" s.homepage = "http://github.com/flipstone/jasmine-phantom" s.summary = %q{Run you jasmine specs from the commant line using phantomjs} s.description = %q{jasmine-phantom provides a rake task, jasmine:phantom:ci, that runs your jasmine specs via the phantomjs browser just as if you had run rake jasmine and run them manually via your browser. You need to have phantomjs installed and in your PATH for the rake task to work} s.rubyforge_project = "jasmine-phantom" s.files = `git ls-files`.split("\n") 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"] # specify any dependencies here; for example: s.add_runtime_dependency "jasmine", '>= 1.2.0' s.add_runtime_dependency "posix-spawn" s.add_runtime_dependency "phantomjs" s.add_development_dependency "rake", '>= 0.8' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
jasmine-phantom-0.0.11 | jasmine-phantom.gemspec |