Sha256: c3ac986d6c3cb85c9eda9a6d9c6827e83a1ab51d1ee448b4ce6076aead29c7a2

Contents?: true

Size: 265 Bytes

Versions: 6

Compression:

Stored size: 265 Bytes

Contents

class ApplicationController < ActionController::Base
  protect_from_forgery

  # TODO: return a real user (use devise?)
  def bigbluebutton_user
    @user ||= User.new
  end

end

class User
  attr_accessor :name

  def initialize
    self.name = "Chuck"
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
bigbluebutton_rails-1.2.0 spec/rails_app/app/controllers/application_controller.rb
bigbluebutton_rails-1.1.0 spec/rails_app/app/controllers/application_controller.rb
bigbluebutton_rails-1.0.0 spec/rails_app/app/controllers/application_controller.rb
bigbluebutton_rails-0.1.1 spec/rails_app/app/controllers/application_controller.rb
bigbluebutton_rails-0.1.0 spec/rails_app/app/controllers/application_controller.rb
bigbluebutton_rails-0.0.6 spec/rails_app/app/controllers/application_controller.rb