Sha256: 9bbd322d4007127bd36d8e6815fd3a4b1879af201a01855eb6c3531063e35e40

Contents?: true

Size: 215 Bytes

Versions: 5

Compression:

Stored size: 215 Bytes

Contents

class ApplicationController < ActionController::Base
  protect_from_forgery

#  def bigbluebutton_user
#    User.new
#  end

end

class User
  attr_accessor :name

  def initialize
    self.name = "Chuck"
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
bigbluebutton_rails-0.0.5 spec/rails_app/app/controllers/application_controller.rb
bigbluebutton_rails-0.0.4 spec/rails_app/app/controllers/application_controller.rb
bigbluebutton_rails-0.0.3 spec/rails_app/app/controllers/application_controller.rb
bigbluebutton_rails-0.0.2 spec/rails_app/app/controllers/application_controller.rb
bigbluebutton_rails-0.0.1 spec/rails_app/app/controllers/application_controller.rb