Sha256: 63974f8ef2ae0b99c0cc14c1f6112ff2cbd15c112279cef2395f6fecf4e07e75

Contents?: true

Size: 696 Bytes

Versions: 19

Compression:

Stored size: 696 Bytes

Contents

require 'rubygems'
require 'rake'
require 'echoe'

def version
  $1 if File.read('lib/jspec.js').match /version *: *'(.*?)'/
end

Echoe.new "jspec", version do |p|
  p.author = "TJ Holowaychuk"
  p.email = "tj@vision-media.ca"
  p.summary = "JavaScript BDD Testing Framework"
  p.url = "http://visionmedia.github.com/jspec"
  p.runtime_dependencies << "sinatra"
  p.runtime_dependencies << "json_pure"
  p.runtime_dependencies << "commander >=4.0.1"
  p.runtime_dependencies << "bind >=0.2.8"
end

namespace :spec do
  desc 'Run jspec executable specs'
  task :bin do
    sh 'spec --color --require spec/ruby/bin/spec_helper.rb spec/ruby/bin/*_spec.rb'
  end
end

task :gemspec => :build_gemspec

Version data entries

19 entries across 19 versions & 3 rubygems

Version Path
gentooboontoo-jspec-4.3.3 Rakefile
bootcamp-0.1.4 vendor/test_suites/jspec/Rakefile
bootcamp-0.1.0 vendor/test_suites/jspec/Rakefile
jspec-4.3.3 Rakefile
jspec-4.3.2 Rakefile
jspec-4.3.1 Rakefile
jspec-4.3.0 Rakefile
jspec-4.2.1 Rakefile
jspec-4.2.0 Rakefile
jspec-4.1.0 Rakefile
jspec-4.0.0 Rakefile
jspec-3.3.3 Rakefile
jspec-3.3.2 Rakefile
jspec-3.3.1 Rakefile
jspec-3.3.0 Rakefile
jspec-3.2.1 Rakefile
jspec-3.2.0 Rakefile
jspec-3.1.3 Rakefile
jspec-3.1.2 Rakefile