Skip to content

Commit

Permalink
Fill in missing documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
lexun committed Jan 25, 2015
1 parent ec9211f commit c8ad4fd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions lib/launchpad.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
require 'launchpad/settings'
require 'launchpad/index'
require 'launchpad/gui/application'

# The main top level module for the launchpad gem.
module Launchpad
end
6 changes: 4 additions & 2 deletions lib/launchpad/gui/application.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
require 'jrubyfx'

module Launchpad
# Main application which is only created once at launch
# Main application which is only created once at launch.
class Application < JRubyFX::Application
# Automatically called on {.launch}
# Automatically called on {Application.launch}
# @param [Java::JavafxStage::Stage] stage
# automatically provided when {.launch} is called.
def start(stage)
stage.title = 'Launchpad'
stage.width = 800
Expand Down
2 changes: 1 addition & 1 deletion lib/launchpad/settings.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module Launchpad
# Provides default settings and allows user customization through creation of
# a yaml file for overrides
# a yaml file for overrides.
class Settings
DEFAULT = {
local_index_path: 'index',
Expand Down

0 comments on commit c8ad4fd

Please sign in to comment.