merge in changes
This commit is contained in:
commit
f9e3bdfbce
@ -2,8 +2,7 @@
|
||||
|
||||
* File and line number information for failing specs
|
||||
* Try to build the runner if it's missing
|
||||
* Smarter directions on getting the right version of Qt installed
|
||||
* Various bugfixes for things
|
||||
* Kill warnings and streamline includes
|
||||
|
||||
## 0.5.0
|
||||
|
||||
|
6
Rakefile
6
Rakefile
@ -38,3 +38,9 @@ end
|
||||
|
||||
task :default => [ 'spec:platforms', 'jasmine:headless' ]
|
||||
|
||||
desc "Build the runner"
|
||||
task :build do
|
||||
Dir.chdir 'ext/jasmine-headless-specrunner' do
|
||||
system %{ruby extconf.rb}
|
||||
end
|
||||
end
|
||||
|
5
dev-bin/hooks/pre-commit
Executable file
5
dev-bin/hooks/pre-commit
Executable file
@ -0,0 +1,5 @@
|
||||
#!/bin/bash
|
||||
|
||||
bundle exec rake
|
||||
if [ $? -ne 0 ]; then exit 1; fi
|
||||
|
6
dev-bin/install-hooks
Executable file
6
dev-bin/install-hooks
Executable file
@ -0,0 +1,6 @@
|
||||
#!/bin/bash
|
||||
|
||||
for i in $PWD/dev-bin/hooks/*; do
|
||||
ln -sf $i .git/hooks/${i##*/}
|
||||
done
|
||||
|
@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
||||
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
||||
s.require_paths = ["lib"]
|
||||
|
||||
s.add_dependency 'jasmine', '~>1.1.beta'
|
||||
s.add_dependency 'jasmine-core', '~>1.1.beta'
|
||||
s.add_dependency 'coffee-script', '>= 2.2'
|
||||
s.add_dependency 'rainbow'
|
||||
s.add_dependency 'multi_json'
|
||||
|
@ -1,13 +1,4 @@
|
||||
begin
|
||||
require 'jasmine'
|
||||
rescue NameError => e
|
||||
if e.message['ActiveSupport::Concern']
|
||||
$stderr.puts "[%s] %s (%s)" % [ "jasmine-gem".color(:red), e.message.color(:white), e.class.name.color(:yellow) ]
|
||||
$stderr.puts "#{'Jasmine'.color(:red)} believes Rails 3 is available. Try using #{'Bundler'.color(:green)} and running via #{'bundle exec'.color(:green)}."
|
||||
else
|
||||
raise e
|
||||
end
|
||||
end
|
||||
require 'jasmine-core'
|
||||
|
||||
module Jasmine
|
||||
class FilesList
|
||||
|
@ -3,7 +3,6 @@ require 'jasmine/headless/options'
|
||||
|
||||
require 'fileutils'
|
||||
|
||||
require 'jasmine/base'
|
||||
require 'coffee-script'
|
||||
require 'rainbow'
|
||||
|
||||
|
@ -42,7 +42,7 @@ module Jasmine
|
||||
|
||||
private
|
||||
def create_rails_compliant_task
|
||||
if Rails.version >= "3.1.0"
|
||||
if Rails.respond_to?(:version) && Rails.version >= "3.1.0"
|
||||
desc 'Force generate static assets without an MD5 hash, all assets end with -test.<ext>'
|
||||
task 'assets:precompile:for_testing' => :environment do
|
||||
Rails.application.assets.digest_class = Digest::JasmineTest
|
||||
|
@ -21,16 +21,32 @@ describe Jasmine::Headless::Task do
|
||||
end
|
||||
|
||||
context 'with Rails' do
|
||||
before do
|
||||
module Rails
|
||||
def self.version
|
||||
return "0"
|
||||
context 'without version' do
|
||||
before do
|
||||
module Rails
|
||||
def self.version
|
||||
return "0"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
it 'should be OK if rails is defined' do
|
||||
Jasmine::Headless::Task.new('jasmine:headless')
|
||||
end
|
||||
end
|
||||
|
||||
it 'should be OK if rails is defined' do
|
||||
Jasmine::Headless::Task.new('jasmine:headless')
|
||||
context 'with version' do
|
||||
before do
|
||||
module Rails
|
||||
def self.version
|
||||
return "0"
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
it 'should be OK if rails is defined' do
|
||||
Jasmine::Headless::Task.new('jasmine:headless')
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user