Skip to content

Commit 0756d83

Browse files
committedJun 17, 2014
Get ready for opal-0.7.0
1 parent ef7c7bb commit 0756d83

File tree

5 files changed

+68
-13
lines changed

5 files changed

+68
-13
lines changed
 

‎Gemfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
source 'https://rubygems.org'
22
gemspec
33

4-
gem 'opal'
4+
# gem 'opal', :github => 'opal/opal'
5+
gem 'opal', :path => '../opal'
56

67
gem 'rake'
78

‎Rakefile

+28
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,34 @@ end
4040

4141
def build_rspec
4242
Opal::Processor.dynamic_require_severity = :warning
43+
44+
code = []
45+
gems = %w(rspec rspec-core rspec-support rspec-expectations rspec-mocks)
46+
47+
gems.each do |gem_name|
48+
spec = Gem::Specification.find_by_name gem_name
49+
gem_dir = File.join spec.gem_dir, 'lib'
50+
prefix = gem_dir + '/'
51+
52+
Dir.glob(File.join(gem_dir, '**/*.rb')).each do |source|
53+
requirable = source.sub(prefix, '').sub(/\.rb$/, '')
54+
55+
compiler = Opal::Compiler.new File.read(source),
56+
requirable: true, file: requirable, dynamic_require_severity: :warning
57+
58+
code << compiler.compile
59+
end
60+
end
61+
62+
stubs = %w(shellwords fileutils optparse)
63+
64+
stubs.each do |stub|
65+
compiler = Opal::Compiler.new '', requirable: true, file: stub
66+
code << compiler.compile
67+
end
68+
69+
return code.join "\n"
70+
4371
Opal.append_path 'app'
4472

4573
Opal.use_gem 'rspec'

‎opal/opal/rspec.rb

+23-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,32 @@
1+
class MiniTest
2+
class Unit; end
3+
end
4+
5+
Test = MiniTest
6+
17
require 'file'
2-
require 'dir'
8+
require 'corelib/dir'
39
require 'thread'
410

11+
require 'set'
12+
require 'time'
13+
require 'rbconfig'
14+
require 'pathname'
15+
516
# vendor a pre-built rspec
617
require 'opal/rspec/rspec'
718

19+
# we "fix" these files, so require them now so they are loaded before our
20+
# fixes file. We can't use Kernel#require() directly as the compiler will
21+
# complain it can't find these files at compile time, but they are available
22+
# from rspec.js from the gem.
23+
%w[rspec
24+
rspec/core/formatters/base_text_formatter
25+
rspec/core/formatters/html_printer
26+
rspec/matchers/pretty
27+
rspec/matchers/built_in/base_matcher
28+
rspec/matchers/built_in/be].each { |r| `self.$require(r)` }
29+
830
require 'opal/rspec/fixes'
931
require 'opal/rspec/text_formatter'
1032
require 'opal/rspec/browser_formatter'

‎opal/opal/rspec/fixes.rb

+12-8
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,18 @@ def self.fail_with(message, expected = nil, actual = nil)
2727
end
2828

2929
# Opal does not support mutable strings
30-
module RSpec::Matchers::Pretty
31-
def underscore(camel_cased_word)
32-
word = camel_cased_word.to_s.dup
33-
word = word.gsub(/([A-Z]+)([A-Z][a-z])/,'$1_$2')
34-
word = word.gsub(/([a-z\d])([A-Z])/,'$1_$2')
35-
word = word.tr("-", "_")
36-
word = word.downcase
37-
word
30+
module RSpec
31+
module Matchers
32+
module Pretty
33+
def underscore(camel_cased_word)
34+
word = camel_cased_word.to_s.dup
35+
word = word.gsub(/([A-Z]+)([A-Z][a-z])/,'$1_$2')
36+
word = word.gsub(/([a-z\d])([A-Z])/,'$1_$2')
37+
word = word.tr("-", "_")
38+
word = word.downcase
39+
word
40+
end
41+
end
3842
end
3943
end
4044

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# This file is used by Opal::Server to basically load all spec files that
22
# can be found in the spec/ directory.
33

4-
<% require_asset 'opal' %>
5-
<% require_asset 'opal-rspec' %>
4+
require 'opal'
5+
require 'opal-rspec'
66

77
<% Dir.glob('spec/**/*_spec.{rb,opal}').each do |s| %>
8-
<% require_asset s.sub(/^spec\//, '').sub(/\.(rb|opal)$/, '') %>
8+
require <%= s.sub(/^spec\//, '').sub(/\.(rb|opal)$/, '').inspect %>
99
<% end %>
1010

1111
Opal::RSpec::Runner.autorun

0 commit comments

Comments
 (0)
Please sign in to comment.