hassox (owner)

Revisions

  • 257acc Wed May 20 17:20:33 -0700 2009
gist: 115179 Download_button fork
public
Public Clone URL: git://gist.github.com/115179.git
Embed All Files: show embed
Ruby #
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module MyPluginSource
  module Version_0_2_1
    # Code in here
  end
  
  module Version_0_2_0
    # Code in here
  end
end
MyPlugin = MyPluginSource::Version_0_2_1
 
module MyApp
  MyPlugin = MyPluginSource::Version_0_2_0
 
  # Your code here
end