droiuby 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/bin/drby +3 -3
- metadata +2 -2
    
        data/bin/drby
    CHANGED
    
    | @@ -14,7 +14,7 @@ options = OptionParser.new do |o| | |
| 14 14 | 
             
            "Usage: drby autostart true|false INSTANCE_NAME [options] # Set specified instance to start on droiuby launch
         | 
| 15 15 | 
             
                   drby console [options]                            # Launch an interactive console to the target Android Device running Droiuby
         | 
| 16 16 | 
             
                   drby framework update  [FOLDER] [options]         # updates the droiuby framework from folder (default src_framework)
         | 
| 17 | 
            -
                   drby  | 
| 17 | 
            +
                   drby go   [PROJECT_NAME] [options]                # packages an app and uploads to an Android Device running Droiuby
         | 
| 18 18 | 
             
                   drby list [options]                               # Lists the app instances running on the phone
         | 
| 19 19 | 
             
                   drby live [PROJECT_NAME] [options]                # runs a web instance of the app and tells Droiuby to load it.
         | 
| 20 20 | 
             
                   drby new PROJECT_NAME [options]                   # Create a new project 
         | 
| @@ -55,7 +55,7 @@ case command | |
| 55 55 | 
             
                project.create(project_name,'')
         | 
| 56 56 | 
             
              when 'reload'
         | 
| 57 57 | 
             
                project_name = ARGV[1]
         | 
| 58 | 
            -
                project.package(project_name, nil, true)
         | 
| 58 | 
            +
                project.package(project_name, nil, 'true')
         | 
| 59 59 | 
             
                project.upload(project_name, $device_ip, nil, false, false)
         | 
| 60 60 | 
             
                project.reload($device_ip)
         | 
| 61 61 | 
             
              when 'console'
         | 
| @@ -127,7 +127,7 @@ case command | |
| 127 127 | 
             
                    project.framework(nil, ARGV[2])
         | 
| 128 128 | 
             
                    exit(1)
         | 
| 129 129 | 
             
                end
         | 
| 130 | 
            -
              when ' | 
| 130 | 
            +
              when 'go'
         | 
| 131 131 | 
             
                project_name = nil
         | 
| 132 132 |  | 
| 133 133 | 
             
                unless ARGV[1].blank?
         | 
    
        metadata
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: droiuby
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 0.1. | 
| 4 | 
            +
              version: 0.1.6
         | 
| 5 5 | 
             
              prerelease: 
         | 
| 6 6 | 
             
            platform: ruby
         | 
| 7 7 | 
             
            authors:
         | 
| @@ -9,7 +9,7 @@ authors: | |
| 9 9 | 
             
            autorequire: 
         | 
| 10 10 | 
             
            bindir: bin
         | 
| 11 11 | 
             
            cert_chain: []
         | 
| 12 | 
            -
            date:  | 
| 12 | 
            +
            date: 2014-01-07 00:00:00.000000000 Z
         | 
| 13 13 | 
             
            dependencies:
         | 
| 14 14 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 15 15 | 
             
              name: rake
         |