Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: opal/opal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b8447a64ae27
Choose a base ref
...
head repository: opal/opal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 893b9c1b9f18
Choose a head ref
  • 4 commits
  • 8 files changed
  • 1 contributor

Commits on Apr 10, 2014

  1. Add specs for opal/sprockets

    Partly ported from opal-rails.
    elia committed Apr 10, 2014

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    Ma27 Maximilian Bosch
    Copy the full SHA
    68ab872 View commit details
  2. Update RSpec rc file

    elia committed Apr 10, 2014

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    2c7c09a View commit details
  3. Copy the full SHA
    2b3e5f3 View commit details
  4. Copy the full SHA
    893b9c1 View commit details
2 changes: 1 addition & 1 deletion .rspec
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
--color
--format progress
--pattern mri_spec/**/*_spec.rb
--pattern spec/cli/**/*_spec.rb
9 changes: 9 additions & 0 deletions lib/opal/sprockets/environment.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
require 'sprockets'
require 'opal/sprockets/processor'
require 'opal/sprockets/erb'

module Opal
# Proccess using Sprockets
#
# Opal.process('opal-jquery') # => String
def self.process asset
Environment.new[asset].to_s
end

# Environment is a subclass of Sprockets::Environment which already has our opal
# load paths loaded. This makes it easy for stand-alone rack apps, or test runners
# that have opal load paths ready to use. You can also add an existing gem's lib
10 changes: 9 additions & 1 deletion lib/opal/sprockets/erb.rb
Original file line number Diff line number Diff line change
@@ -1,22 +1,30 @@
require 'opal'
require 'opal/compiler'
require 'tilt'
require 'opal/erb'
require 'sprockets'

module Opal
module ERB
class Processor < Tilt::Template
# vvv BOILERPLATE vvv
self.default_mime_type = 'application/javascript'

def self.engine_initialized?
true
end

def self.version
::Opal::VERSION
end

def initialize_engine
require_template_library 'opal'
end

def prepare
end
# ^^^ BOILERPLATE ^^^


def evaluate(context, locals, &block)
context.require_asset 'erb'
24 changes: 10 additions & 14 deletions lib/opal/sprockets/processor.rb
Original file line number Diff line number Diff line change
@@ -5,13 +5,6 @@
$OPAL_SOURCE_MAPS = {}

module Opal
# Proccess using Sprockets
#
# Opal.process('opal-jquery') # => String
def self.process asset
Environment.new[asset].to_s
end

# The Processor class is used to make ruby files (with rb or opal extensions)
# available to any sprockets based server. Processor will then get passed any
# ruby source file to build. There are some options you can override globally
@@ -26,6 +19,7 @@ def self.process asset
# * irb_enabled [false by default]
#
class Processor < Tilt::Template
# vvv BOILERPLATE vvv
self.default_mime_type = 'application/javascript'

def self.engine_initialized?
@@ -36,6 +30,15 @@ def self.version
::Opal::VERSION
end

def initialize_engine
require_template_library 'opal'
end

def prepare
end
# ^^^ BOILERPLATE ^^^


class << self
attr_accessor :method_missing_enabled
attr_accessor :arity_check_enabled
@@ -60,13 +63,6 @@ def self.stubbed_files
@stubbed_files ||= Set.new
end

def initialize_engine
require_template_library 'opal'
end

def prepare
end

def evaluate(context, locals, &block)
options = {
:method_missing => self.class.method_missing_enabled,
3 changes: 3 additions & 0 deletions spec/cli/fixtures/sprockets_file.js.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
require 'opal'
require 'native'
puts 'sprockets!'
14 changes: 14 additions & 0 deletions spec/cli/sprockets/environment_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
require 'cli/spec_helper'
require 'opal/sprockets/environment'

describe Opal::Environment do
let(:env) { described_class.new }
let(:logical_path) { 'sprockets_file' }

before { env.append_path File.expand_path('../../fixtures/', __FILE__) }

it 'compiles Ruby to JS' do
expect(env[logical_path].source).to include('$puts(')
expect(env[logical_path+'.js'].source).to include('$puts(')
end
end
25 changes: 25 additions & 0 deletions spec/cli/sprockets/erb_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
require 'cli/spec_helper'
require 'opal/sprockets/erb'

describe Opal::ERB::Processor do
let(:pathname) { Pathname("/Code/app/mylib/opal/foo.#{ext}") }
let(:_context) { double('_context', :logical_path => "foo.#{ext}", :pathname => pathname) }
let(:required_assets) { [] }
let(:template) { described_class.new { |t| %Q{<a href="<%= url %>"><%= name %></a>} } }
before { _context.stub(:require_asset) {|asset| required_assets << asset } }

let(:ext) { 'opalerb' }

it "is registered for '.opalerb' files" do
expect(Tilt["test.#{ext}"]).to eq(described_class)
end

it 'renders the template' do
expect(template.render(_context)).to include('"<a href=\""')
end

it 'implicitly requires "erb"' do
template.render(_context)
expect(required_assets).to eq(['erb'])
end
end
28 changes: 28 additions & 0 deletions spec/cli/sprockets/processor_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
require 'cli/spec_helper'
require 'opal/sprockets/processor'

describe Opal::Processor do
let(:pathname) { Pathname("/Code/app/mylib/opal/foo.#{ext}") }
let(:_context) { double('_context', :logical_path => "foo.#{ext}", :pathname => pathname, :resolve => pathname.expand_path) }

%w[rb js.rb opal js.opal].each do |ext|
let(:ext) { ext }

describe %Q{with extension ".#{ext}"} do
it "is registered for '.#{ext}' files" do
expect(Tilt["test.#{ext}"]).to eq(described_class)
end

it "compiles and evaluates the template on #render" do
template = described_class.new { |t| "puts 'Hello, World!'\n" }
expect(template.render(_context)).to include('"Hello, World!"')
end

it "can be rendered more than once" do
template = described_class.new(_context) { |t| "puts 'Hello, World!'\n" }
3.times { expect(template.render(_context)).to include('"Hello, World!"') }
end
end
end

end