public
Description: The classic Simon game. Written with the help of Jim Weirich.
Homepage:
Clone URL: git://github.com/slagyr/simon.git
simon / production.rb
100644 17 lines (11 sloc) 0.619 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# This file (production.rb) configures the production. It is the first file loaded when production is opened.
 
# The name of the production. If not present, the production's name will default to the name of the root directory.
# name "Simon"
 
# Attributes. Defining attributes on the production will create getters/setters on the production object.
# Create attributes for any model objects or resources that need to accessible to props or players within the production
 
#attribute :attribute_name
 
module Production
  
  def production_opening
    $: << File.expand_path(File.dirname(__FILE__) + "/lib")
  end
  
end