Class: GithubCLI::Commands::References
- Inherits:
-
GithubCLI::Command
- Object
- Thor
- GithubCLI::Command
- GithubCLI::Commands::References
- Defined in:
- lib/github_cli/commands/references.rb
Constant Summary
Constants inherited from GithubCLI::Command
GithubCLI::Command::ALIASES, 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
Attributes included from Thor::Actions
Attributes included from Thor::Base
#args, #options, #parent_options
Instance Method Summary collapse
- #create(user, repo) ⇒ Object
- #delete(user, repo, ref) ⇒ Object
- #get(user, repo, ref) ⇒ Object
- #list(user, repo) ⇒ Object
- #update(user, repo, ref) ⇒ Object
Methods inherited from GithubCLI::Command
all, command_to_show, extract_namespace, is_api_command?, output_formats
Methods included from Thor::Actions
#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, package_name, 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(user, repo) ⇒ Object
39 40 41 42 43 44 45 46 |
# File 'lib/github_cli/commands/references.rb', line 39 def create(user, repo) = .dup params = [:params].dup params['ref'] = [:ref] if [:ref] params['sha'] = [:sha] if [:sha] Util.hash_without!(, params.keys + ['params']) Reference.create user, repo, params, end |
#delete(user, repo, ref) ⇒ Object
69 70 71 72 73 74 |
# File 'lib/github_cli/commands/references.rb', line 69 def delete(user, repo, ref) = .dup params = [:params].dup Util.hash_without!(, params.keys + ['params']) Reference.delete user, repo, ref, params, end |
#get(user, repo, ref) ⇒ Object
21 22 23 24 25 26 |
# File 'lib/github_cli/commands/references.rb', line 21 def get(user, repo, ref) = .dup params = [:params].dup Util.hash_without!(, params.keys + ['params']) Reference.get user, repo, ref, params, end |
#list(user, repo) ⇒ Object
10 11 12 13 14 15 16 17 18 |
# File 'lib/github_cli/commands/references.rb', line 10 def list(user, repo) = .dup params = [:params].dup if [:ref] params['ref'] = [:ref] end Util.hash_without!(, params.keys + ['params']) Reference.list user, repo, params, end |
#update(user, repo, ref) ⇒ Object
59 60 61 62 63 64 65 66 |
# File 'lib/github_cli/commands/references.rb', line 59 def update(user, repo, ref) = .dup params = [:params].dup params['sha'] = [:sha] if [:sha] params['force'] = [:force] || false Util.hash_without!(, params.keys + ['params']) Reference.update user, repo, ref, params, end |