pi 0.1.36 → 0.1.37
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/lib/cli/commands/apps.rb +2 -2
 - data/lib/cli/commands/projects.rb +4 -4
 - data/lib/cli/commands/user.rb +3 -1
 - data/lib/cli/version.rb +1 -1
 - metadata +86 -146
 
    
        data/lib/cli/commands/apps.rb
    CHANGED
    
    | 
         @@ -181,12 +181,12 @@ module PI::Cli::Command 
     | 
|
| 
       181 
181 
     | 
    
         
             
                    end
         
     | 
| 
       182 
182 
     | 
    
         
             
                    }
         
     | 
| 
       183 
183 
     | 
    
         
             
                  isDebug = false
         
     | 
| 
       184 
     | 
    
         
            -
                  isDebug = ask "Need debug?", :default => DEFAULTS["isDebug"] if deployType == "binary"
         
     | 
| 
      
 184 
     | 
    
         
            +
                  isDebug = ask "Need debug?", :default => DEFAULTS["isDebug"] if deployType == "binary"  && useproject[:runtime]!="python27"
         
     | 
| 
       185 
185 
     | 
    
         
             
                  isDebug = (isDebug == false ? "no" : "yes")
         
     | 
| 
       186 
186 
     | 
    
         
             
                  choices = ["restart", "notify"]
         
     | 
| 
       187 
187 
     | 
    
         
             
                  action_for_change = ask"Reaction when service changed", :default => DEFAULTS["action_for_change"], :choices => choices, :indexed => true
         
     | 
| 
       188 
188 
     | 
    
         
             
                  probe = false
         
     | 
| 
       189 
     | 
    
         
            -
                  probe = ask "Need JMX monitoring?", :default => DEFAULTS["probe"] if deployType == "binary"
         
     | 
| 
      
 189 
     | 
    
         
            +
                  probe = ask "Need JMX monitoring?", :default => DEFAULTS["probe"] if deployType == "binary" && useproject[:runtime]!="python27"
         
     | 
| 
       190 
190 
     | 
    
         
             
                  probe = (probe == false ? "no" : "yes")
         
     | 
| 
       191 
191 
     | 
    
         
             
                  # needMonitor = ask "Need monitor?", :default => DEFAULTS["needMonitor"]
         
     | 
| 
       192 
192 
     | 
    
         
             
                  # needMonitor = (needMonitor == false ? "no" : "yes")
         
     | 
| 
         @@ -183,7 +183,7 @@ module PI::Cli::Command 
     | 
|
| 
       183 
183 
     | 
    
         
             
                  client.check_login_status
         
     | 
| 
       184 
184 
     | 
    
         
             
                  path = @options[:path]
         
     | 
| 
       185 
185 
     | 
    
         
             
                  if path
         
     | 
| 
       186 
     | 
    
         
            -
                    err "Not war file or path does not exist!" if not ((path =~ /\.(war)$/) && (File.exists? path))
         
     | 
| 
      
 186 
     | 
    
         
            +
                    err "Not war or zip  file or path does not exist!" if not ((path =~ /\.(war)$/||path =~ /\.(zip)$/) && (File.exists? path))
         
     | 
| 
       187 
187 
     | 
    
         
             
                  end
         
     | 
| 
       188 
188 
     | 
    
         
             
                  version = @options[:ver]
         
     | 
| 
       189 
189 
     | 
    
         
             
                  description = @options[:desc]
         
     | 
| 
         @@ -213,9 +213,9 @@ module PI::Cli::Command 
     | 
|
| 
       213 
213 
     | 
    
         | 
| 
       214 
214 
     | 
    
         
             
                  unless path
         
     | 
| 
       215 
215 
     | 
    
         
             
                    loop{
         
     | 
| 
       216 
     | 
    
         
            -
                    path = ask "Please enter the path of upload war file"
         
     | 
| 
       217 
     | 
    
         
            -
                    if not ((path =~ /\.(war)$/) && (File.exists? path))
         
     | 
| 
       218 
     | 
    
         
            -
                      display "Not war file or path does not exist!"
         
     | 
| 
      
 216 
     | 
    
         
            +
                    path = ask "Please enter the path of upload war or zip file"
         
     | 
| 
      
 217 
     | 
    
         
            +
                    if not ((path =~ /\.(war)$/ || path =~ /\.(zip)$/) && (File.exists? path))
         
     | 
| 
      
 218 
     | 
    
         
            +
                      display "Not war or zip file or path does not exist!"
         
     | 
| 
       219 
219 
     | 
    
         
             
                      path =nil
         
     | 
| 
       220 
220 
     | 
    
         
             
                      next
         
     | 
| 
       221 
221 
     | 
    
         
             
                    else
         
     | 
    
        data/lib/cli/commands/user.rb
    CHANGED
    
    | 
         @@ -185,9 +185,11 @@ module PI::Cli::Command 
     | 
|
| 
       185 
185 
     | 
    
         
             
                  runtimes = client.runtimes
         
     | 
| 
       186 
186 
     | 
    
         
             
                  java_runtime = runtimes[0].downcase
         
     | 
| 
       187 
187 
     | 
    
         
             
                  ruby_runtime = runtimes[1].downcase
         
     | 
| 
      
 188 
     | 
    
         
            +
                  python_runtime = runtimes[2].downcase
         
     | 
| 
       188 
189 
     | 
    
         
             
                  java_frameworks = client.frameworks(java_runtime)
         
     | 
| 
       189 
190 
     | 
    
         
             
                  ruby_frameworks = client.frameworks(ruby_runtime)
         
     | 
| 
       190 
     | 
    
         
            -
                   
     | 
| 
      
 191 
     | 
    
         
            +
                  python_frameworks = client.frameworks(python_runtime)
         
     | 
| 
      
 192 
     | 
    
         
            +
                  frameworks = java_frameworks << ruby_frameworks[0] << ruby_frameworks[1] << python_frameworks[0]
         
     | 
| 
       191 
193 
     | 
    
         
             
                  return display JSON.pretty_generate(frameworks) if @options[:json]
         
     | 
| 
       192 
194 
     | 
    
         
             
                  return display "No Frameworks" if frameworks.empty?
         
     | 
| 
       193 
195 
     | 
    
         
             
                  rtable = table do |t|
         
     | 
    
        data/lib/cli/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,219 +1,159 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            --- !ruby/object:Gem::Specification 
     | 
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: pi
         
     | 
| 
       3 
     | 
    
         
            -
            version: !ruby/object:Gem::Version 
     | 
| 
       4 
     | 
    
         
            -
               
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.1.37
         
     | 
| 
       5 
5 
     | 
    
         
             
              prerelease: 
         
     | 
| 
       6 
     | 
    
         
            -
              segments: 
         
     | 
| 
       7 
     | 
    
         
            -
              - 0
         
     | 
| 
       8 
     | 
    
         
            -
              - 1
         
     | 
| 
       9 
     | 
    
         
            -
              - 36
         
     | 
| 
       10 
     | 
    
         
            -
              version: 0.1.36
         
     | 
| 
       11 
6 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       12 
     | 
    
         
            -
            authors: 
     | 
| 
      
 7 
     | 
    
         
            +
            authors:
         
     | 
| 
       13 
8 
     | 
    
         
             
            - Samsung
         
     | 
| 
       14 
9 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       15 
10 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       16 
11 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
             
     | 
| 
       19 
     | 
    
         
            -
             
     | 
| 
       20 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 12 
     | 
    
         
            +
            date: 2014-04-25 00:00:00.000000000 Z
         
     | 
| 
      
 13 
     | 
    
         
            +
            dependencies:
         
     | 
| 
      
 14 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
       21 
15 
     | 
    
         
             
              name: json_pure
         
     | 
| 
       22 
     | 
    
         
            -
               
     | 
| 
       23 
     | 
    
         
            -
              requirement: &id001 !ruby/object:Gem::Requirement 
         
     | 
| 
      
 16 
     | 
    
         
            +
              requirement: &8892440 !ruby/object:Gem::Requirement
         
     | 
| 
       24 
17 
     | 
    
         
             
                none: false
         
     | 
| 
       25 
     | 
    
         
            -
                requirements: 
     | 
| 
      
 18 
     | 
    
         
            +
                requirements:
         
     | 
| 
       26 
19 
     | 
    
         
             
                - - ~>
         
     | 
| 
       27 
     | 
    
         
            -
                  - !ruby/object:Gem::Version 
     | 
| 
       28 
     | 
    
         
            -
                    hash: 1
         
     | 
| 
       29 
     | 
    
         
            -
                    segments: 
         
     | 
| 
       30 
     | 
    
         
            -
                    - 1
         
     | 
| 
       31 
     | 
    
         
            -
                    - 5
         
     | 
| 
       32 
     | 
    
         
            -
                    - 1
         
     | 
| 
      
 20 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
       33 
21 
     | 
    
         
             
                    version: 1.5.1
         
     | 
| 
       34 
22 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       35 
     | 
    
         
            -
              version_requirements: *id001
         
     | 
| 
       36 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency 
         
     | 
| 
       37 
     | 
    
         
            -
              name: highline
         
     | 
| 
       38 
23 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       39 
     | 
    
         
            -
               
     | 
| 
      
 24 
     | 
    
         
            +
              version_requirements: *8892440
         
     | 
| 
      
 25 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 26 
     | 
    
         
            +
              name: highline
         
     | 
| 
      
 27 
     | 
    
         
            +
              requirement: &8891900 !ruby/object:Gem::Requirement
         
     | 
| 
       40 
28 
     | 
    
         
             
                none: false
         
     | 
| 
       41 
     | 
    
         
            -
                requirements: 
     | 
| 
      
 29 
     | 
    
         
            +
                requirements:
         
     | 
| 
       42 
30 
     | 
    
         
             
                - - ~>
         
     | 
| 
       43 
     | 
    
         
            -
                  - !ruby/object:Gem::Version 
     | 
| 
       44 
     | 
    
         
            -
                    hash: 13
         
     | 
| 
       45 
     | 
    
         
            -
                    segments: 
         
     | 
| 
       46 
     | 
    
         
            -
                    - 1
         
     | 
| 
       47 
     | 
    
         
            -
                    - 6
         
     | 
| 
       48 
     | 
    
         
            -
                    - 1
         
     | 
| 
      
 31 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
       49 
32 
     | 
    
         
             
                    version: 1.6.1
         
     | 
| 
       50 
33 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       51 
     | 
    
         
            -
              version_requirements: *id002
         
     | 
| 
       52 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency 
         
     | 
| 
       53 
     | 
    
         
            -
              name: interact
         
     | 
| 
       54 
34 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       55 
     | 
    
         
            -
               
     | 
| 
      
 35 
     | 
    
         
            +
              version_requirements: *8891900
         
     | 
| 
      
 36 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 37 
     | 
    
         
            +
              name: interact
         
     | 
| 
      
 38 
     | 
    
         
            +
              requirement: &8891340 !ruby/object:Gem::Requirement
         
     | 
| 
       56 
39 
     | 
    
         
             
                none: false
         
     | 
| 
       57 
     | 
    
         
            -
                requirements: 
     | 
| 
       58 
     | 
    
         
            -
                - -  
     | 
| 
       59 
     | 
    
         
            -
                  - !ruby/object:Gem::Version 
     | 
| 
       60 
     | 
    
         
            -
                    hash: 1
         
     | 
| 
       61 
     | 
    
         
            -
                    segments: 
         
     | 
| 
       62 
     | 
    
         
            -
                    - 0
         
     | 
| 
       63 
     | 
    
         
            -
                    - 4
         
     | 
| 
       64 
     | 
    
         
            -
                    - 7
         
     | 
| 
      
 40 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 41 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 42 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
       65 
43 
     | 
    
         
             
                    version: 0.4.7
         
     | 
| 
       66 
44 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       67 
     | 
    
         
            -
              version_requirements: *id003
         
     | 
| 
       68 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency 
         
     | 
| 
       69 
     | 
    
         
            -
              name: rest-client
         
     | 
| 
       70 
45 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       71 
     | 
    
         
            -
               
     | 
| 
      
 46 
     | 
    
         
            +
              version_requirements: *8891340
         
     | 
| 
      
 47 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 48 
     | 
    
         
            +
              name: rest-client
         
     | 
| 
      
 49 
     | 
    
         
            +
              requirement: &8890760 !ruby/object:Gem::Requirement
         
     | 
| 
       72 
50 
     | 
    
         
             
                none: false
         
     | 
| 
       73 
     | 
    
         
            -
                requirements: 
     | 
| 
       74 
     | 
    
         
            -
                - -  
     | 
| 
       75 
     | 
    
         
            -
                  - !ruby/object:Gem::Version 
     | 
| 
       76 
     | 
    
         
            -
                    hash: 13
         
     | 
| 
       77 
     | 
    
         
            -
                    segments: 
         
     | 
| 
       78 
     | 
    
         
            -
                    - 1
         
     | 
| 
       79 
     | 
    
         
            -
                    - 6
         
     | 
| 
       80 
     | 
    
         
            -
                    - 1
         
     | 
| 
      
 51 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 52 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 53 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
       81 
54 
     | 
    
         
             
                    version: 1.6.1
         
     | 
| 
       82 
55 
     | 
    
         
             
                - - <
         
     | 
| 
       83 
     | 
    
         
            -
                  - !ruby/object:Gem::Version 
     | 
| 
       84 
     | 
    
         
            -
                    hash: 11
         
     | 
| 
       85 
     | 
    
         
            -
                    segments: 
         
     | 
| 
       86 
     | 
    
         
            -
                    - 1
         
     | 
| 
       87 
     | 
    
         
            -
                    - 7
         
     | 
| 
       88 
     | 
    
         
            -
                    - 0
         
     | 
| 
      
 56 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
       89 
57 
     | 
    
         
             
                    version: 1.7.0
         
     | 
| 
       90 
58 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       91 
     | 
    
         
            -
              version_requirements: *id004
         
     | 
| 
       92 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency 
         
     | 
| 
       93 
     | 
    
         
            -
              name: terminal-table
         
     | 
| 
       94 
59 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       95 
     | 
    
         
            -
               
     | 
| 
      
 60 
     | 
    
         
            +
              version_requirements: *8890760
         
     | 
| 
      
 61 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 62 
     | 
    
         
            +
              name: terminal-table
         
     | 
| 
      
 63 
     | 
    
         
            +
              requirement: &8905480 !ruby/object:Gem::Requirement
         
     | 
| 
       96 
64 
     | 
    
         
             
                none: false
         
     | 
| 
       97 
     | 
    
         
            -
                requirements: 
     | 
| 
      
 65 
     | 
    
         
            +
                requirements:
         
     | 
| 
       98 
66 
     | 
    
         
             
                - - ~>
         
     | 
| 
       99 
     | 
    
         
            -
                  - !ruby/object:Gem::Version 
     | 
| 
       100 
     | 
    
         
            -
                    hash: 3
         
     | 
| 
       101 
     | 
    
         
            -
                    segments: 
         
     | 
| 
       102 
     | 
    
         
            -
                    - 1
         
     | 
| 
       103 
     | 
    
         
            -
                    - 4
         
     | 
| 
       104 
     | 
    
         
            -
                    - 2
         
     | 
| 
      
 67 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
       105 
68 
     | 
    
         
             
                    version: 1.4.2
         
     | 
| 
       106 
69 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       107 
     | 
    
         
            -
              version_requirements: *id005
         
     | 
| 
       108 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency 
         
     | 
| 
       109 
     | 
    
         
            -
              name: rake
         
     | 
| 
       110 
70 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       111 
     | 
    
         
            -
               
     | 
| 
      
 71 
     | 
    
         
            +
              version_requirements: *8905480
         
     | 
| 
      
 72 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 73 
     | 
    
         
            +
              name: rake
         
     | 
| 
      
 74 
     | 
    
         
            +
              requirement: &8904180 !ruby/object:Gem::Requirement
         
     | 
| 
       112 
75 
     | 
    
         
             
                none: false
         
     | 
| 
       113 
     | 
    
         
            -
                requirements: 
     | 
| 
       114 
     | 
    
         
            -
                - -  
     | 
| 
       115 
     | 
    
         
            -
                  - !ruby/object:Gem::Version 
     | 
| 
       116 
     | 
    
         
            -
                     
     | 
| 
       117 
     | 
    
         
            -
                    segments: 
         
     | 
| 
       118 
     | 
    
         
            -
                    - 0
         
     | 
| 
       119 
     | 
    
         
            -
                    version: "0"
         
     | 
| 
      
 76 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 77 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 78 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 79 
     | 
    
         
            +
                    version: '0'
         
     | 
| 
       120 
80 
     | 
    
         
             
              type: :development
         
     | 
| 
       121 
     | 
    
         
            -
              version_requirements: *id006
         
     | 
| 
       122 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency 
         
     | 
| 
       123 
     | 
    
         
            -
              name: rspec
         
     | 
| 
       124 
81 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       125 
     | 
    
         
            -
               
     | 
| 
      
 82 
     | 
    
         
            +
              version_requirements: *8904180
         
     | 
| 
      
 83 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 84 
     | 
    
         
            +
              name: rspec
         
     | 
| 
      
 85 
     | 
    
         
            +
              requirement: &8902180 !ruby/object:Gem::Requirement
         
     | 
| 
       126 
86 
     | 
    
         
             
                none: false
         
     | 
| 
       127 
     | 
    
         
            -
                requirements: 
     | 
| 
      
 87 
     | 
    
         
            +
                requirements:
         
     | 
| 
       128 
88 
     | 
    
         
             
                - - ~>
         
     | 
| 
       129 
     | 
    
         
            -
                  - !ruby/object:Gem::Version 
     | 
| 
       130 
     | 
    
         
            -
                    hash: 27
         
     | 
| 
       131 
     | 
    
         
            -
                    segments: 
         
     | 
| 
       132 
     | 
    
         
            -
                    - 1
         
     | 
| 
       133 
     | 
    
         
            -
                    - 3
         
     | 
| 
       134 
     | 
    
         
            -
                    - 0
         
     | 
| 
      
 89 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
       135 
90 
     | 
    
         
             
                    version: 1.3.0
         
     | 
| 
       136 
91 
     | 
    
         
             
              type: :development
         
     | 
| 
       137 
     | 
    
         
            -
              version_requirements: *id007
         
     | 
| 
       138 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency 
         
     | 
| 
       139 
     | 
    
         
            -
              name: webmock
         
     | 
| 
       140 
92 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       141 
     | 
    
         
            -
               
     | 
| 
      
 93 
     | 
    
         
            +
              version_requirements: *8902180
         
     | 
| 
      
 94 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 95 
     | 
    
         
            +
              name: webmock
         
     | 
| 
      
 96 
     | 
    
         
            +
              requirement: &8900920 !ruby/object:Gem::Requirement
         
     | 
| 
       142 
97 
     | 
    
         
             
                none: false
         
     | 
| 
       143 
     | 
    
         
            -
                requirements: 
     | 
| 
      
 98 
     | 
    
         
            +
                requirements:
         
     | 
| 
       144 
99 
     | 
    
         
             
                - - ~>
         
     | 
| 
       145 
     | 
    
         
            -
                  - !ruby/object:Gem::Version 
     | 
| 
       146 
     | 
    
         
            -
                    hash: 3
         
     | 
| 
       147 
     | 
    
         
            -
                    segments: 
         
     | 
| 
       148 
     | 
    
         
            -
                    - 1
         
     | 
| 
       149 
     | 
    
         
            -
                    - 5
         
     | 
| 
       150 
     | 
    
         
            -
                    - 0
         
     | 
| 
      
 100 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
       151 
101 
     | 
    
         
             
                    version: 1.5.0
         
     | 
| 
       152 
102 
     | 
    
         
             
              type: :development
         
     | 
| 
       153 
     | 
    
         
            -
               
     | 
| 
      
 103 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 104 
     | 
    
         
            +
              version_requirements: *8900920
         
     | 
| 
       154 
105 
     | 
    
         
             
            description: Pi Command Line Tool
         
     | 
| 
       155 
106 
     | 
    
         
             
            email: bstpaas@gmail.com
         
     | 
| 
       156 
     | 
    
         
            -
            executables: 
     | 
| 
      
 107 
     | 
    
         
            +
            executables:
         
     | 
| 
       157 
108 
     | 
    
         
             
            - pi
         
     | 
| 
       158 
109 
     | 
    
         
             
            extensions: []
         
     | 
| 
       159 
     | 
    
         
            -
             
     | 
| 
       160 
     | 
    
         
            -
            extra_rdoc_files: 
         
     | 
| 
      
 110 
     | 
    
         
            +
            extra_rdoc_files:
         
     | 
| 
       161 
111 
     | 
    
         
             
            - README
         
     | 
| 
       162 
     | 
    
         
            -
            files: 
     | 
| 
      
 112 
     | 
    
         
            +
            files:
         
     | 
| 
       163 
113 
     | 
    
         
             
            - README
         
     | 
| 
       164 
114 
     | 
    
         
             
            - Rakefile
         
     | 
| 
       165 
     | 
    
         
            -
            - lib/cli.rb
         
     | 
| 
       166 
     | 
    
         
            -
            - lib/pi/const.rb
         
     | 
| 
       167 
115 
     | 
    
         
             
            - lib/pi/client.rb
         
     | 
| 
       168 
     | 
    
         
            -
            - lib/pi.rb
         
     | 
| 
       169 
     | 
    
         
            -
            - lib/cli 
     | 
| 
       170 
     | 
    
         
            -
            - lib/cli/config.rb
         
     | 
| 
      
 116 
     | 
    
         
            +
            - lib/pi/const.rb
         
     | 
| 
      
 117 
     | 
    
         
            +
            - lib/cli.rb
         
     | 
| 
       171 
118 
     | 
    
         
             
            - lib/cli/version.rb
         
     | 
| 
       172 
     | 
    
         
            -
            - lib/cli/ 
     | 
| 
      
 119 
     | 
    
         
            +
            - lib/cli/choose_helper.rb
         
     | 
| 
       173 
120 
     | 
    
         
             
            - lib/cli/usage.rb
         
     | 
| 
       174 
     | 
    
         
            -
            - lib/cli/runner.rb
         
     | 
| 
       175 
     | 
    
         
            -
            - lib/cli/interact_helper.rb
         
     | 
| 
       176 
     | 
    
         
            -
            - lib/cli/core_ext.rb
         
     | 
| 
       177 
     | 
    
         
            -
            - lib/cli/commands/misc.rb
         
     | 
| 
       178 
     | 
    
         
            -
            - lib/cli/commands/dns.rb
         
     | 
| 
       179 
     | 
    
         
            -
            - lib/cli/commands/base.rb
         
     | 
| 
       180 
121 
     | 
    
         
             
            - lib/cli/commands/apps.rb
         
     | 
| 
      
 122 
     | 
    
         
            +
            - lib/cli/commands/base.rb
         
     | 
| 
       181 
123 
     | 
    
         
             
            - lib/cli/commands/projects.rb
         
     | 
| 
       182 
124 
     | 
    
         
             
            - lib/cli/commands/user.rb
         
     | 
| 
      
 125 
     | 
    
         
            +
            - lib/cli/commands/misc.rb
         
     | 
| 
      
 126 
     | 
    
         
            +
            - lib/cli/commands/dns.rb
         
     | 
| 
       183 
127 
     | 
    
         
             
            - lib/cli/commands/services.rb
         
     | 
| 
      
 128 
     | 
    
         
            +
            - lib/cli/errors.rb
         
     | 
| 
      
 129 
     | 
    
         
            +
            - lib/cli/core_ext.rb
         
     | 
| 
      
 130 
     | 
    
         
            +
            - lib/cli/interact_helper.rb
         
     | 
| 
      
 131 
     | 
    
         
            +
            - lib/cli/config.rb
         
     | 
| 
      
 132 
     | 
    
         
            +
            - lib/cli/runner.rb
         
     | 
| 
      
 133 
     | 
    
         
            +
            - lib/pi.rb
         
     | 
| 
       184 
134 
     | 
    
         
             
            - bin/pi
         
     | 
| 
       185 
135 
     | 
    
         
             
            homepage: http://www.samsungcloud.org/
         
     | 
| 
       186 
136 
     | 
    
         
             
            licenses: []
         
     | 
| 
       187 
     | 
    
         
            -
             
     | 
| 
       188 
137 
     | 
    
         
             
            post_install_message: 
         
     | 
| 
       189 
138 
     | 
    
         
             
            rdoc_options: []
         
     | 
| 
       190 
     | 
    
         
            -
             
     | 
| 
       191 
     | 
    
         
            -
            require_paths: 
         
     | 
| 
      
 139 
     | 
    
         
            +
            require_paths:
         
     | 
| 
       192 
140 
     | 
    
         
             
            - lib
         
     | 
| 
       193 
     | 
    
         
            -
            required_ruby_version: !ruby/object:Gem::Requirement 
     | 
| 
      
 141 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
       194 
142 
     | 
    
         
             
              none: false
         
     | 
| 
       195 
     | 
    
         
            -
              requirements: 
     | 
| 
       196 
     | 
    
         
            -
              - -  
     | 
| 
       197 
     | 
    
         
            -
                - !ruby/object:Gem::Version 
     | 
| 
       198 
     | 
    
         
            -
                   
     | 
| 
       199 
     | 
    
         
            -
             
     | 
| 
       200 
     | 
    
         
            -
                  - 0
         
     | 
| 
       201 
     | 
    
         
            -
                  version: "0"
         
     | 
| 
       202 
     | 
    
         
            -
            required_rubygems_version: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 143 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 144 
     | 
    
         
            +
              - - ! '>='
         
     | 
| 
      
 145 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 146 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 147 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
       203 
148 
     | 
    
         
             
              none: false
         
     | 
| 
       204 
     | 
    
         
            -
              requirements: 
     | 
| 
       205 
     | 
    
         
            -
              - -  
     | 
| 
       206 
     | 
    
         
            -
                - !ruby/object:Gem::Version 
     | 
| 
       207 
     | 
    
         
            -
                   
     | 
| 
       208 
     | 
    
         
            -
                  segments: 
         
     | 
| 
       209 
     | 
    
         
            -
                  - 0
         
     | 
| 
       210 
     | 
    
         
            -
                  version: "0"
         
     | 
| 
      
 149 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 150 
     | 
    
         
            +
              - - ! '>='
         
     | 
| 
      
 151 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 152 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
       211 
153 
     | 
    
         
             
            requirements: []
         
     | 
| 
       212 
     | 
    
         
            -
             
     | 
| 
       213 
154 
     | 
    
         
             
            rubyforge_project: 
         
     | 
| 
       214 
     | 
    
         
            -
            rubygems_version: 1.8. 
     | 
| 
      
 155 
     | 
    
         
            +
            rubygems_version: 1.8.11
         
     | 
| 
       215 
156 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       216 
157 
     | 
    
         
             
            specification_version: 3
         
     | 
| 
       217 
158 
     | 
    
         
             
            summary: Commandline tool that provides access to Samsung Cloud Platform.
         
     | 
| 
       218 
159 
     | 
    
         
             
            test_files: []
         
     | 
| 
       219 
     | 
    
         
            -
             
     |