class CLAide::Plugins::Configuration

Attributes

name[RW]

name of the plugin

plugin_list_url[RW]

url for JSON file that holds list of plugins to show when searching

plugin_prefix[RW]

prefix to use when searching for gems to load at runtime

plugin_template_url[RW]

url for repo that holds template to use when creating a new plugin

Public Class Methods

new(name = 'default name', plugin_prefix = 'claide', plugin_list_url = 'https://github.com/cocoapods/claide-plugins/something.json', plugin_template_url = 'https://github.com/cocoapods/claide-plugins-template') click to toggle source
# File lib/claide/command/plugins_config.rb, line 18
def initialize(name = 'default name',
               plugin_prefix = 'claide',
               plugin_list_url = 'https://github.com/cocoapods/claide-plugins/something.json',
               plugin_template_url = 'https://github.com/cocoapods/claide-plugins-template')
  @name = name
  @plugin_prefix = plugin_prefix
  @plugin_list_url = plugin_list_url
  @plugin_template_url = plugin_template_url
end