Class: GithubCLI::Commands::Gists
Constant Summary
GithubCLI::Command::ALIASES, GithubCLI::Command::API_CLASSES, GithubCLI::Command::HELP_COMMAND
Constants inherited
from Thor
Thor::DynamicTask, Thor::HELP_MAPPINGS, Thor::HiddenTask, Thor::MANPAGES, Thor::THOR_RESERVED_WORDS, Thor::Task, Thor::UndefinedTaskError, Thor::VERSION
Instance Attribute Summary
#behavior
Attributes included from Thor::Base
#args, #options, #parent_options
Instance Method Summary
collapse
all, api, banner, command_to_show, extract_namespace, is_api_command?, output_formats
#action, #append_to_file, #apply, #chmod, #comment_lines, #copy_file, #create_file, #create_link, #destination_root, #destination_root=, #directory, #empty_directory, #find_in_source_paths, #gsub_file, #in_root, included, #initialize, #inject_into_class, #insert_into_file, #inside, #link_file, #prepend_to_file, #relative_to_original_destination_root, #remove_file, #run, #run_ruby_script, #source_paths, #template, #thor, #uncomment_lines
Methods inherited from Thor
check_unknown_options!, check_unknown_options?, command_help, default_command, desc, global_flags, handle_no_task_error, help, #help, long_desc, map, method_option, method_options, printable_commands, register, stop_on_unknown_option!, stop_on_unknown_option?, subcommand, subcommands
Methods included from Thor::Base
included, #initialize, register_klass_file, shell, shell=, subclass_files, subclasses
Instance Method Details
#create ⇒ Object
45
46
47
48
49
50
51
|
# File 'lib/github_cli/commands/gists.rb', line 45
def create
params = options[:params].dup
params['description'] = options[:desc] if options[:desc]
params['public'] = options[:public] || false
params['files'] = options[:files] if options[:files]
Gist.create params, options[:format]
end
|
#delete(id) ⇒ Object
95
96
97
|
# File 'lib/github_cli/commands/gists.rb', line 95
def delete(id)
Gist.delete id, options[:params], options[:format]
end
|
#edit(id) ⇒ Object
67
68
69
70
71
72
|
# File 'lib/github_cli/commands/gists.rb', line 67
def edit(id)
params = options[:params].dup
params['description'] = options[:desc] if options[:desc]
params['files'] = options[:files] if options[:files]
Gist.edit id, params, options[:format]
end
|
#fork(id) ⇒ Object
90
91
92
|
# File 'lib/github_cli/commands/gists.rb', line 90
def fork(id)
Gist.fork id, options[:params], options[:format]
end
|
#get(id) ⇒ Object
26
27
28
|
# File 'lib/github_cli/commands/gists.rb', line 26
def get(id)
Gist.get id, options[:params], options[:format]
end
|
#list ⇒ Object
15
16
17
18
19
20
21
22
23
|
# File 'lib/github_cli/commands/gists.rb', line 15
def list
if options[:starred]
Gist.starred options[:params], options[:format]
else
params = options[:params].dup
params['user'] = options[:user] if options[:user]
Gist.all params, options[:format]
end
end
|
#star(id) ⇒ Object
75
76
77
|
# File 'lib/github_cli/commands/gists.rb', line 75
def star(id)
Gist.star id, options[:params], options[:format]
end
|
#starred(id) ⇒ Object
85
86
87
|
# File 'lib/github_cli/commands/gists.rb', line 85
def starred(id)
Gist.starred? id, options[:params], options[:format]
end
|
#unstar(id) ⇒ Object
80
81
82
|
# File 'lib/github_cli/commands/gists.rb', line 80
def unstar(id)
Gist.unstar id, options[:params], options[:format]
end
|