Class: Nimbu::Command::Sites

Inherits:
Base
  • Object
show all
Defined in:
lib/nimbu/command/sites.rb

Overview

interacting with your sites (list, create)

Instance Attribute Summary

Attributes inherited from Base

#args, #options

Instance Method Summary collapse

Methods inherited from Base

#initialize, namespace, #nimbu

Methods included from Helpers

#action, #ask, #confirm, #confirm_billing, #confirm_command, #create_git_remote, #deprecate, disable_error_capture, #display, #display_header, #display_object, #display_row, #display_table, enable_error_capture, #error, error_with_failure, error_with_failure=, extended, extended_into, #fail, #format_bytes, #format_date, #format_error, #format_with_bang, #get_terminal_environment, #git, #has_git?, #home_directory, #hprint, #hputs, included, included_into, #json_decode, #json_encode, #launchy, #line_formatter, #longest, #output, #output_with_arrow, #output_with_bang, #quantify, #redisplay, #retry_on_exception, #run_command, #running_on_a_mac?, #running_on_windows?, #set_buffer, #shell, #spinner, #status, #string_distance, #styled_array, #styled_error, #styled_hash, #styled_header, #suggestion, #time_ago, #truncate, #with_tty

Methods included from Helpers::System

#browser_launcher, #command?, #osx?, #tmp_dir, #which, #windows?

Constructor Details

This class inherits a constructor from Nimbu::Command::Base

Instance Method Details

#indexObject

sites

list sites you can edit



11
12
13
14
15
16
17
18
19
20
21
# File 'lib/nimbu/command/sites.rb', line 11

def index
  sites = nimbu.sites.list
  if sites.respond_to?(:any?) && sites.any?
    display "\nYou have access to following sites:\n"
    sites.each do |site|
      display " - #{site.name.white.bold} => http://#{site.domain}"
    end
  else
    display "You don't have access to any Nimbu sites."
  end
end

#listObject

sites:list

list sites you can edit



27
28
29
# File 'lib/nimbu/command/sites.rb', line 27

def list
  return index
end