id
int32
0
24.9k
repo
stringlengths
5
58
path
stringlengths
9
168
func_name
stringlengths
9
130
original_string
stringlengths
66
10.5k
language
stringclasses
1 value
code
stringlengths
66
10.5k
code_tokens
sequence
docstring
stringlengths
8
16k
docstring_tokens
sequence
sha
stringlengths
40
40
url
stringlengths
94
266
24,100
masa16/phys-units
lib/phys/units/unit.rb
Phys.Unit.inverse
def inverse check_operable dims = dimension_uop{|a| -a} Unit.new(Rational(1,self.factor), dims) end
ruby
def inverse check_operable dims = dimension_uop{|a| -a} Unit.new(Rational(1,self.factor), dims) end
[ "def", "inverse", "check_operable", "dims", "=", "dimension_uop", "{", "|", "a", "|", "-", "a", "}", "Unit", ".", "new", "(", "Rational", "(", "1", ",", "self", ".", "factor", ")", ",", "dims", ")", "end" ]
Inverse of units. This unit must be operable. @param [Phys::Unit, Numeric] unit @return [Phys::Unit] @raise [Phys::UnitError] if not operable.
[ "Inverse", "of", "units", ".", "This", "unit", "must", "be", "operable", "." ]
f781f0a031f5476940c4acc175ff5a9cfd197d84
https://github.com/masa16/phys-units/blob/f781f0a031f5476940c4acc175ff5a9cfd197d84/lib/phys/units/unit.rb#L509-L513
24,101
masa16/phys-units
lib/phys/units/unit.rb
Phys.Unit.**
def **(x) check_operable m = Utils.as_numeric(x) dims = dimension_uop{|a| a*m} Unit.new(@factor**m,dims) end
ruby
def **(x) check_operable m = Utils.as_numeric(x) dims = dimension_uop{|a| a*m} Unit.new(@factor**m,dims) end
[ "def", "**", "(", "x", ")", "check_operable", "m", "=", "Utils", ".", "as_numeric", "(", "x", ")", "dims", "=", "dimension_uop", "{", "|", "a", "|", "a", "m", "}", "Unit", ".", "new", "(", "@factor", "**", "m", ",", "dims", ")", "end" ]
Exponentiation of units. This units must be operable. @param [Numeric] x numeric @return [Phys::Unit] @raise [Phys::UnitError] if not operable.
[ "Exponentiation", "of", "units", ".", "This", "units", "must", "be", "operable", "." ]
f781f0a031f5476940c4acc175ff5a9cfd197d84
https://github.com/masa16/phys-units/blob/f781f0a031f5476940c4acc175ff5a9cfd197d84/lib/phys/units/unit.rb#L520-L525
24,102
openfoodfacts/openfoodfacts-ruby
lib/openfoodfacts/country.rb
Openfoodfacts.Country.products
def products(page: -1) Product.from_website_page(url, page: page, products_count: products_count) if url end
ruby
def products(page: -1) Product.from_website_page(url, page: page, products_count: products_count) if url end
[ "def", "products", "(", "page", ":", "-", "1", ")", "Product", ".", "from_website_page", "(", "url", ",", "page", ":", "page", ",", "products_count", ":", "products_count", ")", "if", "url", "end" ]
Get products with country
[ "Get", "products", "with", "country" ]
34bfbcb090ec8fc355b2da76ca73421a68aeb84c
https://github.com/openfoodfacts/openfoodfacts-ruby/blob/34bfbcb090ec8fc355b2da76ca73421a68aeb84c/lib/openfoodfacts/country.rb#L28-L30
24,103
pellegrino/jackpot
app/mailers/jackpot/notifier.rb
Jackpot.Notifier.send_receipt
def send_receipt(payment) @payment = payment @payment_url = public_receipt_payment_url(:payment_id => @payment.id, :public_token => @payment.public_token) mail(:to => "#{@payment.customer.email}", :from => Jackpot.configuration.mailer[:from], :subject => "Payment receipt") end
ruby
def send_receipt(payment) @payment = payment @payment_url = public_receipt_payment_url(:payment_id => @payment.id, :public_token => @payment.public_token) mail(:to => "#{@payment.customer.email}", :from => Jackpot.configuration.mailer[:from], :subject => "Payment receipt") end
[ "def", "send_receipt", "(", "payment", ")", "@payment", "=", "payment", "@payment_url", "=", "public_receipt_payment_url", "(", ":payment_id", "=>", "@payment", ".", "id", ",", ":public_token", "=>", "@payment", ".", "public_token", ")", "mail", "(", ":to", "=>", "\"#{@payment.customer.email}\"", ",", ":from", "=>", "Jackpot", ".", "configuration", ".", "mailer", "[", ":from", "]", ",", ":subject", "=>", "\"Payment receipt\"", ")", "end" ]
Sends the receipt to the customer who made this payment
[ "Sends", "the", "receipt", "to", "the", "customer", "who", "made", "this", "payment" ]
188b476cd26f319ee7f5cceceb1caa4205424ed8
https://github.com/pellegrino/jackpot/blob/188b476cd26f319ee7f5cceceb1caa4205424ed8/app/mailers/jackpot/notifier.rb#L9-L17
24,104
planio-gmbh/plaintext
lib/plaintext/resolver.rb
Plaintext.Resolver.text
def text if handler = find_handler and text = handler.text(@file, max_size: max_plaintext_bytes) text.gsub!(/\s+/m, ' ') text.strip! text.mb_chars.compose.limit(max_plaintext_bytes).to_s end end
ruby
def text if handler = find_handler and text = handler.text(@file, max_size: max_plaintext_bytes) text.gsub!(/\s+/m, ' ') text.strip! text.mb_chars.compose.limit(max_plaintext_bytes).to_s end end
[ "def", "text", "if", "handler", "=", "find_handler", "and", "text", "=", "handler", ".", "text", "(", "@file", ",", "max_size", ":", "max_plaintext_bytes", ")", "text", ".", "gsub!", "(", "/", "\\s", "/m", ",", "' '", ")", "text", ".", "strip!", "text", ".", "mb_chars", ".", "compose", ".", "limit", "(", "max_plaintext_bytes", ")", ".", "to_s", "end", "end" ]
Returns the extracted fulltext or nil if no matching handler was found for the file type.
[ "Returns", "the", "extracted", "fulltext", "or", "nil", "if", "no", "matching", "handler", "was", "found", "for", "the", "file", "type", "." ]
3adf9266d7d998cae6a5f5a4c360b232dab2de8f
https://github.com/planio-gmbh/plaintext/blob/3adf9266d7d998cae6a5f5a4c360b232dab2de8f/lib/plaintext/resolver.rb#L37-L45
24,105
sonots/kondate
lib/kondate/role_file.rb
Kondate.RoleFile.explore
def explore paths = if Config.explore_role_files? possible_paths else [get_path] end paths.find {|path| File.readable?(path) } || paths.last end
ruby
def explore paths = if Config.explore_role_files? possible_paths else [get_path] end paths.find {|path| File.readable?(path) } || paths.last end
[ "def", "explore", "paths", "=", "if", "Config", ".", "explore_role_files?", "possible_paths", "else", "[", "get_path", "]", "end", "paths", ".", "find", "{", "|", "path", "|", "File", ".", "readable?", "(", "path", ")", "}", "||", "paths", ".", "last", "end" ]
Returns readable role file exploring possible role files. For example, if `role` is `myapp-web-staging`, this method explores files as 1. myapp-web-staging.yml 1. myapp-web-base.yml 1. myapp-web.yml 1. myapp-base.yml 1. myapp.yml 1. base.yml @return [String] detected file path or last candidate path
[ "Returns", "readable", "role", "file", "exploring", "possible", "role", "files", ".", "For", "example", "if", "role", "is", "myapp", "-", "web", "-", "staging", "this", "method", "explores", "files", "as" ]
a56d520b08a1a2bf2d992067ef017175401684ef
https://github.com/sonots/kondate/blob/a56d520b08a1a2bf2d992067ef017175401684ef/lib/kondate/role_file.rb#L28-L35
24,106
jronallo/djatoka
lib/djatoka/view_helpers.rb
Djatoka.ViewHelpers.djatoka_init_openlayers
def djatoka_init_openlayers(rft_id, div_identifier, params={}) resolver = determine_resolver(params) metadata_url = resolver.metadata_url(rft_id) %Q|<script type="text/javascript"> jQuery(document).ready(function() {openlayersInit('#{resolver.scheme}://#{resolver.host}', '#{metadata_url}', '#{rft_id}', '#{div_identifier}'); }); </script> | end
ruby
def djatoka_init_openlayers(rft_id, div_identifier, params={}) resolver = determine_resolver(params) metadata_url = resolver.metadata_url(rft_id) %Q|<script type="text/javascript"> jQuery(document).ready(function() {openlayersInit('#{resolver.scheme}://#{resolver.host}', '#{metadata_url}', '#{rft_id}', '#{div_identifier}'); }); </script> | end
[ "def", "djatoka_init_openlayers", "(", "rft_id", ",", "div_identifier", ",", "params", "=", "{", "}", ")", "resolver", "=", "determine_resolver", "(", "params", ")", "metadata_url", "=", "resolver", ".", "metadata_url", "(", "rft_id", ")", "%Q|<script type=\"text/javascript\">\n jQuery(document).ready(function() {openlayersInit('#{resolver.scheme}://#{resolver.host}',\n '#{metadata_url}',\n '#{rft_id}', '#{div_identifier}');\n });\n </script>\n |", "end" ]
View helper to include a bit of jQuery on the page which waits for document load and then initializes the Ajax, OpenLayers viewer. Since this works via Ajax, Djatoka will need to be running or proxied at the same domain as the application to avoid cross-domain restrictions.
[ "View", "helper", "to", "include", "a", "bit", "of", "jQuery", "on", "the", "page", "which", "waits", "for", "document", "load", "and", "then", "initializes", "the", "Ajax", "OpenLayers", "viewer", ".", "Since", "this", "works", "via", "Ajax", "Djatoka", "will", "need", "to", "be", "running", "or", "proxied", "at", "the", "same", "domain", "as", "the", "application", "to", "avoid", "cross", "-", "domain", "restrictions", "." ]
95e99ac48fbaff938ac9795cf9c193881925cc3b
https://github.com/jronallo/djatoka/blob/95e99ac48fbaff938ac9795cf9c193881925cc3b/lib/djatoka/view_helpers.rb#L93-L103
24,107
kwi/i18n_routing
lib/i18n_routing_rails31.rb
I18nRouting.Mapper.localized_resources
def localized_resources(type = :resources, *resources, &block) localizable_route = nil if @locales res = resources.clone options = res.extract_options! r = res.first resource = resource_from_params(type, r, options.dup) # Check for translated resource stored_locale = I18n.locale @locales.each do |locale| I18n.locale = locale localized_path = I18nRouting.translation_for(resource.name, type) # A translated route exists : if !localized_path.blank? and String === localized_path puts("[I18n] > localize %-10s: %40s (%s) => /%s" % [type, resource.name, locale, localized_path]) if @i18n_verbose opts = options.dup opts[:path] = localized_path opts[:controller] ||= r.to_s.pluralize resource = resource_from_params(type, r, opts.dup) res = ["#{I18nRouting.locale_escaped(locale)}_#{r}".to_sym, opts] constraints = opts[:constraints] ? opts[:constraints].dup : {} constraints[:i18n_locale] = locale.to_s scope(:constraints => constraints, :path_names => I18nRouting.path_names(resource.name, @scope)) do localized_branch(locale) do send(type, *res) do # In the resource(s) block, we need to keep and restore some context : if block old_name = @scope[:i18n_real_resource_name] old = @scope[:scope_level_resource] @scope[:i18n_real_resource_name] = resource.name @scope[:i18n_scope_level_resource] = old @scope[:scope_level_resource] = resource if type == :resource and @scope[:name_prefix] # Need to fake name_prefix for singleton resource @scope[:name_prefix] = @scope[:name_prefix].gsub(Regexp.new("#{old.name}$"), resource.name) end block.call if block @scope[:scope_level_resource] = old @scope[:i18n_real_resource_name] = old_name end @scope[:i18n_scope_level_resource] = nil end end end localizable_route = resource end end I18n.locale = stored_locale end return localizable_route end
ruby
def localized_resources(type = :resources, *resources, &block) localizable_route = nil if @locales res = resources.clone options = res.extract_options! r = res.first resource = resource_from_params(type, r, options.dup) # Check for translated resource stored_locale = I18n.locale @locales.each do |locale| I18n.locale = locale localized_path = I18nRouting.translation_for(resource.name, type) # A translated route exists : if !localized_path.blank? and String === localized_path puts("[I18n] > localize %-10s: %40s (%s) => /%s" % [type, resource.name, locale, localized_path]) if @i18n_verbose opts = options.dup opts[:path] = localized_path opts[:controller] ||= r.to_s.pluralize resource = resource_from_params(type, r, opts.dup) res = ["#{I18nRouting.locale_escaped(locale)}_#{r}".to_sym, opts] constraints = opts[:constraints] ? opts[:constraints].dup : {} constraints[:i18n_locale] = locale.to_s scope(:constraints => constraints, :path_names => I18nRouting.path_names(resource.name, @scope)) do localized_branch(locale) do send(type, *res) do # In the resource(s) block, we need to keep and restore some context : if block old_name = @scope[:i18n_real_resource_name] old = @scope[:scope_level_resource] @scope[:i18n_real_resource_name] = resource.name @scope[:i18n_scope_level_resource] = old @scope[:scope_level_resource] = resource if type == :resource and @scope[:name_prefix] # Need to fake name_prefix for singleton resource @scope[:name_prefix] = @scope[:name_prefix].gsub(Regexp.new("#{old.name}$"), resource.name) end block.call if block @scope[:scope_level_resource] = old @scope[:i18n_real_resource_name] = old_name end @scope[:i18n_scope_level_resource] = nil end end end localizable_route = resource end end I18n.locale = stored_locale end return localizable_route end
[ "def", "localized_resources", "(", "type", "=", ":resources", ",", "*", "resources", ",", "&", "block", ")", "localizable_route", "=", "nil", "if", "@locales", "res", "=", "resources", ".", "clone", "options", "=", "res", ".", "extract_options!", "r", "=", "res", ".", "first", "resource", "=", "resource_from_params", "(", "type", ",", "r", ",", "options", ".", "dup", ")", "# Check for translated resource", "stored_locale", "=", "I18n", ".", "locale", "@locales", ".", "each", "do", "|", "locale", "|", "I18n", ".", "locale", "=", "locale", "localized_path", "=", "I18nRouting", ".", "translation_for", "(", "resource", ".", "name", ",", "type", ")", "# A translated route exists :", "if", "!", "localized_path", ".", "blank?", "and", "String", "===", "localized_path", "puts", "(", "\"[I18n] > localize %-10s: %40s (%s) => /%s\"", "%", "[", "type", ",", "resource", ".", "name", ",", "locale", ",", "localized_path", "]", ")", "if", "@i18n_verbose", "opts", "=", "options", ".", "dup", "opts", "[", ":path", "]", "=", "localized_path", "opts", "[", ":controller", "]", "||=", "r", ".", "to_s", ".", "pluralize", "resource", "=", "resource_from_params", "(", "type", ",", "r", ",", "opts", ".", "dup", ")", "res", "=", "[", "\"#{I18nRouting.locale_escaped(locale)}_#{r}\"", ".", "to_sym", ",", "opts", "]", "constraints", "=", "opts", "[", ":constraints", "]", "?", "opts", "[", ":constraints", "]", ".", "dup", ":", "{", "}", "constraints", "[", ":i18n_locale", "]", "=", "locale", ".", "to_s", "scope", "(", ":constraints", "=>", "constraints", ",", ":path_names", "=>", "I18nRouting", ".", "path_names", "(", "resource", ".", "name", ",", "@scope", ")", ")", "do", "localized_branch", "(", "locale", ")", "do", "send", "(", "type", ",", "res", ")", "do", "# In the resource(s) block, we need to keep and restore some context :", "if", "block", "old_name", "=", "@scope", "[", ":i18n_real_resource_name", "]", "old", "=", "@scope", "[", ":scope_level_resource", "]", "@scope", "[", ":i18n_real_resource_name", "]", "=", "resource", ".", "name", "@scope", "[", ":i18n_scope_level_resource", "]", "=", "old", "@scope", "[", ":scope_level_resource", "]", "=", "resource", "if", "type", "==", ":resource", "and", "@scope", "[", ":name_prefix", "]", "# Need to fake name_prefix for singleton resource", "@scope", "[", ":name_prefix", "]", "=", "@scope", "[", ":name_prefix", "]", ".", "gsub", "(", "Regexp", ".", "new", "(", "\"#{old.name}$\"", ")", ",", "resource", ".", "name", ")", "end", "block", ".", "call", "if", "block", "@scope", "[", ":scope_level_resource", "]", "=", "old", "@scope", "[", ":i18n_real_resource_name", "]", "=", "old_name", "end", "@scope", "[", ":i18n_scope_level_resource", "]", "=", "nil", "end", "end", "end", "localizable_route", "=", "resource", "end", "end", "I18n", ".", "locale", "=", "stored_locale", "end", "return", "localizable_route", "end" ]
Localize a resources or a resource
[ "Localize", "a", "resources", "or", "a", "resource" ]
edd30ac3445b928f34a97e3762df0ded3c136230
https://github.com/kwi/i18n_routing/blob/edd30ac3445b928f34a97e3762df0ded3c136230/lib/i18n_routing_rails31.rb#L22-L89
24,108
kwi/i18n_routing
lib/i18n_routing_rails31.rb
I18nRouting.RackMountRoute.initialize_with_i18n_routing
def initialize_with_i18n_routing(app, conditions, defaults, name) @locale = if conditions.key?(:i18n_locale) c = conditions.delete(:i18n_locale) # In rails 3.0 it's a regexp otherwise it's a string, so we need to call source on the regexp (c.respond_to?(:source) ? c.source : c).to_sym else nil end initialize_without_i18n_routing(app, conditions, defaults, name) end
ruby
def initialize_with_i18n_routing(app, conditions, defaults, name) @locale = if conditions.key?(:i18n_locale) c = conditions.delete(:i18n_locale) # In rails 3.0 it's a regexp otherwise it's a string, so we need to call source on the regexp (c.respond_to?(:source) ? c.source : c).to_sym else nil end initialize_without_i18n_routing(app, conditions, defaults, name) end
[ "def", "initialize_with_i18n_routing", "(", "app", ",", "conditions", ",", "defaults", ",", "name", ")", "@locale", "=", "if", "conditions", ".", "key?", "(", ":i18n_locale", ")", "c", "=", "conditions", ".", "delete", "(", ":i18n_locale", ")", "# In rails 3.0 it's a regexp otherwise it's a string, so we need to call source on the regexp", "(", "c", ".", "respond_to?", "(", ":source", ")", "?", "c", ".", "source", ":", "c", ")", ".", "to_sym", "else", "nil", "end", "initialize_without_i18n_routing", "(", "app", ",", "conditions", ",", "defaults", ",", "name", ")", "end" ]
During route initialization, if a condition i18n_locale is present Delete it, and store it in @locale
[ "During", "route", "initialization", "if", "a", "condition", "i18n_locale", "is", "present", "Delete", "it", "and", "store", "it", "in" ]
edd30ac3445b928f34a97e3762df0ded3c136230
https://github.com/kwi/i18n_routing/blob/edd30ac3445b928f34a97e3762df0ded3c136230/lib/i18n_routing_rails31.rb#L401-L410
24,109
kwi/i18n_routing
lib/i18n_routing_rails31.rb
I18nRouting.RackMountRoute.generate_with_i18n_routing
def generate_with_i18n_routing(method, params = {}, recall = {}, options = {}) return nil if @locale and @locale != I18n.locale.to_sym generate_without_i18n_routing(method, params, recall, options) end
ruby
def generate_with_i18n_routing(method, params = {}, recall = {}, options = {}) return nil if @locale and @locale != I18n.locale.to_sym generate_without_i18n_routing(method, params, recall, options) end
[ "def", "generate_with_i18n_routing", "(", "method", ",", "params", "=", "{", "}", ",", "recall", "=", "{", "}", ",", "options", "=", "{", "}", ")", "return", "nil", "if", "@locale", "and", "@locale", "!=", "I18n", ".", "locale", ".", "to_sym", "generate_without_i18n_routing", "(", "method", ",", "params", ",", "recall", ",", "options", ")", "end" ]
Called for dynamic route generation If a @locale is present and if this locale is not the current one => return nil and refuse to generate the route
[ "Called", "for", "dynamic", "route", "generation", "If", "a" ]
edd30ac3445b928f34a97e3762df0ded3c136230
https://github.com/kwi/i18n_routing/blob/edd30ac3445b928f34a97e3762df0ded3c136230/lib/i18n_routing_rails31.rb#L415-L418
24,110
snltd/wavefront-sdk
lib/wavefront-sdk/maintenancewindow.rb
Wavefront.MaintenanceWindow.pending
def pending(hours = 24) cutoff = Time.now.to_i + hours * 3600 windows_in_state(:pending).tap do |r| r.response.items.delete_if { |w| w.startTimeInSeconds > cutoff } end end
ruby
def pending(hours = 24) cutoff = Time.now.to_i + hours * 3600 windows_in_state(:pending).tap do |r| r.response.items.delete_if { |w| w.startTimeInSeconds > cutoff } end end
[ "def", "pending", "(", "hours", "=", "24", ")", "cutoff", "=", "Time", ".", "now", ".", "to_i", "+", "hours", "*", "3600", "windows_in_state", "(", ":pending", ")", ".", "tap", "do", "|", "r", "|", "r", ".", "response", ".", "items", ".", "delete_if", "{", "|", "w", "|", "w", ".", "startTimeInSeconds", ">", "cutoff", "}", "end", "end" ]
Get the windows which will be open in the next so-many hours @param hours [Numeric] how many hours to look ahead @return [Wavefront::Response]
[ "Get", "the", "windows", "which", "will", "be", "open", "in", "the", "next", "so", "-", "many", "hours" ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/maintenancewindow.rb#L92-L98
24,111
boxgrinder/boxgrinder-build
lib/boxgrinder-build/plugins/delivery/s3/s3-plugin.rb
BoxGrinder.S3Plugin.constraint_equal?
def constraint_equal?(region, constraint) [region, constraint].collect{ |v| v.nil? || v == '' ? 'us-east-1' : v }.reduce(:==) end
ruby
def constraint_equal?(region, constraint) [region, constraint].collect{ |v| v.nil? || v == '' ? 'us-east-1' : v }.reduce(:==) end
[ "def", "constraint_equal?", "(", "region", ",", "constraint", ")", "[", "region", ",", "constraint", "]", ".", "collect", "{", "|", "v", "|", "v", ".", "nil?", "||", "v", "==", "''", "?", "'us-east-1'", ":", "v", "}", ".", "reduce", "(", ":==", ")", "end" ]
US default constraint is often represented as '' or nil
[ "US", "default", "constraint", "is", "often", "represented", "as", "or", "nil" ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/plugins/delivery/s3/s3-plugin.rb#L246-L248
24,112
jasonroelofs/rbgccxml
lib/rbgccxml/nodes/type.rb
RbGCCXML.Type.check_sub_type_without
def check_sub_type_without(val, delim) return false unless val =~ delim new_val = val.gsub(delim, "").strip NodeCache.find(attributes["type"]) == new_valu end
ruby
def check_sub_type_without(val, delim) return false unless val =~ delim new_val = val.gsub(delim, "").strip NodeCache.find(attributes["type"]) == new_valu end
[ "def", "check_sub_type_without", "(", "val", ",", "delim", ")", "return", "false", "unless", "val", "=~", "delim", "new_val", "=", "val", ".", "gsub", "(", "delim", ",", "\"\"", ")", ".", "strip", "NodeCache", ".", "find", "(", "attributes", "[", "\"type\"", "]", ")", "==", "new_valu", "end" ]
For types like pointers or references, we recursively track down the base type when doing comparisons. delim needs to be a regex
[ "For", "types", "like", "pointers", "or", "references", "we", "recursively", "track", "down", "the", "base", "type", "when", "doing", "comparisons", "." ]
f9051f46277a6b4f580dd779012c61e482d11410
https://github.com/jasonroelofs/rbgccxml/blob/f9051f46277a6b4f580dd779012c61e482d11410/lib/rbgccxml/nodes/type.rb#L12-L16
24,113
enkessler/cucumber_analytics
lib/cucumber_analytics/feature.rb
CucumberAnalytics.Feature.to_s
def to_s text = '' text << tag_output_string + "\n" unless tags.empty? text << "Feature:#{name_output_string}" text << "\n" + description_output_string unless description_text.empty? text << "\n\n" + background_output_string if background text << "\n\n" + tests_output_string unless tests.empty? text end
ruby
def to_s text = '' text << tag_output_string + "\n" unless tags.empty? text << "Feature:#{name_output_string}" text << "\n" + description_output_string unless description_text.empty? text << "\n\n" + background_output_string if background text << "\n\n" + tests_output_string unless tests.empty? text end
[ "def", "to_s", "text", "=", "''", "text", "<<", "tag_output_string", "+", "\"\\n\"", "unless", "tags", ".", "empty?", "text", "<<", "\"Feature:#{name_output_string}\"", "text", "<<", "\"\\n\"", "+", "description_output_string", "unless", "description_text", ".", "empty?", "text", "<<", "\"\\n\\n\"", "+", "background_output_string", "if", "background", "text", "<<", "\"\\n\\n\"", "+", "tests_output_string", "unless", "tests", ".", "empty?", "text", "end" ]
Returns gherkin representation of the feature.
[ "Returns", "gherkin", "representation", "of", "the", "feature", "." ]
a74642d30b3566fc11fb43c920518fea4587c6bd
https://github.com/enkessler/cucumber_analytics/blob/a74642d30b3566fc11fb43c920518fea4587c6bd/lib/cucumber_analytics/feature.rb#L79-L89
24,114
boxgrinder/boxgrinder-build
lib/boxgrinder-build/plugins/delivery/openstack/openstack-plugin.rb
BoxGrinder.OpenStackPlugin.get_images
def get_images(params = {}) @log.trace "Listing images with params = #{params.to_json}..." data = JSON.parse(RestClient.get("#{url}/v1/images", :params => params))['images'] @log.trace "Listing done." data end
ruby
def get_images(params = {}) @log.trace "Listing images with params = #{params.to_json}..." data = JSON.parse(RestClient.get("#{url}/v1/images", :params => params))['images'] @log.trace "Listing done." data end
[ "def", "get_images", "(", "params", "=", "{", "}", ")", "@log", ".", "trace", "\"Listing images with params = #{params.to_json}...\"", "data", "=", "JSON", ".", "parse", "(", "RestClient", ".", "get", "(", "\"#{url}/v1/images\"", ",", ":params", "=>", "params", ")", ")", "[", "'images'", "]", "@log", ".", "trace", "\"Listing done.\"", "data", "end" ]
Retrieves a list of public images with specified filter. If no filter is specified - all images are returned.
[ "Retrieves", "a", "list", "of", "public", "images", "with", "specified", "filter", ".", "If", "no", "filter", "is", "specified", "-", "all", "images", "are", "returned", "." ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/plugins/delivery/openstack/openstack-plugin.rb#L121-L126
24,115
snltd/wavefront-sdk
lib/wavefront-sdk/alert.rb
Wavefront.Alert.versions
def versions(id) wf_alert_id?(id) resp = api.get([id, 'history'].uri_concat) versions = resp.response.items.map(&:version) resp.response[:items] = versions resp end
ruby
def versions(id) wf_alert_id?(id) resp = api.get([id, 'history'].uri_concat) versions = resp.response.items.map(&:version) resp.response[:items] = versions resp end
[ "def", "versions", "(", "id", ")", "wf_alert_id?", "(", "id", ")", "resp", "=", "api", ".", "get", "(", "[", "id", ",", "'history'", "]", ".", "uri_concat", ")", "versions", "=", "resp", ".", "response", ".", "items", ".", "map", "(", ":version", ")", "resp", ".", "response", "[", ":items", "]", "=", "versions", "resp", "end" ]
Gets all the versions of the given alert @param id [String] ID of the alert @reutrn [Wavefront::Resonse] where items is an array of integers
[ "Gets", "all", "the", "versions", "of", "the", "given", "alert" ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/alert.rb#L80-L87
24,116
huerlisi/i18n_rails_helpers
lib/i18n_rails_helpers/model_helpers.rb
I18nRailsHelpers.ModelHelpers.define_enum_t_methods
def define_enum_t_methods defined_enums.each do |enum_attr, values| self.class.send(:define_method, "#{enum_attr}_t") { t_enum(enum_attr) } self.class.send(:define_method, "#{enum_attr.pluralize}_t") do t_enum_values(enum_attr, values) end end end
ruby
def define_enum_t_methods defined_enums.each do |enum_attr, values| self.class.send(:define_method, "#{enum_attr}_t") { t_enum(enum_attr) } self.class.send(:define_method, "#{enum_attr.pluralize}_t") do t_enum_values(enum_attr, values) end end end
[ "def", "define_enum_t_methods", "defined_enums", ".", "each", "do", "|", "enum_attr", ",", "values", "|", "self", ".", "class", ".", "send", "(", ":define_method", ",", "\"#{enum_attr}_t\"", ")", "{", "t_enum", "(", "enum_attr", ")", "}", "self", ".", "class", ".", "send", "(", ":define_method", ",", "\"#{enum_attr.pluralize}_t\"", ")", "do", "t_enum_values", "(", "enum_attr", ",", "values", ")", "end", "end", "end" ]
enum attrubute_t and attributes_t return translated enum values Example: in the Client model enum gender: { undefined: 0, female: 1, male: 2 } in use Client.first.gender # => 'female' Client.first.gender_t # => 'Frau' Client.first.genders_t # => { undefined: 'Nicht definiert', female: 'Frau', male: 'Mann' } Requires: locale key: activerecord.attributes.#{model_name}.#{enum}.#{enum_value_key} eg.: activerecord.attributes.client.genders.female # => 'Frau'
[ "enum", "attrubute_t", "and", "attributes_t", "return", "translated", "enum", "values" ]
4faa6d84ebb4465798246d2bb6d6e353a21d5de8
https://github.com/huerlisi/i18n_rails_helpers/blob/4faa6d84ebb4465798246d2bb6d6e353a21d5de8/lib/i18n_rails_helpers/model_helpers.rb#L17-L24
24,117
snltd/wavefront-sdk
lib/wavefront-sdk/support/mixins.rb
Wavefront.Mixins.parse_time
def parse_time(time, in_ms = false) return relative_time(time, in_ms) if time =~ /^[\-+]/ ParseTime.new(time, in_ms).parse! end
ruby
def parse_time(time, in_ms = false) return relative_time(time, in_ms) if time =~ /^[\-+]/ ParseTime.new(time, in_ms).parse! end
[ "def", "parse_time", "(", "time", ",", "in_ms", "=", "false", ")", "return", "relative_time", "(", "time", ",", "in_ms", ")", "if", "time", "=~", "/", "\\-", "/", "ParseTime", ".", "new", "(", "time", ",", "in_ms", ")", ".", "parse!", "end" ]
Return a time as an integer, however it might come in. @param time [Integer, String, Time] timestamp @param in_ms [Boolean] whether to return epoch milliseconds. Passing in an integer timestamp returns itself, regardless of this value @return [Integer] epoch time in seconds @raise Wavefront::InvalidTimestamp
[ "Return", "a", "time", "as", "an", "integer", "however", "it", "might", "come", "in", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/support/mixins.rb#L23-L26
24,118
snltd/wavefront-sdk
lib/wavefront-sdk/support/mixins.rb
Wavefront.Mixins.relative_time
def relative_time(time, in_ms = false, ref = Time.now) ref = in_ms ? ref.to_datetime.strftime('%Q') : ref.to_time ref.to_i + parse_relative_time(time, in_ms) end
ruby
def relative_time(time, in_ms = false, ref = Time.now) ref = in_ms ? ref.to_datetime.strftime('%Q') : ref.to_time ref.to_i + parse_relative_time(time, in_ms) end
[ "def", "relative_time", "(", "time", ",", "in_ms", "=", "false", ",", "ref", "=", "Time", ".", "now", ")", "ref", "=", "in_ms", "?", "ref", ".", "to_datetime", ".", "strftime", "(", "'%Q'", ")", ":", "ref", ".", "to_time", "ref", ".", "to_i", "+", "parse_relative_time", "(", "time", ",", "in_ms", ")", "end" ]
Return a timestamp described by the given string. That is, '+5m' is five minutes in the future, and '-.1h' is half an hour ago. @param time [String] relative time string. Must begin with + or -, followed by a number, finished with a lower-case time unit identifier. See #time_multiplier @param in_ms [Boolean] whether to return epoch milliseconds. Passing in an integer timestamp returns itself, regardless of this value @param ref [Time, DateTime] calculate time relative to this point. Primarily for easier testing. Defaults to "now". @return [Integer] integer timestamp @raise [InvalidRelativeTime] if t does not meet requirements
[ "Return", "a", "timestamp", "described", "by", "the", "given", "string", ".", "That", "is", "+", "5m", "is", "five", "minutes", "in", "the", "future", "and", "-", ".", "1h", "is", "half", "an", "hour", "ago", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/support/mixins.rb#L43-L46
24,119
snltd/wavefront-sdk
lib/wavefront-sdk/support/mixins.rb
Wavefront.Mixins.time_multiplier
def time_multiplier(suffix) u = { s: 1, m: 60, h: 3600, d: 86_400, w: 604_800, y: 31_536_000 } return u[suffix.to_sym] if u.key?(suffix.to_sym) raise Wavefront::Exception::InvalidTimeUnit end
ruby
def time_multiplier(suffix) u = { s: 1, m: 60, h: 3600, d: 86_400, w: 604_800, y: 31_536_000 } return u[suffix.to_sym] if u.key?(suffix.to_sym) raise Wavefront::Exception::InvalidTimeUnit end
[ "def", "time_multiplier", "(", "suffix", ")", "u", "=", "{", "s", ":", "1", ",", "m", ":", "60", ",", "h", ":", "3600", ",", "d", ":", "86_400", ",", "w", ":", "604_800", ",", "y", ":", "31_536_000", "}", "return", "u", "[", "suffix", ".", "to_sym", "]", "if", "u", ".", "key?", "(", "suffix", ".", "to_sym", ")", "raise", "Wavefront", "::", "Exception", "::", "InvalidTimeUnit", "end" ]
naively return the number of seconds from the given multiplier. This makes absolutely no attempt to compensate for any kind of daylight savings or calendar adjustment. A day is always going to 60 seconds x 60 minutes x 24 hours, and a year will always have 365 days. @param suffix [Symbol, String] @return [Integer] the number of seconds in one unit of the given suffix @raise InvalidTimeUnit if the suffix is unknown
[ "naively", "return", "the", "number", "of", "seconds", "from", "the", "given", "multiplier", ".", "This", "makes", "absolutely", "no", "attempt", "to", "compensate", "for", "any", "kind", "of", "daylight", "savings", "or", "calendar", "adjustment", ".", "A", "day", "is", "always", "going", "to", "60", "seconds", "x", "60", "minutes", "x", "24", "hours", "and", "a", "year", "will", "always", "have", "365", "days", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/support/mixins.rb#L84-L89
24,120
kayagoban/echochamber
lib/echochamber/agreement/client.rb
Echochamber.Client.create_agreement
def create_agreement(agreement) agreement_response = Echochamber::Request.create_agreement(agreement, token, agreement.user_id, agreement.user_email) agreement_response.fetch("agreementId") end
ruby
def create_agreement(agreement) agreement_response = Echochamber::Request.create_agreement(agreement, token, agreement.user_id, agreement.user_email) agreement_response.fetch("agreementId") end
[ "def", "create_agreement", "(", "agreement", ")", "agreement_response", "=", "Echochamber", "::", "Request", ".", "create_agreement", "(", "agreement", ",", "token", ",", "agreement", ".", "user_id", ",", "agreement", ".", "user_email", ")", "agreement_response", ".", "fetch", "(", "\"agreementId\"", ")", "end" ]
Creates an agreement @param agreement [Echochamber::Agreement] @return [String] Agreement ID
[ "Creates", "an", "agreement" ]
a3665c6b78928e3efa7ba578b899c31aa5c893a4
https://github.com/kayagoban/echochamber/blob/a3665c6b78928e3efa7ba578b899c31aa5c893a4/lib/echochamber/agreement/client.rb#L9-L12
24,121
kayagoban/echochamber
lib/echochamber/agreement/client.rb
Echochamber.Client.agreement_documents
def agreement_documents(agreement_id, recipient_email, format, version_id=nil) result = Echochamber::Request.agreement_documents(token, agreement_id, recipient_email, format, version_id) end
ruby
def agreement_documents(agreement_id, recipient_email, format, version_id=nil) result = Echochamber::Request.agreement_documents(token, agreement_id, recipient_email, format, version_id) end
[ "def", "agreement_documents", "(", "agreement_id", ",", "recipient_email", ",", "format", ",", "version_id", "=", "nil", ")", "result", "=", "Echochamber", "::", "Request", ".", "agreement_documents", "(", "token", ",", "agreement_id", ",", "recipient_email", ",", "format", ",", "version_id", ")", "end" ]
All documents relating to an agreement @param agreement_id [String] (REQUIRED) @param recipient_email [String] The email address of the participant to be used to retrieve documents. (REQUIRED) @param format [String] Content format of the supported documents. It can have two possible values ORIGINAL or CONVERTED_PDF. (REQUIRED) @param version_id [String] Version of the agreement as provided by agreement_info(). If not provided, the latest version of the agreement is used. @return [Array] Documents relating to agreement.
[ "All", "documents", "relating", "to", "an", "agreement" ]
a3665c6b78928e3efa7ba578b899c31aa5c893a4
https://github.com/kayagoban/echochamber/blob/a3665c6b78928e3efa7ba578b899c31aa5c893a4/lib/echochamber/agreement/client.rb#L55-L57
24,122
kayagoban/echochamber
lib/echochamber/agreement/client.rb
Echochamber.Client.agreement_document_file
def agreement_document_file(agreement_id, document_id, file_path=nil) response = Echochamber::Request.agreement_document_file(token, agreement_id, document_id) unless file_path.nil? file = File.new(file_path, 'wb') file.write(response) file.close end response end
ruby
def agreement_document_file(agreement_id, document_id, file_path=nil) response = Echochamber::Request.agreement_document_file(token, agreement_id, document_id) unless file_path.nil? file = File.new(file_path, 'wb') file.write(response) file.close end response end
[ "def", "agreement_document_file", "(", "agreement_id", ",", "document_id", ",", "file_path", "=", "nil", ")", "response", "=", "Echochamber", "::", "Request", ".", "agreement_document_file", "(", "token", ",", "agreement_id", ",", "document_id", ")", "unless", "file_path", ".", "nil?", "file", "=", "File", ".", "new", "(", "file_path", ",", "'wb'", ")", "file", ".", "write", "(", "response", ")", "file", ".", "close", "end", "response", "end" ]
Retrieve a document file from an agreement @param agreement_id [String] (REQUIRED) @param document_id [String] (REQUIRED) @param file_path [String] File path to save the document. If no file path is given, nothing is saved to disk. @return [String] Raw bytes from document file
[ "Retrieve", "a", "document", "file", "from", "an", "agreement" ]
a3665c6b78928e3efa7ba578b899c31aa5c893a4
https://github.com/kayagoban/echochamber/blob/a3665c6b78928e3efa7ba578b899c31aa5c893a4/lib/echochamber/agreement/client.rb#L65-L73
24,123
kayagoban/echochamber
lib/echochamber/agreement/client.rb
Echochamber.Client.agreement_combined_pdf
def agreement_combined_pdf(agreement_id, file_path=nil, versionId=nil, participantEmail=nil, attachSupportingDocuments=true, auditReport=false) response = Echochamber::Request.agreement_combined_pdf(token, agreement_id, versionId, participantEmail, attachSupportingDocuments, auditReport) unless file_path.nil? file = File.new(file_path, 'wb') file.write(response) file.close end response end
ruby
def agreement_combined_pdf(agreement_id, file_path=nil, versionId=nil, participantEmail=nil, attachSupportingDocuments=true, auditReport=false) response = Echochamber::Request.agreement_combined_pdf(token, agreement_id, versionId, participantEmail, attachSupportingDocuments, auditReport) unless file_path.nil? file = File.new(file_path, 'wb') file.write(response) file.close end response end
[ "def", "agreement_combined_pdf", "(", "agreement_id", ",", "file_path", "=", "nil", ",", "versionId", "=", "nil", ",", "participantEmail", "=", "nil", ",", "attachSupportingDocuments", "=", "true", ",", "auditReport", "=", "false", ")", "response", "=", "Echochamber", "::", "Request", ".", "agreement_combined_pdf", "(", "token", ",", "agreement_id", ",", "versionId", ",", "participantEmail", ",", "attachSupportingDocuments", ",", "auditReport", ")", "unless", "file_path", ".", "nil?", "file", "=", "File", ".", "new", "(", "file_path", ",", "'wb'", ")", "file", ".", "write", "(", "response", ")", "file", ".", "close", "end", "response", "end" ]
Gets a single combined PDF document for the documents associated with an agreement. @param agreement_id [String] (REQUIRED) @param file_path [String] File path to save the document. If no file path is given, nothing is saved to disk. @param versionId [String] The version identifier of agreement as provided by get_agreement. If not provided then latest version will be used @param participantEmail [String] The email address of the participant to be used to retrieve documents. If none is given, the auth token will be used to determine the user @param attachSupportingDocuments [Boolean] When set to YES, attach corresponding supporting documents to the signed agreement PDF. Default value of this parameter is true. @param auditReport [Boolean] When set to YES, attach an audit report to the signed agreement PDF. Default value is false @return [String] Raw bytes from document file
[ "Gets", "a", "single", "combined", "PDF", "document", "for", "the", "documents", "associated", "with", "an", "agreement", "." ]
a3665c6b78928e3efa7ba578b899c31aa5c893a4
https://github.com/kayagoban/echochamber/blob/a3665c6b78928e3efa7ba578b899c31aa5c893a4/lib/echochamber/agreement/client.rb#L92-L100
24,124
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_link_template?
def wf_link_template?(template) if template.is_a?(String) && template.start_with?('http://', 'https://') return true end raise Wavefront::Exception::InvalidLinkTemplate end
ruby
def wf_link_template?(template) if template.is_a?(String) && template.start_with?('http://', 'https://') return true end raise Wavefront::Exception::InvalidLinkTemplate end
[ "def", "wf_link_template?", "(", "template", ")", "if", "template", ".", "is_a?", "(", "String", ")", "&&", "template", ".", "start_with?", "(", "'http://'", ",", "'https://'", ")", "return", "true", "end", "raise", "Wavefront", "::", "Exception", "::", "InvalidLinkTemplate", "end" ]
Ensure the given argument is a valid external link template @return true if it is valid @raise Wavefront::Exception::InvalidTemplate if not
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "external", "link", "template" ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L30-L37
24,125
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_name?
def wf_name?(name) return true if name.is_a?(String) && name.size < 1024 && name =~ /^\w+$/ raise Wavefront::Exception::InvalidName end
ruby
def wf_name?(name) return true if name.is_a?(String) && name.size < 1024 && name =~ /^\w+$/ raise Wavefront::Exception::InvalidName end
[ "def", "wf_name?", "(", "name", ")", "return", "true", "if", "name", ".", "is_a?", "(", "String", ")", "&&", "name", ".", "size", "<", "1024", "&&", "name", "=~", "/", "\\w", "/", "raise", "Wavefront", "::", "Exception", "::", "InvalidName", "end" ]
Ensure the given argument is a valid name, for instance for an event. Names can contain, AFAIK, word characters. @param name [String] the name to validate @return true if the name is valid raise Wavefront::Exception::InvalidName if name is not valid
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "name", "for", "instance", "for", "an", "event", ".", "Names", "can", "contain", "AFAIK", "word", "characters", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L64-L67
24,126
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_string?
def wf_string?(str) # # Only allows PCRE "word" characters, spaces, full-stops and # commas in tags and descriptions. This might be too restrictive, # but if it is, this is the only place we need to change it. # if str.is_a?(String) && str.size < 1024 && str =~ /^[\-\w \.,]*$/ return true end raise Wavefront::Exception::InvalidString end
ruby
def wf_string?(str) # # Only allows PCRE "word" characters, spaces, full-stops and # commas in tags and descriptions. This might be too restrictive, # but if it is, this is the only place we need to change it. # if str.is_a?(String) && str.size < 1024 && str =~ /^[\-\w \.,]*$/ return true end raise Wavefront::Exception::InvalidString end
[ "def", "wf_string?", "(", "str", ")", "#", "# Only allows PCRE \"word\" characters, spaces, full-stops and", "# commas in tags and descriptions. This might be too restrictive,", "# but if it is, this is the only place we need to change it.", "#", "if", "str", ".", "is_a?", "(", "String", ")", "&&", "str", ".", "size", "<", "1024", "&&", "str", "=~", "/", "\\-", "\\w", "\\.", "/", "return", "true", "end", "raise", "Wavefront", "::", "Exception", "::", "InvalidString", "end" ]
Ensure the given argument is a valid string, for a tag name. @param str [String] the string name to validate @return True if the string is valid @raise Wavefront::Exception::InvalidString if string is not valid.
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "string", "for", "a", "tag", "name", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L75-L86
24,127
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_ts?
def wf_ts?(timestamp) return true if timestamp.is_a?(Time) || timestamp.is_a?(Date) raise Wavefront::Exception::InvalidTimestamp end
ruby
def wf_ts?(timestamp) return true if timestamp.is_a?(Time) || timestamp.is_a?(Date) raise Wavefront::Exception::InvalidTimestamp end
[ "def", "wf_ts?", "(", "timestamp", ")", "return", "true", "if", "timestamp", ".", "is_a?", "(", "Time", ")", "||", "timestamp", ".", "is_a?", "(", "Date", ")", "raise", "Wavefront", "::", "Exception", "::", "InvalidTimestamp", "end" ]
Ensure the given argument is a valid timestamp @param timestamp [DateTime] the timestamp name to validate @return True if the value is valid @raise Wavefront::Exception::InvalidTimestamp
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "timestamp" ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L94-L97
24,128
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_epoch?
def wf_epoch?(timestamp) return true if timestamp.is_a?(Numeric) raise Wavefront::Exception::InvalidTimestamp end
ruby
def wf_epoch?(timestamp) return true if timestamp.is_a?(Numeric) raise Wavefront::Exception::InvalidTimestamp end
[ "def", "wf_epoch?", "(", "timestamp", ")", "return", "true", "if", "timestamp", ".", "is_a?", "(", "Numeric", ")", "raise", "Wavefront", "::", "Exception", "::", "InvalidTimestamp", "end" ]
Ensure the given argument is a valid epoch timestamp. Again, no range checking. @param timestamp [String, Integer] @return True if the timestamp is valid @raise Wavefront::Exception::InvalidMaintenanceWindow
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "epoch", "timestamp", ".", "Again", "no", "range", "checking", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L120-L123
24,129
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_value?
def wf_value?(value) return true if value.is_a?(Numeric) raise Wavefront::Exception::InvalidMetricValue end
ruby
def wf_value?(value) return true if value.is_a?(Numeric) raise Wavefront::Exception::InvalidMetricValue end
[ "def", "wf_value?", "(", "value", ")", "return", "true", "if", "value", ".", "is_a?", "(", "Numeric", ")", "raise", "Wavefront", "::", "Exception", "::", "InvalidMetricValue", "end" ]
Ensure the given argument is a valid Wavefront value. Can be any form of Numeric, including standard notation. @param value [Numeric] the source name to validate @return True if the value is valid @raise Wavefront::Exception::InvalidValue if the value is not valid
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "Wavefront", "value", ".", "Can", "be", "any", "form", "of", "Numeric", "including", "standard", "notation", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L151-L154
24,130
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_version?
def wf_version?(version) version = version.to_i if version.is_a?(String) && version =~ /^\d+$/ return true if version.is_a?(Integer) && version.positive? raise Wavefront::Exception::InvalidVersion end
ruby
def wf_version?(version) version = version.to_i if version.is_a?(String) && version =~ /^\d+$/ return true if version.is_a?(Integer) && version.positive? raise Wavefront::Exception::InvalidVersion end
[ "def", "wf_version?", "(", "version", ")", "version", "=", "version", ".", "to_i", "if", "version", ".", "is_a?", "(", "String", ")", "&&", "version", "=~", "/", "\\d", "/", "return", "true", "if", "version", ".", "is_a?", "(", "Integer", ")", "&&", "version", ".", "positive?", "raise", "Wavefront", "::", "Exception", "::", "InvalidVersion", "end" ]
Ensure the given argument is a valid version number @param version [Integer] the version number to validate @return True if the version is valid @raise Wavefront::Exception::InvalidVersion if the alert ID is not valid
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "version", "number" ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L163-L167
24,131
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_alert_id?
def wf_alert_id?(id) id = id.to_s if id.is_a?(Numeric) return true if id.is_a?(String) && id.match(/^\d{13}$/) raise Wavefront::Exception::InvalidAlertId end
ruby
def wf_alert_id?(id) id = id.to_s if id.is_a?(Numeric) return true if id.is_a?(String) && id.match(/^\d{13}$/) raise Wavefront::Exception::InvalidAlertId end
[ "def", "wf_alert_id?", "(", "id", ")", "id", "=", "id", ".", "to_s", "if", "id", ".", "is_a?", "(", "Numeric", ")", "return", "true", "if", "id", ".", "is_a?", "(", "String", ")", "&&", "id", ".", "match", "(", "/", "\\d", "/", ")", "raise", "Wavefront", "::", "Exception", "::", "InvalidAlertId", "end" ]
Ensure the given argument is a valid Wavefront alert ID. Alerts are identified by the epoch-nanosecond at which they were created. @param id [String] the alert ID to validate @return True if the alert ID is valid @raise Wavefront::Exception::InvalidAlertId if the alert ID is not valid
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "Wavefront", "alert", "ID", ".", "Alerts", "are", "identified", "by", "the", "epoch", "-", "nanosecond", "at", "which", "they", "were", "created", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L218-L222
24,132
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_dashboard_id?
def wf_dashboard_id?(id) return true if id.is_a?(String) && id.size < 256 && id.match(/^[\w\-]+$/) raise Wavefront::Exception::InvalidDashboardId end
ruby
def wf_dashboard_id?(id) return true if id.is_a?(String) && id.size < 256 && id.match(/^[\w\-]+$/) raise Wavefront::Exception::InvalidDashboardId end
[ "def", "wf_dashboard_id?", "(", "id", ")", "return", "true", "if", "id", ".", "is_a?", "(", "String", ")", "&&", "id", ".", "size", "<", "256", "&&", "id", ".", "match", "(", "/", "\\w", "\\-", "/", ")", "raise", "Wavefront", "::", "Exception", "::", "InvalidDashboardId", "end" ]
There doesn't seem to be a public statement on what's allowed in a dashboard name. For now I'm going to assume up to 255 word characters. @param id [String] the dashboard ID to validate @return true if the dashboard ID is valid @raise Wavefront::Exception::InvalidDashboardID if the dashboard ID is not valid
[ "There", "doesn", "t", "seem", "to", "be", "a", "public", "statement", "on", "what", "s", "allowed", "in", "a", "dashboard", "name", ".", "For", "now", "I", "m", "going", "to", "assume", "up", "to", "255", "word", "characters", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L246-L249
24,133
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_derivedmetric_id?
def wf_derivedmetric_id?(id) id = id.to_s if id.is_a?(Numeric) return true if id.is_a?(String) && id =~ /^\d{13}$/ raise Wavefront::Exception::InvalidDerivedMetricId end
ruby
def wf_derivedmetric_id?(id) id = id.to_s if id.is_a?(Numeric) return true if id.is_a?(String) && id =~ /^\d{13}$/ raise Wavefront::Exception::InvalidDerivedMetricId end
[ "def", "wf_derivedmetric_id?", "(", "id", ")", "id", "=", "id", ".", "to_s", "if", "id", ".", "is_a?", "(", "Numeric", ")", "return", "true", "if", "id", ".", "is_a?", "(", "String", ")", "&&", "id", "=~", "/", "\\d", "/", "raise", "Wavefront", "::", "Exception", "::", "InvalidDerivedMetricId", "end" ]
Ensure the given argument is a valid derived metric ID. IDs are the millisecond epoch timestamp at which the derived metric was created. @param id [String, Integer] @return True if the ID is valid @raise Wavefront::Exception::InvalidDerivedMetricId
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "derived", "metric", "ID", ".", "IDs", "are", "the", "millisecond", "epoch", "timestamp", "at", "which", "the", "derived", "metric", "was", "created", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L259-L264
24,134
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_link_id?
def wf_link_id?(id) return true if id.is_a?(String) && id =~ /^\w{16}$/ raise Wavefront::Exception::InvalidExternalLinkId end
ruby
def wf_link_id?(id) return true if id.is_a?(String) && id =~ /^\w{16}$/ raise Wavefront::Exception::InvalidExternalLinkId end
[ "def", "wf_link_id?", "(", "id", ")", "return", "true", "if", "id", ".", "is_a?", "(", "String", ")", "&&", "id", "=~", "/", "\\w", "/", "raise", "Wavefront", "::", "Exception", "::", "InvalidExternalLinkId", "end" ]
Ensure the given argument is a valid external Link ID @param id [String] the external link ID to validate @return True if the link ID is valid @raise Wavefront::Exception::InvalidExternalLinkId if the link ID is not valid
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "external", "Link", "ID" ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L287-L290
24,135
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_maintenance_window_id?
def wf_maintenance_window_id?(id) id = id.to_s if id.is_a?(Numeric) return true if id.is_a?(String) && id =~ /^\d{13}$/ raise Wavefront::Exception::InvalidMaintenanceWindowId end
ruby
def wf_maintenance_window_id?(id) id = id.to_s if id.is_a?(Numeric) return true if id.is_a?(String) && id =~ /^\d{13}$/ raise Wavefront::Exception::InvalidMaintenanceWindowId end
[ "def", "wf_maintenance_window_id?", "(", "id", ")", "id", "=", "id", ".", "to_s", "if", "id", ".", "is_a?", "(", "Numeric", ")", "return", "true", "if", "id", ".", "is_a?", "(", "String", ")", "&&", "id", "=~", "/", "\\d", "/", "raise", "Wavefront", "::", "Exception", "::", "InvalidMaintenanceWindowId", "end" ]
Ensure the given argument is a valid maintenance window ID. IDs are the millisecond epoch timestamp at which the window was created. @param id [String, Integer] @return True if the ID is valid @raise Wavefront::Exception::InvalidMaintenanceWindowId
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "maintenance", "window", "ID", ".", "IDs", "are", "the", "millisecond", "epoch", "timestamp", "at", "which", "the", "window", "was", "created", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L300-L305
24,136
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_alert_severity?
def wf_alert_severity?(severity) return true if %w[INFO SMOKE WARN SEVERE].include?(severity) raise Wavefront::Exception::InvalidAlertSeverity end
ruby
def wf_alert_severity?(severity) return true if %w[INFO SMOKE WARN SEVERE].include?(severity) raise Wavefront::Exception::InvalidAlertSeverity end
[ "def", "wf_alert_severity?", "(", "severity", ")", "return", "true", "if", "%w[", "INFO", "SMOKE", "WARN", "SEVERE", "]", ".", "include?", "(", "severity", ")", "raise", "Wavefront", "::", "Exception", "::", "InvalidAlertSeverity", "end" ]
Ensure the given argument is a valid alert severity @param severity [String] severity @return true if valid @raise Wavefront::Exceptions::InvalidAlertSeverity if not valid
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "alert", "severity" ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L313-L316
24,137
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_message_id?
def wf_message_id?(id) return true if id.is_a?(String) && id =~ /^\w+::\w+$/ raise Wavefront::Exception::InvalidMessageId end
ruby
def wf_message_id?(id) return true if id.is_a?(String) && id =~ /^\w+::\w+$/ raise Wavefront::Exception::InvalidMessageId end
[ "def", "wf_message_id?", "(", "id", ")", "return", "true", "if", "id", ".", "is_a?", "(", "String", ")", "&&", "id", "=~", "/", "\\w", "\\w", "/", "raise", "Wavefront", "::", "Exception", "::", "InvalidMessageId", "end" ]
Ensure the given argument is a valid message ID @param id [String] message ID @return true if valid @raise Wavefront::Exceptions::InvalidMessageId if not valid
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "message", "ID" ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L324-L327
24,138
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_granularity?
def wf_granularity?(granularity) return true if %w[d h m s].include?(granularity.to_s) raise Wavefront::Exception::InvalidGranularity end
ruby
def wf_granularity?(granularity) return true if %w[d h m s].include?(granularity.to_s) raise Wavefront::Exception::InvalidGranularity end
[ "def", "wf_granularity?", "(", "granularity", ")", "return", "true", "if", "%w[", "d", "h", "m", "s", "]", ".", "include?", "(", "granularity", ".", "to_s", ")", "raise", "Wavefront", "::", "Exception", "::", "InvalidGranularity", "end" ]
Ensure the given argument is a valid query granularity @param granularity [String] granularity @return true if valid @raise Wavefront::Exceptions::InvalidGranularity if not valid
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "query", "granularity" ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L336-L339
24,139
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_savedsearch_id?
def wf_savedsearch_id?(id) return true if id.is_a?(String) && id =~ /^\w{8}$/ raise Wavefront::Exception::InvalidSavedSearchId end
ruby
def wf_savedsearch_id?(id) return true if id.is_a?(String) && id =~ /^\w{8}$/ raise Wavefront::Exception::InvalidSavedSearchId end
[ "def", "wf_savedsearch_id?", "(", "id", ")", "return", "true", "if", "id", ".", "is_a?", "(", "String", ")", "&&", "id", "=~", "/", "\\w", "/", "raise", "Wavefront", "::", "Exception", "::", "InvalidSavedSearchId", "end" ]
Ensure the given argument is a valid saved search ID. @param id [String] saved search ID @return true if valid @raise Wavefront::Exceptions::InvalidSavedSearchId if not valid
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "saved", "search", "ID", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L347-L350
24,140
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_savedsearch_entity?
def wf_savedsearch_entity?(id) return true if %w[DASHBOARD ALERT MAINTENANCE_WINDOW NOTIFICANT EVENT SOURCE EXTERNAL_LINK AGENT CLOUD_INTEGRATION].include?(id) raise Wavefront::Exception::InvalidSavedSearchEntity end
ruby
def wf_savedsearch_entity?(id) return true if %w[DASHBOARD ALERT MAINTENANCE_WINDOW NOTIFICANT EVENT SOURCE EXTERNAL_LINK AGENT CLOUD_INTEGRATION].include?(id) raise Wavefront::Exception::InvalidSavedSearchEntity end
[ "def", "wf_savedsearch_entity?", "(", "id", ")", "return", "true", "if", "%w[", "DASHBOARD", "ALERT", "MAINTENANCE_WINDOW", "NOTIFICANT", "EVENT", "SOURCE", "EXTERNAL_LINK", "AGENT", "CLOUD_INTEGRATION", "]", ".", "include?", "(", "id", ")", "raise", "Wavefront", "::", "Exception", "::", "InvalidSavedSearchEntity", "end" ]
Ensure the given argument is a valid saved search entity type. @param id [String] entity type @return true if valid @raise Wavefront::Exceptions::InvalidSavedSearchEntity if not valid
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "saved", "search", "entity", "type", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L359-L364
24,141
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_source_id?
def wf_source_id?(source) if source.is_a?(String) && source.match(/^[\w\.\-]+$/) && source.size < 1024 return true end raise Wavefront::Exception::InvalidSourceId end
ruby
def wf_source_id?(source) if source.is_a?(String) && source.match(/^[\w\.\-]+$/) && source.size < 1024 return true end raise Wavefront::Exception::InvalidSourceId end
[ "def", "wf_source_id?", "(", "source", ")", "if", "source", ".", "is_a?", "(", "String", ")", "&&", "source", ".", "match", "(", "/", "\\w", "\\.", "\\-", "/", ")", "&&", "source", ".", "size", "<", "1024", "return", "true", "end", "raise", "Wavefront", "::", "Exception", "::", "InvalidSourceId", "end" ]
Ensure the given argument is a valid Wavefront source name @param source [String] the source name to validate @return True if the source name is valid @raise Wavefront::Exception::InvalidSourceId if the source name is not valid
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "Wavefront", "source", "name" ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L373-L380
24,142
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_user_id?
def wf_user_id?(user) return true if user.is_a?(String) && user.length < 256 && !user.empty? raise Wavefront::Exception::InvalidUserId end
ruby
def wf_user_id?(user) return true if user.is_a?(String) && user.length < 256 && !user.empty? raise Wavefront::Exception::InvalidUserId end
[ "def", "wf_user_id?", "(", "user", ")", "return", "true", "if", "user", ".", "is_a?", "(", "String", ")", "&&", "user", ".", "length", "<", "256", "&&", "!", "user", ".", "empty?", "raise", "Wavefront", "::", "Exception", "::", "InvalidUserId", "end" ]
Ensure the given argument is a valid user. @param user [String] user identifier @return true if valid @raise Wavefront::Exceptions::InvalidUserId if not valid
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "user", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L388-L391
24,143
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_webhook_id?
def wf_webhook_id?(id) return true if id.is_a?(String) && id =~ /^[a-zA-Z0-9]{16}$/ raise Wavefront::Exception::InvalidWebhookId end
ruby
def wf_webhook_id?(id) return true if id.is_a?(String) && id =~ /^[a-zA-Z0-9]{16}$/ raise Wavefront::Exception::InvalidWebhookId end
[ "def", "wf_webhook_id?", "(", "id", ")", "return", "true", "if", "id", ".", "is_a?", "(", "String", ")", "&&", "id", "=~", "/", "/", "raise", "Wavefront", "::", "Exception", "::", "InvalidWebhookId", "end" ]
Ensure the given argument is a valid webhook ID. @param id [String] webhook ID @return true if valid @raise Wavefront::Exceptions::InvalidWebhook if not valid
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "webhook", "ID", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L410-L413
24,144
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_distribution?
def wf_distribution?(dist) wf_metric_name?(dist[:path]) wf_distribution_values?(dist[:value]) wf_epoch?(dist[:ts]) if dist[:ts] wf_source_id?(dist[:source]) if dist[:source] wf_point_tags?(dist[:tags]) if dist[:tags] true end
ruby
def wf_distribution?(dist) wf_metric_name?(dist[:path]) wf_distribution_values?(dist[:value]) wf_epoch?(dist[:ts]) if dist[:ts] wf_source_id?(dist[:source]) if dist[:source] wf_point_tags?(dist[:tags]) if dist[:tags] true end
[ "def", "wf_distribution?", "(", "dist", ")", "wf_metric_name?", "(", "dist", "[", ":path", "]", ")", "wf_distribution_values?", "(", "dist", "[", ":value", "]", ")", "wf_epoch?", "(", "dist", "[", ":ts", "]", ")", "if", "dist", "[", ":ts", "]", "wf_source_id?", "(", "dist", "[", ":source", "]", ")", "if", "dist", "[", ":source", "]", "wf_point_tags?", "(", "dist", "[", ":tags", "]", ")", "if", "dist", "[", ":tags", "]", "true", "end" ]
Validate a distribution description @param dist [Hash] description of distribution @return true if valid @raise whichever exception is thrown first when validating each component of the distribution.
[ "Validate", "a", "distribution", "description" ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L438-L445
24,145
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_distribution_values?
def wf_distribution_values?(vals) vals.each do |times, val| wf_distribution_count?(times) wf_value?(val) end true end
ruby
def wf_distribution_values?(vals) vals.each do |times, val| wf_distribution_count?(times) wf_value?(val) end true end
[ "def", "wf_distribution_values?", "(", "vals", ")", "vals", ".", "each", "do", "|", "times", ",", "val", "|", "wf_distribution_count?", "(", "times", ")", "wf_value?", "(", "val", ")", "end", "true", "end" ]
Validate an array of distribution values @param vals [Array[Array]] [count, value] @return true if valid @raise whichever exception is thrown first when validating each component of the distribution.
[ "Validate", "an", "array", "of", "distribution", "values" ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L453-L459
24,146
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_notificant_id?
def wf_notificant_id?(id) return true if id.is_a?(String) && id =~ /^\w{16}$/ raise Wavefront::Exception::InvalidNotificantId end
ruby
def wf_notificant_id?(id) return true if id.is_a?(String) && id =~ /^\w{16}$/ raise Wavefront::Exception::InvalidNotificantId end
[ "def", "wf_notificant_id?", "(", "id", ")", "return", "true", "if", "id", ".", "is_a?", "(", "String", ")", "&&", "id", "=~", "/", "\\w", "/", "raise", "Wavefront", "::", "Exception", "::", "InvalidNotificantId", "end" ]
Ensure the given argument is a valid Wavefront notificant ID. @param id [String] the notificant ID to validate @return True if the notificant ID is valid @raise Wavefront::Exception::InvalidNotificantId if the notificant ID is not valid
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "Wavefront", "notificant", "ID", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L468-L471
24,147
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_integration_id?
def wf_integration_id?(id) return true if id.is_a?(String) && id =~ /^[a-z0-9]+$/ raise Wavefront::Exception::InvalidIntegrationId end
ruby
def wf_integration_id?(id) return true if id.is_a?(String) && id =~ /^[a-z0-9]+$/ raise Wavefront::Exception::InvalidIntegrationId end
[ "def", "wf_integration_id?", "(", "id", ")", "return", "true", "if", "id", ".", "is_a?", "(", "String", ")", "&&", "id", "=~", "/", "/", "raise", "Wavefront", "::", "Exception", "::", "InvalidIntegrationId", "end" ]
Ensure the given argument is a valid Wavefront integration ID. These appear to be lower-case strings. @param id [String] the integration ID to validate @return True if the integration name is valid @raise Wavefront::Exception::InvalidIntegrationId if the integration ID is not valid
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "Wavefront", "integration", "ID", ".", "These", "appear", "to", "be", "lower", "-", "case", "strings", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L481-L484
24,148
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_distribution_interval?
def wf_distribution_interval?(interval) return true if %i[m h d].include?(interval) raise Wavefront::Exception::InvalidDistributionInterval end
ruby
def wf_distribution_interval?(interval) return true if %i[m h d].include?(interval) raise Wavefront::Exception::InvalidDistributionInterval end
[ "def", "wf_distribution_interval?", "(", "interval", ")", "return", "true", "if", "%i[", "m", "h", "d", "]", ".", "include?", "(", "interval", ")", "raise", "Wavefront", "::", "Exception", "::", "InvalidDistributionInterval", "end" ]
Ensure the given argument is a valid distribution interval. @param interval [Symbol] @raise Wavefront::Exception::InvalidDistributionInterval if the interval is not valid
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "distribution", "interval", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L491-L494
24,149
snltd/wavefront-sdk
lib/wavefront-sdk/validators.rb
Wavefront.Validators.wf_distribution_count?
def wf_distribution_count?(count) return true if count.is_a?(Integer) && count.positive? raise Wavefront::Exception::InvalidDistributionCount end
ruby
def wf_distribution_count?(count) return true if count.is_a?(Integer) && count.positive? raise Wavefront::Exception::InvalidDistributionCount end
[ "def", "wf_distribution_count?", "(", "count", ")", "return", "true", "if", "count", ".", "is_a?", "(", "Integer", ")", "&&", "count", ".", "positive?", "raise", "Wavefront", "::", "Exception", "::", "InvalidDistributionCount", "end" ]
Ensure the given argument is a valid distribution count. @param count [Numeric] @raise Wavefront::Exception::InvalidDistributionCount if the count is not valid
[ "Ensure", "the", "given", "argument", "is", "a", "valid", "distribution", "count", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/validators.rb#L501-L504
24,150
snltd/wavefront-sdk
lib/wavefront-sdk/query.rb
Wavefront.Query.response_shim
def response_shim(body, status) resp, err_msg = parsed_response(body) { response: resp, status: { result: status == 200 ? 'OK' : 'ERROR', message: err_msg, code: status } }.to_json end
ruby
def response_shim(body, status) resp, err_msg = parsed_response(body) { response: resp, status: { result: status == 200 ? 'OK' : 'ERROR', message: err_msg, code: status } }.to_json end
[ "def", "response_shim", "(", "body", ",", "status", ")", "resp", ",", "err_msg", "=", "parsed_response", "(", "body", ")", "{", "response", ":", "resp", ",", "status", ":", "{", "result", ":", "status", "==", "200", "?", "'OK'", ":", "'ERROR'", ",", "message", ":", "err_msg", ",", "code", ":", "status", "}", "}", ".", "to_json", "end" ]
Fake a response which looks like we get from all the other paths. The default response is a single array.
[ "Fake", "a", "response", "which", "looks", "like", "we", "get", "from", "all", "the", "other", "paths", ".", "The", "default", "response", "is", "a", "single", "array", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/query.rb#L79-L86
24,151
snltd/wavefront-sdk
lib/wavefront-sdk/query.rb
Wavefront.Query.parsed_response
def parsed_response(body) [JSON.parse(body), ''] rescue JSON::ParserError ['', body.match(/message='([^']+)'/).captures.first] end
ruby
def parsed_response(body) [JSON.parse(body), ''] rescue JSON::ParserError ['', body.match(/message='([^']+)'/).captures.first] end
[ "def", "parsed_response", "(", "body", ")", "[", "JSON", ".", "parse", "(", "body", ")", ",", "''", "]", "rescue", "JSON", "::", "ParserError", "[", "''", ",", "body", ".", "match", "(", "/", "/", ")", ".", "captures", ".", "first", "]", "end" ]
A bad query doesn't send back a JSON object. It sends back a string with an embedded message.
[ "A", "bad", "query", "doesn", "t", "send", "back", "a", "JSON", "object", ".", "It", "sends", "back", "a", "string", "with", "an", "embedded", "message", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/query.rb#L91-L95
24,152
snltd/wavefront-sdk
lib/wavefront-sdk/credentials.rb
Wavefront.Credentials.populate
def populate(raw) @config = Map(raw) @creds = Map(raw.select { |k, _v| %i[endpoint token].include?(k) }) @proxy = Map(raw.select { |k, _v| %i[proxy port].include?(k) }) @all = Map(raw.select do |k, _v| %i[proxy port endpoint token].include?(k) end) end
ruby
def populate(raw) @config = Map(raw) @creds = Map(raw.select { |k, _v| %i[endpoint token].include?(k) }) @proxy = Map(raw.select { |k, _v| %i[proxy port].include?(k) }) @all = Map(raw.select do |k, _v| %i[proxy port endpoint token].include?(k) end) end
[ "def", "populate", "(", "raw", ")", "@config", "=", "Map", "(", "raw", ")", "@creds", "=", "Map", "(", "raw", ".", "select", "{", "|", "k", ",", "_v", "|", "%i[", "endpoint", "token", "]", ".", "include?", "(", "k", ")", "}", ")", "@proxy", "=", "Map", "(", "raw", ".", "select", "{", "|", "k", ",", "_v", "|", "%i[", "proxy", "port", "]", ".", "include?", "(", "k", ")", "}", ")", "@all", "=", "Map", "(", "raw", ".", "select", "do", "|", "k", ",", "_v", "|", "%i[", "proxy", "port", "endpoint", "token", "]", ".", "include?", "(", "k", ")", "end", ")", "end" ]
Make the helper values. We use a Map so they're super-easy to access @param raw [Hash] the combined options from config file, command-line and env vars. @return void
[ "Make", "the", "helper", "values", ".", "We", "use", "a", "Map", "so", "they", "re", "super", "-", "easy", "to", "access" ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/credentials.rb#L60-L67
24,153
boxgrinder/boxgrinder-build
lib/boxgrinder-build/helpers/guestfs-helper.rb
BoxGrinder.GuestFSHelper.log_hack
def log_hack read_stderr, write_stderr = IO.pipe fork do write_stderr.close read_stderr.each do |l| @log.trace "GFS: #{l.chomp.strip}" end read_stderr.close end old_stderr = STDERR.clone STDERR.reopen(write_stderr) STDERR.sync = true begin # Execute all tasks yield if block_given? ensure STDERR.reopen(old_stderr) end write_stderr.close read_stderr.close Process.wait end
ruby
def log_hack read_stderr, write_stderr = IO.pipe fork do write_stderr.close read_stderr.each do |l| @log.trace "GFS: #{l.chomp.strip}" end read_stderr.close end old_stderr = STDERR.clone STDERR.reopen(write_stderr) STDERR.sync = true begin # Execute all tasks yield if block_given? ensure STDERR.reopen(old_stderr) end write_stderr.close read_stderr.close Process.wait end
[ "def", "log_hack", "read_stderr", ",", "write_stderr", "=", "IO", ".", "pipe", "fork", "do", "write_stderr", ".", "close", "read_stderr", ".", "each", "do", "|", "l", "|", "@log", ".", "trace", "\"GFS: #{l.chomp.strip}\"", "end", "read_stderr", ".", "close", "end", "old_stderr", "=", "STDERR", ".", "clone", "STDERR", ".", "reopen", "(", "write_stderr", ")", "STDERR", ".", "sync", "=", "true", "begin", "# Execute all tasks", "yield", "if", "block_given?", "ensure", "STDERR", ".", "reopen", "(", "old_stderr", ")", "end", "write_stderr", ".", "close", "read_stderr", ".", "close", "Process", ".", "wait", "end" ]
If log callback aren't available we will fail to this, which sucks...
[ "If", "log", "callback", "aren", "t", "available", "we", "will", "fail", "to", "this", "which", "sucks", "..." ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/helpers/guestfs-helper.rb#L81-L110
24,154
boxgrinder/boxgrinder-build
lib/boxgrinder-build/helpers/guestfs-helper.rb
BoxGrinder.GuestFSHelper.mount_partitions
def mount_partitions(device, mount_prefix = '') @log.trace "Mounting partitions..." partitions = mountable_partitions(device) mount_points = LinuxHelper.new(:log => @log).partition_mount_points(@appliance_config.hardware.partitions) # https://issues.jboss.org/browse/BGBUILD-307 # We don't want to mount swap partitions at all... mount_points.delete("swap") partitions.each_index { |i| mount_partition(partitions[i], mount_points[i], mount_prefix) } end
ruby
def mount_partitions(device, mount_prefix = '') @log.trace "Mounting partitions..." partitions = mountable_partitions(device) mount_points = LinuxHelper.new(:log => @log).partition_mount_points(@appliance_config.hardware.partitions) # https://issues.jboss.org/browse/BGBUILD-307 # We don't want to mount swap partitions at all... mount_points.delete("swap") partitions.each_index { |i| mount_partition(partitions[i], mount_points[i], mount_prefix) } end
[ "def", "mount_partitions", "(", "device", ",", "mount_prefix", "=", "''", ")", "@log", ".", "trace", "\"Mounting partitions...\"", "partitions", "=", "mountable_partitions", "(", "device", ")", "mount_points", "=", "LinuxHelper", ".", "new", "(", ":log", "=>", "@log", ")", ".", "partition_mount_points", "(", "@appliance_config", ".", "hardware", ".", "partitions", ")", "# https://issues.jboss.org/browse/BGBUILD-307", "# We don't want to mount swap partitions at all...", "mount_points", ".", "delete", "(", "\"swap\"", ")", "partitions", ".", "each_index", "{", "|", "i", "|", "mount_partition", "(", "partitions", "[", "i", "]", ",", "mount_points", "[", "i", "]", ",", "mount_prefix", ")", "}", "end" ]
This mount partitions. We assume that the first partition is a root partition.
[ "This", "mount", "partitions", ".", "We", "assume", "that", "the", "first", "partition", "is", "a", "root", "partition", "." ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/helpers/guestfs-helper.rb#L252-L261
24,155
boxgrinder/boxgrinder-build
lib/boxgrinder-build/helpers/guestfs-helper.rb
BoxGrinder.GuestFSHelper.umount_partitions
def umount_partitions(device) partitions = mountable_partitions(device) @log.trace "Unmounting partitions..." partitions.reverse.each { |part| umount_partition(part) } @log.trace "All partitions unmounted." end
ruby
def umount_partitions(device) partitions = mountable_partitions(device) @log.trace "Unmounting partitions..." partitions.reverse.each { |part| umount_partition(part) } @log.trace "All partitions unmounted." end
[ "def", "umount_partitions", "(", "device", ")", "partitions", "=", "mountable_partitions", "(", "device", ")", "@log", ".", "trace", "\"Unmounting partitions...\"", "partitions", ".", "reverse", ".", "each", "{", "|", "part", "|", "umount_partition", "(", "part", ")", "}", "@log", ".", "trace", "\"All partitions unmounted.\"", "end" ]
Unmounts partitions in reverse order.
[ "Unmounts", "partitions", "in", "reverse", "order", "." ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/helpers/guestfs-helper.rb#L287-L293
24,156
snltd/wavefront-sdk
lib/wavefront-sdk/search.rb
Wavefront.Search.body
def body(query, options) ret = { limit: options[:limit] || 10, offset: options[:offset] || 0 } if query && !query.empty? ret[:query] = [query].flatten.map do |q| q.tap { |iq| iq[:matchingMethod] ||= 'CONTAINS' } end ret[:sort] = sort_field(options, query) end ret end
ruby
def body(query, options) ret = { limit: options[:limit] || 10, offset: options[:offset] || 0 } if query && !query.empty? ret[:query] = [query].flatten.map do |q| q.tap { |iq| iq[:matchingMethod] ||= 'CONTAINS' } end ret[:sort] = sort_field(options, query) end ret end
[ "def", "body", "(", "query", ",", "options", ")", "ret", "=", "{", "limit", ":", "options", "[", ":limit", "]", "||", "10", ",", "offset", ":", "options", "[", ":offset", "]", "||", "0", "}", "if", "query", "&&", "!", "query", ".", "empty?", "ret", "[", ":query", "]", "=", "[", "query", "]", ".", "flatten", ".", "map", "do", "|", "q", "|", "q", ".", "tap", "{", "|", "iq", "|", "iq", "[", ":matchingMethod", "]", "||=", "'CONTAINS'", "}", "end", "ret", "[", ":sort", "]", "=", "sort_field", "(", "options", ",", "query", ")", "end", "ret", "end" ]
Build a query body
[ "Build", "a", "query", "body" ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/search.rb#L47-L60
24,157
boxgrinder/boxgrinder-build
lib/boxgrinder-build/plugins/delivery/elastichosts/elastichosts-plugin.rb
BoxGrinder.ElasticHostsPlugin.create_server
def create_server @log.info "Creating new server..." memory = ((is_cloudsigma? and @appliance_config.hardware.memory < 512) ? 512 : @appliance_config.hardware.memory) body = hash_to_request( 'name' => "#{@appliance_config.name}-#{@appliance_config.version}.#{@appliance_config.release}", 'cpu' => @appliance_config.hardware.cpus * 1000, # MHz 'smp' => 'auto', 'mem' => memory, 'persistent' => 'true', # hack 'ide:0:0' => @plugin_config['drive_uuid'], 'boot' => 'ide:0:0', 'nic:0:model' => 'e1000', 'nic:0:dhcp' => 'auto', 'vnc:ip' => 'auto', 'vnc:password' => (0...8).map { (('a'..'z').to_a + ('A'..'Z').to_a)[rand(52)] }.join # 8 character VNC password ) begin path = is_cloudsigma? ? '/servers/create' : '/servers/create/stopped' ret = response_to_hash(RestClient.post(api_url(path), body)) @log.info "Server was registered with '#{ret['name']}' name as '#{ret['server']}' UUID. Use web UI or API tools to start your server." rescue => e @log.error e.info raise PluginError, "An error occurred while creating the server, #{e.message}. See logs for more info." end end
ruby
def create_server @log.info "Creating new server..." memory = ((is_cloudsigma? and @appliance_config.hardware.memory < 512) ? 512 : @appliance_config.hardware.memory) body = hash_to_request( 'name' => "#{@appliance_config.name}-#{@appliance_config.version}.#{@appliance_config.release}", 'cpu' => @appliance_config.hardware.cpus * 1000, # MHz 'smp' => 'auto', 'mem' => memory, 'persistent' => 'true', # hack 'ide:0:0' => @plugin_config['drive_uuid'], 'boot' => 'ide:0:0', 'nic:0:model' => 'e1000', 'nic:0:dhcp' => 'auto', 'vnc:ip' => 'auto', 'vnc:password' => (0...8).map { (('a'..'z').to_a + ('A'..'Z').to_a)[rand(52)] }.join # 8 character VNC password ) begin path = is_cloudsigma? ? '/servers/create' : '/servers/create/stopped' ret = response_to_hash(RestClient.post(api_url(path), body)) @log.info "Server was registered with '#{ret['name']}' name as '#{ret['server']}' UUID. Use web UI or API tools to start your server." rescue => e @log.error e.info raise PluginError, "An error occurred while creating the server, #{e.message}. See logs for more info." end end
[ "def", "create_server", "@log", ".", "info", "\"Creating new server...\"", "memory", "=", "(", "(", "is_cloudsigma?", "and", "@appliance_config", ".", "hardware", ".", "memory", "<", "512", ")", "?", "512", ":", "@appliance_config", ".", "hardware", ".", "memory", ")", "body", "=", "hash_to_request", "(", "'name'", "=>", "\"#{@appliance_config.name}-#{@appliance_config.version}.#{@appliance_config.release}\"", ",", "'cpu'", "=>", "@appliance_config", ".", "hardware", ".", "cpus", "*", "1000", ",", "# MHz", "'smp'", "=>", "'auto'", ",", "'mem'", "=>", "memory", ",", "'persistent'", "=>", "'true'", ",", "# hack", "'ide:0:0'", "=>", "@plugin_config", "[", "'drive_uuid'", "]", ",", "'boot'", "=>", "'ide:0:0'", ",", "'nic:0:model'", "=>", "'e1000'", ",", "'nic:0:dhcp'", "=>", "'auto'", ",", "'vnc:ip'", "=>", "'auto'", ",", "'vnc:password'", "=>", "(", "0", "...", "8", ")", ".", "map", "{", "(", "(", "'a'", "..", "'z'", ")", ".", "to_a", "+", "(", "'A'", "..", "'Z'", ")", ".", "to_a", ")", "[", "rand", "(", "52", ")", "]", "}", ".", "join", "# 8 character VNC password", ")", "begin", "path", "=", "is_cloudsigma?", "?", "'/servers/create'", ":", "'/servers/create/stopped'", "ret", "=", "response_to_hash", "(", "RestClient", ".", "post", "(", "api_url", "(", "path", ")", ",", "body", ")", ")", "@log", ".", "info", "\"Server was registered with '#{ret['name']}' name as '#{ret['server']}' UUID. Use web UI or API tools to start your server.\"", "rescue", "=>", "e", "@log", ".", "error", "e", ".", "info", "raise", "PluginError", ",", "\"An error occurred while creating the server, #{e.message}. See logs for more info.\"", "end", "end" ]
Creates the server for previously uploaded disk
[ "Creates", "the", "server", "for", "previously", "uploaded", "disk" ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/plugins/delivery/elastichosts/elastichosts-plugin.rb#L182-L210
24,158
boxgrinder/boxgrinder-build
lib/boxgrinder-build/appliance.rb
BoxGrinder.Appliance.initialize_plugins
def initialize_plugins @plugin_chain = [] os_plugin, os_plugin_info = PluginManager.instance.initialize_plugin(:os, @appliance_config.os.name.to_sym) initialize_plugin(os_plugin, os_plugin_info) if platform_selected? platform_plugin, platform_plugin_info = PluginManager.instance.initialize_plugin(:platform, @config.platform) initialize_plugin(platform_plugin, platform_plugin_info) end if delivery_selected? delivery_plugin, delivery_plugin_info = PluginManager.instance.initialize_plugin(:delivery, @config.delivery) # Here we need to specify additionally the type of the plugin, as some delivery plugins # can have multiple types of delivery implemented. See s3-plugin.rb for example. initialize_plugin(delivery_plugin, delivery_plugin_info, :type => @config.delivery) end end
ruby
def initialize_plugins @plugin_chain = [] os_plugin, os_plugin_info = PluginManager.instance.initialize_plugin(:os, @appliance_config.os.name.to_sym) initialize_plugin(os_plugin, os_plugin_info) if platform_selected? platform_plugin, platform_plugin_info = PluginManager.instance.initialize_plugin(:platform, @config.platform) initialize_plugin(platform_plugin, platform_plugin_info) end if delivery_selected? delivery_plugin, delivery_plugin_info = PluginManager.instance.initialize_plugin(:delivery, @config.delivery) # Here we need to specify additionally the type of the plugin, as some delivery plugins # can have multiple types of delivery implemented. See s3-plugin.rb for example. initialize_plugin(delivery_plugin, delivery_plugin_info, :type => @config.delivery) end end
[ "def", "initialize_plugins", "@plugin_chain", "=", "[", "]", "os_plugin", ",", "os_plugin_info", "=", "PluginManager", ".", "instance", ".", "initialize_plugin", "(", ":os", ",", "@appliance_config", ".", "os", ".", "name", ".", "to_sym", ")", "initialize_plugin", "(", "os_plugin", ",", "os_plugin_info", ")", "if", "platform_selected?", "platform_plugin", ",", "platform_plugin_info", "=", "PluginManager", ".", "instance", ".", "initialize_plugin", "(", ":platform", ",", "@config", ".", "platform", ")", "initialize_plugin", "(", "platform_plugin", ",", "platform_plugin_info", ")", "end", "if", "delivery_selected?", "delivery_plugin", ",", "delivery_plugin_info", "=", "PluginManager", ".", "instance", ".", "initialize_plugin", "(", ":delivery", ",", "@config", ".", "delivery", ")", "# Here we need to specify additionally the type of the plugin, as some delivery plugins", "# can have multiple types of delivery implemented. See s3-plugin.rb for example.", "initialize_plugin", "(", "delivery_plugin", ",", "delivery_plugin_info", ",", ":type", "=>", "@config", ".", "delivery", ")", "end", "end" ]
Here we initialize all required plugins and create a plugin chain. Initialization involves also plugin configuration validation for specified plugin type.
[ "Here", "we", "initialize", "all", "required", "plugins", "and", "create", "a", "plugin", "chain", ".", "Initialization", "involves", "also", "plugin", "configuration", "validation", "for", "specified", "plugin", "type", "." ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/appliance.rb#L65-L82
24,159
boxgrinder/boxgrinder-build
lib/boxgrinder-build/appliance.rb
BoxGrinder.Appliance.initialize_plugin
def initialize_plugin(plugin, plugin_info, options = {}) options = { :log => @log }.merge(options) unless @plugin_chain.empty? options.merge!(:previous_plugin => @plugin_chain.last[:plugin]) end plugin.init(@config, @appliance_config, plugin_info, options) # Execute callbacks if implemented # # Order is very important [:after_init, :validate, :after_validate].each do |callback| plugin.send(callback) if plugin.respond_to?(callback) end param = nil # For operating system plugins we need to inject appliance definition. if plugin_info[:type] == :os param = @appliance_definition end @plugin_chain << {:plugin => plugin, :param => param} end
ruby
def initialize_plugin(plugin, plugin_info, options = {}) options = { :log => @log }.merge(options) unless @plugin_chain.empty? options.merge!(:previous_plugin => @plugin_chain.last[:plugin]) end plugin.init(@config, @appliance_config, plugin_info, options) # Execute callbacks if implemented # # Order is very important [:after_init, :validate, :after_validate].each do |callback| plugin.send(callback) if plugin.respond_to?(callback) end param = nil # For operating system plugins we need to inject appliance definition. if plugin_info[:type] == :os param = @appliance_definition end @plugin_chain << {:plugin => plugin, :param => param} end
[ "def", "initialize_plugin", "(", "plugin", ",", "plugin_info", ",", "options", "=", "{", "}", ")", "options", "=", "{", ":log", "=>", "@log", "}", ".", "merge", "(", "options", ")", "unless", "@plugin_chain", ".", "empty?", "options", ".", "merge!", "(", ":previous_plugin", "=>", "@plugin_chain", ".", "last", "[", ":plugin", "]", ")", "end", "plugin", ".", "init", "(", "@config", ",", "@appliance_config", ",", "plugin_info", ",", "options", ")", "# Execute callbacks if implemented", "#", "# Order is very important", "[", ":after_init", ",", ":validate", ",", ":after_validate", "]", ".", "each", "do", "|", "callback", "|", "plugin", ".", "send", "(", "callback", ")", "if", "plugin", ".", "respond_to?", "(", "callback", ")", "end", "param", "=", "nil", "# For operating system plugins we need to inject appliance definition.", "if", "plugin_info", "[", ":type", "]", "==", ":os", "param", "=", "@appliance_definition", "end", "@plugin_chain", "<<", "{", ":plugin", "=>", "plugin", ",", ":param", "=>", "param", "}", "end" ]
Initializes the plugin by executing init, after_init, validate and after_validate methods. We can be sure only for init method because it is implemented internally in base-plugin.rb, for all other methods we need to check if they exist.
[ "Initializes", "the", "plugin", "by", "executing", "init", "after_init", "validate", "and", "after_validate", "methods", "." ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/appliance.rb#L88-L114
24,160
boxgrinder/boxgrinder-build
lib/boxgrinder-build/appliance.rb
BoxGrinder.Appliance.create
def create @log.debug "Launching new build..." @log.trace "Used configuration: #{@config.to_yaml.gsub(/(\S*(key|account|cert|username|host|password)\S*).*:(.*)/, '\1' + ": <REDACTED>")}" # Let's load all plugins first PluginHelper.new(@config, :log => @log).load_plugins read_definition validate_definition initialize_plugins remove_old_builds if @config.force execute_plugin_chain self end
ruby
def create @log.debug "Launching new build..." @log.trace "Used configuration: #{@config.to_yaml.gsub(/(\S*(key|account|cert|username|host|password)\S*).*:(.*)/, '\1' + ": <REDACTED>")}" # Let's load all plugins first PluginHelper.new(@config, :log => @log).load_plugins read_definition validate_definition initialize_plugins remove_old_builds if @config.force execute_plugin_chain self end
[ "def", "create", "@log", ".", "debug", "\"Launching new build...\"", "@log", ".", "trace", "\"Used configuration: #{@config.to_yaml.gsub(/(\\S*(key|account|cert|username|host|password)\\S*).*:(.*)/, '\\1' + \": <REDACTED>\")}\"", "# Let's load all plugins first", "PluginHelper", ".", "new", "(", "@config", ",", ":log", "=>", "@log", ")", ".", "load_plugins", "read_definition", "validate_definition", "initialize_plugins", "remove_old_builds", "if", "@config", ".", "force", "execute_plugin_chain", "self", "end" ]
This creates the appliance by executing the plugin chain. Definition is read and validated. Afterwards a plugin chain is created and every plugin in the chain is initialized and validated. The next step is the execution of the plugin chain, step by step. Below you can find the whole process of bootstrapping a plugin. Call Scope ------------------------------------------ initialize required, internal init required, internal after_init optional, user implemented validate optional, user implemented after_validate optional, user implemented execute required, user implemented after_execute optional, user implemented
[ "This", "creates", "the", "appliance", "by", "executing", "the", "plugin", "chain", "." ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/appliance.rb#L152-L167
24,161
boxgrinder/boxgrinder-build
lib/boxgrinder-build/plugins/delivery/libvirt/libvirt-capabilities.rb
BoxGrinder.LibvirtCapabilities.determine_capabilities
def determine_capabilities(conn, previous_plugin_info) plugin = get_plugin(previous_plugin_info) root = Nokogiri::XML.parse(conn.capabilities) guests = root.xpath("//guest/arch[@name='x86_64']/..") guests = guests.sort do |a, b| dom_maps = [a,b].map { |x| plugin.domain_map[xpath_first_intern(x, './/domain/@type')] } # Handle unknown mappings next resolve_unknowns(dom_maps) if dom_maps.include?(nil) # Compare according to domain ranking dom_rank = dom_maps.map { |m| m[:rank]}.reduce(:<=>) # Compare according to virtualisation ranking virt_rank = [a,b].enum_for(:each_with_index).map do |x, i| dom_maps[i][:domain].virt_map[xpath_first_intern(x, './/os_type')] end # Handle unknown mappings next resolve_unknowns(virt_rank) if virt_rank.include?(nil) # Domain rank first next dom_rank unless dom_rank == 0 # OS type rank second virt_rank.reduce(:<=>) end # Favourite! build_guest(guests.first) end
ruby
def determine_capabilities(conn, previous_plugin_info) plugin = get_plugin(previous_plugin_info) root = Nokogiri::XML.parse(conn.capabilities) guests = root.xpath("//guest/arch[@name='x86_64']/..") guests = guests.sort do |a, b| dom_maps = [a,b].map { |x| plugin.domain_map[xpath_first_intern(x, './/domain/@type')] } # Handle unknown mappings next resolve_unknowns(dom_maps) if dom_maps.include?(nil) # Compare according to domain ranking dom_rank = dom_maps.map { |m| m[:rank]}.reduce(:<=>) # Compare according to virtualisation ranking virt_rank = [a,b].enum_for(:each_with_index).map do |x, i| dom_maps[i][:domain].virt_map[xpath_first_intern(x, './/os_type')] end # Handle unknown mappings next resolve_unknowns(virt_rank) if virt_rank.include?(nil) # Domain rank first next dom_rank unless dom_rank == 0 # OS type rank second virt_rank.reduce(:<=>) end # Favourite! build_guest(guests.first) end
[ "def", "determine_capabilities", "(", "conn", ",", "previous_plugin_info", ")", "plugin", "=", "get_plugin", "(", "previous_plugin_info", ")", "root", "=", "Nokogiri", "::", "XML", ".", "parse", "(", "conn", ".", "capabilities", ")", "guests", "=", "root", ".", "xpath", "(", "\"//guest/arch[@name='x86_64']/..\"", ")", "guests", "=", "guests", ".", "sort", "do", "|", "a", ",", "b", "|", "dom_maps", "=", "[", "a", ",", "b", "]", ".", "map", "{", "|", "x", "|", "plugin", ".", "domain_map", "[", "xpath_first_intern", "(", "x", ",", "'.//domain/@type'", ")", "]", "}", "# Handle unknown mappings", "next", "resolve_unknowns", "(", "dom_maps", ")", "if", "dom_maps", ".", "include?", "(", "nil", ")", "# Compare according to domain ranking", "dom_rank", "=", "dom_maps", ".", "map", "{", "|", "m", "|", "m", "[", ":rank", "]", "}", ".", "reduce", "(", ":<=>", ")", "# Compare according to virtualisation ranking", "virt_rank", "=", "[", "a", ",", "b", "]", ".", "enum_for", "(", ":each_with_index", ")", ".", "map", "do", "|", "x", ",", "i", "|", "dom_maps", "[", "i", "]", "[", ":domain", "]", ".", "virt_map", "[", "xpath_first_intern", "(", "x", ",", "'.//os_type'", ")", "]", "end", "# Handle unknown mappings", "next", "resolve_unknowns", "(", "virt_rank", ")", "if", "virt_rank", ".", "include?", "(", "nil", ")", "# Domain rank first", "next", "dom_rank", "unless", "dom_rank", "==", "0", "# OS type rank second", "virt_rank", ".", "reduce", "(", ":<=>", ")", "end", "# Favourite!", "build_guest", "(", "guests", ".", "first", ")", "end" ]
Connect to the remote machine and determine the best available settings
[ "Connect", "to", "the", "remote", "machine", "and", "determine", "the", "best", "available", "settings" ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/plugins/delivery/libvirt/libvirt-capabilities.rb#L95-L125
24,162
boxgrinder/boxgrinder-build
lib/boxgrinder-build/plugins/delivery/libvirt/libvirt-capabilities.rb
BoxGrinder.LibvirtCapabilities.get_plugin
def get_plugin(previous_plugin_info) if previous_plugin_info[:type] == :platform if PLUGINS.has_key?(previous_plugin_info[:name]) @log.debug("Using #{previous_plugin_info[:name]} mapping") return PLUGINS[previous_plugin_info[:name]] else @log.debug("This plugin does not know what mappings to choose, so will assume default values where user values are not provided.") end end @log.debug("Using default domain mappings.") PLUGINS[:default] end
ruby
def get_plugin(previous_plugin_info) if previous_plugin_info[:type] == :platform if PLUGINS.has_key?(previous_plugin_info[:name]) @log.debug("Using #{previous_plugin_info[:name]} mapping") return PLUGINS[previous_plugin_info[:name]] else @log.debug("This plugin does not know what mappings to choose, so will assume default values where user values are not provided.") end end @log.debug("Using default domain mappings.") PLUGINS[:default] end
[ "def", "get_plugin", "(", "previous_plugin_info", ")", "if", "previous_plugin_info", "[", ":type", "]", "==", ":platform", "if", "PLUGINS", ".", "has_key?", "(", "previous_plugin_info", "[", ":name", "]", ")", "@log", ".", "debug", "(", "\"Using #{previous_plugin_info[:name]} mapping\"", ")", "return", "PLUGINS", "[", "previous_plugin_info", "[", ":name", "]", "]", "else", "@log", ".", "debug", "(", "\"This plugin does not know what mappings to choose, so will assume default values where user values are not provided.\"", ")", "end", "end", "@log", ".", "debug", "(", "\"Using default domain mappings.\"", ")", "PLUGINS", "[", ":default", "]", "end" ]
At present we don't have enough meta-data to work with to easily generalise, so we have to assume defaults often. This is something to improve later.
[ "At", "present", "we", "don", "t", "have", "enough", "meta", "-", "data", "to", "work", "with", "to", "easily", "generalise", "so", "we", "have", "to", "assume", "defaults", "often", ".", "This", "is", "something", "to", "improve", "later", "." ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/plugins/delivery/libvirt/libvirt-capabilities.rb#L151-L162
24,163
bitpay/spree-bitpay
app/controllers/spree/bitpay_controller.rb
Spree.BitpayController.pay_now
def pay_now order = current_order || raise(ActiveRecord::RecordNotFound) session[:order_number] = current_order.number invoice = order.place_bitpay_order notificationURL: bitpay_notification_url @invoice_iframe_url = "#{invoice['url']}&view=iframe" render json: @invoice_iframe_url end
ruby
def pay_now order = current_order || raise(ActiveRecord::RecordNotFound) session[:order_number] = current_order.number invoice = order.place_bitpay_order notificationURL: bitpay_notification_url @invoice_iframe_url = "#{invoice['url']}&view=iframe" render json: @invoice_iframe_url end
[ "def", "pay_now", "order", "=", "current_order", "||", "raise", "(", "ActiveRecord", "::", "RecordNotFound", ")", "session", "[", ":order_number", "]", "=", "current_order", ".", "number", "invoice", "=", "order", ".", "place_bitpay_order", "notificationURL", ":", "bitpay_notification_url", "@invoice_iframe_url", "=", "\"#{invoice['url']}&view=iframe\"", "render", "json", ":", "@invoice_iframe_url", "end" ]
Generates Bitpay Invoice and returns iframe view
[ "Generates", "Bitpay", "Invoice", "and", "returns", "iframe", "view" ]
581d97bdce29ea97bf923356640ffff6a7ef3b0b
https://github.com/bitpay/spree-bitpay/blob/581d97bdce29ea97bf923356640ffff6a7ef3b0b/app/controllers/spree/bitpay_controller.rb#L7-L13
24,164
bitpay/spree-bitpay
app/controllers/spree/bitpay_controller.rb
Spree.BitpayController.payment_sent
def payment_sent order_number = session[:order_number] session[:order_number] = nil order = Spree::Order.find_by_number(order_number) || raise(ActiveRecord::RecordNotFound) redirect_to spree.order_path(order), :notice => Spree.t(:order_processed_successfully) end
ruby
def payment_sent order_number = session[:order_number] session[:order_number] = nil order = Spree::Order.find_by_number(order_number) || raise(ActiveRecord::RecordNotFound) redirect_to spree.order_path(order), :notice => Spree.t(:order_processed_successfully) end
[ "def", "payment_sent", "order_number", "=", "session", "[", ":order_number", "]", "session", "[", ":order_number", "]", "=", "nil", "order", "=", "Spree", "::", "Order", ".", "find_by_number", "(", "order_number", ")", "||", "raise", "(", "ActiveRecord", "::", "RecordNotFound", ")", "redirect_to", "spree", ".", "order_path", "(", "order", ")", ",", ":notice", "=>", "Spree", ".", "t", "(", ":order_processed_successfully", ")", "end" ]
Fires on receipt of payment received window message
[ "Fires", "on", "receipt", "of", "payment", "received", "window", "message" ]
581d97bdce29ea97bf923356640ffff6a7ef3b0b
https://github.com/bitpay/spree-bitpay/blob/581d97bdce29ea97bf923356640ffff6a7ef3b0b/app/controllers/spree/bitpay_controller.rb#L39-L44
24,165
bitpay/spree-bitpay
app/controllers/spree/bitpay_controller.rb
Spree.BitpayController.notification
def notification begin posData = JSON.parse(params["posData"]) order_id = posData["orderID"] payment_id = posData["paymentID"] order = Spree::Order.find_by_number(order_id) || raise(ActiveRecord::RecordNotFound) begin order.process_bitpay_ipn payment_id head :ok rescue => exception logger.debug exception head :uprocessable_entity end rescue => error logger.error "Spree_Bitpay: Unprocessable notification received from #{request.remote_ip}: #{params.inspect}" head :unprocessable_entity end end
ruby
def notification begin posData = JSON.parse(params["posData"]) order_id = posData["orderID"] payment_id = posData["paymentID"] order = Spree::Order.find_by_number(order_id) || raise(ActiveRecord::RecordNotFound) begin order.process_bitpay_ipn payment_id head :ok rescue => exception logger.debug exception head :uprocessable_entity end rescue => error logger.error "Spree_Bitpay: Unprocessable notification received from #{request.remote_ip}: #{params.inspect}" head :unprocessable_entity end end
[ "def", "notification", "begin", "posData", "=", "JSON", ".", "parse", "(", "params", "[", "\"posData\"", "]", ")", "order_id", "=", "posData", "[", "\"orderID\"", "]", "payment_id", "=", "posData", "[", "\"paymentID\"", "]", "order", "=", "Spree", "::", "Order", ".", "find_by_number", "(", "order_id", ")", "||", "raise", "(", "ActiveRecord", "::", "RecordNotFound", ")", "begin", "order", ".", "process_bitpay_ipn", "payment_id", "head", ":ok", "rescue", "=>", "exception", "logger", ".", "debug", "exception", "head", ":uprocessable_entity", "end", "rescue", "=>", "error", "logger", ".", "error", "\"Spree_Bitpay: Unprocessable notification received from #{request.remote_ip}: #{params.inspect}\"", "head", ":unprocessable_entity", "end", "end" ]
Handle IPN from Bitpay server Receives incoming IPN message and retrieves official BitPay invoice for processing
[ "Handle", "IPN", "from", "Bitpay", "server", "Receives", "incoming", "IPN", "message", "and", "retrieves", "official", "BitPay", "invoice", "for", "processing" ]
581d97bdce29ea97bf923356640ffff6a7ef3b0b
https://github.com/bitpay/spree-bitpay/blob/581d97bdce29ea97bf923356640ffff6a7ef3b0b/app/controllers/spree/bitpay_controller.rb#L49-L69
24,166
bitpay/spree-bitpay
app/controllers/spree/bitpay_controller.rb
Spree.BitpayController.refresh
def refresh payment = Spree::Payment.find(params[:payment]) # Retrieve payment by ID old_state = payment.state payment.process_bitpay_ipn new_state = payment.reload.state notice = (new_state == old_state) ? Spree.t(:bitpay_payment_not_updated) : (Spree.t(:bitpay_payment_updated) + new_state.titlecase) redirect_to (request.referrer || root_path), notice: notice end
ruby
def refresh payment = Spree::Payment.find(params[:payment]) # Retrieve payment by ID old_state = payment.state payment.process_bitpay_ipn new_state = payment.reload.state notice = (new_state == old_state) ? Spree.t(:bitpay_payment_not_updated) : (Spree.t(:bitpay_payment_updated) + new_state.titlecase) redirect_to (request.referrer || root_path), notice: notice end
[ "def", "refresh", "payment", "=", "Spree", "::", "Payment", ".", "find", "(", "params", "[", ":payment", "]", ")", "# Retrieve payment by ID", "old_state", "=", "payment", ".", "state", "payment", ".", "process_bitpay_ipn", "new_state", "=", "payment", ".", "reload", ".", "state", "notice", "=", "(", "new_state", "==", "old_state", ")", "?", "Spree", ".", "t", "(", ":bitpay_payment_not_updated", ")", ":", "(", "Spree", ".", "t", "(", ":bitpay_payment_updated", ")", "+", "new_state", ".", "titlecase", ")", "redirect_to", "(", "request", ".", "referrer", "||", "root_path", ")", ",", "notice", ":", "notice", "end" ]
Reprocess Invoice and update order status
[ "Reprocess", "Invoice", "and", "update", "order", "status" ]
581d97bdce29ea97bf923356640ffff6a7ef3b0b
https://github.com/bitpay/spree-bitpay/blob/581d97bdce29ea97bf923356640ffff6a7ef3b0b/app/controllers/spree/bitpay_controller.rb#L73-L80
24,167
boxgrinder/boxgrinder-build
lib/boxgrinder-build/plugins/platform/ec2/ec2-plugin.rb
BoxGrinder.EC2Plugin.add_ec2_user
def add_ec2_user(guestfs) @log.debug "Adding ec2-user user..." # We need to add ec2-user only when it doesn't exists # # https://issues.jboss.org/browse/BGBUILD-313 unless guestfs.fgrep("ec2-user", "/etc/passwd").empty? @log.debug("ec2-user already exists, skipping.") return end guestfs.sh("useradd ec2-user") guestfs.sh("echo -e 'ec2-user\tALL=(ALL)\tNOPASSWD: ALL' >> /etc/sudoers") @log.debug "User ec2-user added." end
ruby
def add_ec2_user(guestfs) @log.debug "Adding ec2-user user..." # We need to add ec2-user only when it doesn't exists # # https://issues.jboss.org/browse/BGBUILD-313 unless guestfs.fgrep("ec2-user", "/etc/passwd").empty? @log.debug("ec2-user already exists, skipping.") return end guestfs.sh("useradd ec2-user") guestfs.sh("echo -e 'ec2-user\tALL=(ALL)\tNOPASSWD: ALL' >> /etc/sudoers") @log.debug "User ec2-user added." end
[ "def", "add_ec2_user", "(", "guestfs", ")", "@log", ".", "debug", "\"Adding ec2-user user...\"", "# We need to add ec2-user only when it doesn't exists", "#", "# https://issues.jboss.org/browse/BGBUILD-313", "unless", "guestfs", ".", "fgrep", "(", "\"ec2-user\"", ",", "\"/etc/passwd\"", ")", ".", "empty?", "@log", ".", "debug", "(", "\"ec2-user already exists, skipping.\"", ")", "return", "end", "guestfs", ".", "sh", "(", "\"useradd ec2-user\"", ")", "guestfs", ".", "sh", "(", "\"echo -e 'ec2-user\\tALL=(ALL)\\tNOPASSWD: ALL' >> /etc/sudoers\"", ")", "@log", ".", "debug", "\"User ec2-user added.\"", "end" ]
Adds ec2-user will full sudo access without password per Fedora security guidelines. We should not use root access on AMIs as it is not secure and prohibited by AWS. https://issues.jboss.org/browse/BGBUILD-110
[ "Adds", "ec2", "-", "user", "will", "full", "sudo", "access", "without", "password", "per", "Fedora", "security", "guidelines", ".", "We", "should", "not", "use", "root", "access", "on", "AMIs", "as", "it", "is", "not", "secure", "and", "prohibited", "by", "AWS", "." ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/plugins/platform/ec2/ec2-plugin.rb#L159-L174
24,168
enkessler/cucumber_analytics
lib/cucumber_analytics/step.rb
CucumberAnalytics.Step.step_text
def step_text(options = {}) options = {:with_keywords => true, :with_arguments => true, :left_delimiter => self.left_delimiter, :right_delimiter => self.right_delimiter}.merge(options) final_step = [] step_text = '' step_text += "#{@keyword} " if options[:with_keywords] if options[:with_arguments] step_text += @base final_step << step_text final_step.concat(rebuild_block_text(@block)) if @block else step_text += stripped_step(@base, options[:left_delimiter], options[:right_delimiter]) final_step << step_text end final_step end
ruby
def step_text(options = {}) options = {:with_keywords => true, :with_arguments => true, :left_delimiter => self.left_delimiter, :right_delimiter => self.right_delimiter}.merge(options) final_step = [] step_text = '' step_text += "#{@keyword} " if options[:with_keywords] if options[:with_arguments] step_text += @base final_step << step_text final_step.concat(rebuild_block_text(@block)) if @block else step_text += stripped_step(@base, options[:left_delimiter], options[:right_delimiter]) final_step << step_text end final_step end
[ "def", "step_text", "(", "options", "=", "{", "}", ")", "options", "=", "{", ":with_keywords", "=>", "true", ",", ":with_arguments", "=>", "true", ",", ":left_delimiter", "=>", "self", ".", "left_delimiter", ",", ":right_delimiter", "=>", "self", ".", "right_delimiter", "}", ".", "merge", "(", "options", ")", "final_step", "=", "[", "]", "step_text", "=", "''", "step_text", "+=", "\"#{@keyword} \"", "if", "options", "[", ":with_keywords", "]", "if", "options", "[", ":with_arguments", "]", "step_text", "+=", "@base", "final_step", "<<", "step_text", "final_step", ".", "concat", "(", "rebuild_block_text", "(", "@block", ")", ")", "if", "@block", "else", "step_text", "+=", "stripped_step", "(", "@base", ",", "options", "[", ":left_delimiter", "]", ",", "options", "[", ":right_delimiter", "]", ")", "final_step", "<<", "step_text", "end", "final_step", "end" ]
Returns true if the two steps have the same text, minus any keywords and arguments, and false otherwise. Deprecated Returns the entire text of the step. Options can be set to selectively exclude certain portions of the text. *left_delimiter* and *right_delimiter* are used to determine which parts of the step are arguments. a_step = CucumberAnalytics::Step.new("Given *some* step with a block:\n|block line 1|\n|block line 2|") a_step.step_text #=> ['Given *some* step with a block:', '|block line 1|', '|block line 2|'] a_step.step_text(:with_keywords => false) #=> ['*some* step with a block:', '|block line 1|', '|block line 2|'] a_step.step_text(:with_arguments => false, :left_delimiter => '*', :right_delimiter => '*') #=> ['Given ** step with a block:'] a_step.step_text(:with_keywords => false, :with_arguments => false, :left_delimiter => '-', :right_delimiter => '-')) #=> ['*some* step with a block:']
[ "Returns", "true", "if", "the", "two", "steps", "have", "the", "same", "text", "minus", "any", "keywords", "and", "arguments", "and", "false", "otherwise", ".", "Deprecated" ]
a74642d30b3566fc11fb43c920518fea4587c6bd
https://github.com/enkessler/cucumber_analytics/blob/a74642d30b3566fc11fb43c920518fea4587c6bd/lib/cucumber_analytics/step.rb#L95-L116
24,169
enkessler/cucumber_analytics
lib/cucumber_analytics/step.rb
CucumberAnalytics.Step.scan_arguments
def scan_arguments(*how) if how.count == 1 pattern = how.first else left_delimiter = how[0] || self.left_delimiter right_delimiter = how[1] || self.right_delimiter return [] unless left_delimiter && right_delimiter pattern = Regexp.new(Regexp.escape(left_delimiter) + '(.*?)' + Regexp.escape(right_delimiter)) end @arguments = @base.scan(pattern).flatten end
ruby
def scan_arguments(*how) if how.count == 1 pattern = how.first else left_delimiter = how[0] || self.left_delimiter right_delimiter = how[1] || self.right_delimiter return [] unless left_delimiter && right_delimiter pattern = Regexp.new(Regexp.escape(left_delimiter) + '(.*?)' + Regexp.escape(right_delimiter)) end @arguments = @base.scan(pattern).flatten end
[ "def", "scan_arguments", "(", "*", "how", ")", "if", "how", ".", "count", "==", "1", "pattern", "=", "how", ".", "first", "else", "left_delimiter", "=", "how", "[", "0", "]", "||", "self", ".", "left_delimiter", "right_delimiter", "=", "how", "[", "1", "]", "||", "self", ".", "right_delimiter", "return", "[", "]", "unless", "left_delimiter", "&&", "right_delimiter", "pattern", "=", "Regexp", ".", "new", "(", "Regexp", ".", "escape", "(", "left_delimiter", ")", "+", "'(.*?)'", "+", "Regexp", ".", "escape", "(", "right_delimiter", ")", ")", "end", "@arguments", "=", "@base", ".", "scan", "(", "pattern", ")", ".", "flatten", "end" ]
Populates the step's arguments based on the step's text and some method of determining which parts of the text are arguments. Methods include using a regular expression and using the step's delimiters.
[ "Populates", "the", "step", "s", "arguments", "based", "on", "the", "step", "s", "text", "and", "some", "method", "of", "determining", "which", "parts", "of", "the", "text", "are", "arguments", ".", "Methods", "include", "using", "a", "regular", "expression", "and", "using", "the", "step", "s", "delimiters", "." ]
a74642d30b3566fc11fb43c920518fea4587c6bd
https://github.com/enkessler/cucumber_analytics/blob/a74642d30b3566fc11fb43c920518fea4587c6bd/lib/cucumber_analytics/step.rb#L121-L134
24,170
enkessler/cucumber_analytics
lib/cucumber_analytics/step.rb
CucumberAnalytics.Step.stripped_step
def stripped_step(step, left_delimiter, right_delimiter) unless left_delimiter.nil? || right_delimiter.nil? pattern = Regexp.new(Regexp.escape(left_delimiter) + '.*?' + Regexp.escape(right_delimiter)) step = step.gsub(pattern, left_delimiter + right_delimiter) end step end
ruby
def stripped_step(step, left_delimiter, right_delimiter) unless left_delimiter.nil? || right_delimiter.nil? pattern = Regexp.new(Regexp.escape(left_delimiter) + '.*?' + Regexp.escape(right_delimiter)) step = step.gsub(pattern, left_delimiter + right_delimiter) end step end
[ "def", "stripped_step", "(", "step", ",", "left_delimiter", ",", "right_delimiter", ")", "unless", "left_delimiter", ".", "nil?", "||", "right_delimiter", ".", "nil?", "pattern", "=", "Regexp", ".", "new", "(", "Regexp", ".", "escape", "(", "left_delimiter", ")", "+", "'.*?'", "+", "Regexp", ".", "escape", "(", "right_delimiter", ")", ")", "step", "=", "step", ".", "gsub", "(", "pattern", ",", "left_delimiter", "+", "right_delimiter", ")", "end", "step", "end" ]
Returns the step string minus any arguments based on the given delimiters.
[ "Returns", "the", "step", "string", "minus", "any", "arguments", "based", "on", "the", "given", "delimiters", "." ]
a74642d30b3566fc11fb43c920518fea4587c6bd
https://github.com/enkessler/cucumber_analytics/blob/a74642d30b3566fc11fb43c920518fea4587c6bd/lib/cucumber_analytics/step.rb#L189-L196
24,171
boxgrinder/boxgrinder-build
lib/boxgrinder-build/plugins/os/rpm-based/rpm-based-os-plugin.rb
BoxGrinder.RPMBasedOSPlugin.substitute_vars
def substitute_vars(str) return if str.nil? @appliance_config.variables.keys.each do |var| str = str.gsub("##{var}#", @appliance_config.variables[var]) end str end
ruby
def substitute_vars(str) return if str.nil? @appliance_config.variables.keys.each do |var| str = str.gsub("##{var}#", @appliance_config.variables[var]) end str end
[ "def", "substitute_vars", "(", "str", ")", "return", "if", "str", ".", "nil?", "@appliance_config", ".", "variables", ".", "keys", ".", "each", "do", "|", "var", "|", "str", "=", "str", ".", "gsub", "(", "\"##{var}#\"", ",", "@appliance_config", ".", "variables", "[", "var", "]", ")", "end", "str", "end" ]
Substitute variables in selected string.
[ "Substitute", "variables", "in", "selected", "string", "." ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/plugins/os/rpm-based/rpm-based-os-plugin.rb#L53-L59
24,172
boxgrinder/boxgrinder-build
lib/boxgrinder-build/plugins/os/rpm-based/rpm-based-os-plugin.rb
BoxGrinder.RPMBasedOSPlugin.install_files
def install_files(guestfs) @log.debug "Installing files specified in appliance definition file..." @appliance_config.files.each do |dir, files| @log.debug "Proceding files for '#{dir}' destination directory..." local_files = [] # Create the directory if it doesn't exists guestfs.mkdir_p(dir) unless guestfs.exists(dir) != 0 files.each do |f| if f.match(/^(http|ftp|https):\/\//) # Remote url provided @log.trace "Remote url detected: '#{f}'." # We have a remote file, try to download it using curl! guestfs.sh("cd #{dir} && curl -O -L #{f}") else @log.trace "Local path detected: '#{f}'." file_path = (f.match(/^\//) ? f : "#{File.dirname(@appliance_definition_file)}/#{f}") # TODO validate this earlier raise ValidationError, "File '#{f}' specified in files section of appliance definition file doesn't exists." unless File.exists?(file_path) local_files << f end end next if local_files.empty? @log.trace "Tarring files..." @exec_helper.execute("cd #{File.dirname(@appliance_definition_file)} && tar -cvf /tmp/bg_install_files.tar --wildcards #{local_files.join(' ')}") @log.trace "Files tarred." @log.trace "Uploading and unpacking..." guestfs.tar_in("/tmp/bg_install_files.tar", dir) @log.trace "Files uploaded." end @log.debug "Files installed." end
ruby
def install_files(guestfs) @log.debug "Installing files specified in appliance definition file..." @appliance_config.files.each do |dir, files| @log.debug "Proceding files for '#{dir}' destination directory..." local_files = [] # Create the directory if it doesn't exists guestfs.mkdir_p(dir) unless guestfs.exists(dir) != 0 files.each do |f| if f.match(/^(http|ftp|https):\/\//) # Remote url provided @log.trace "Remote url detected: '#{f}'." # We have a remote file, try to download it using curl! guestfs.sh("cd #{dir} && curl -O -L #{f}") else @log.trace "Local path detected: '#{f}'." file_path = (f.match(/^\//) ? f : "#{File.dirname(@appliance_definition_file)}/#{f}") # TODO validate this earlier raise ValidationError, "File '#{f}' specified in files section of appliance definition file doesn't exists." unless File.exists?(file_path) local_files << f end end next if local_files.empty? @log.trace "Tarring files..." @exec_helper.execute("cd #{File.dirname(@appliance_definition_file)} && tar -cvf /tmp/bg_install_files.tar --wildcards #{local_files.join(' ')}") @log.trace "Files tarred." @log.trace "Uploading and unpacking..." guestfs.tar_in("/tmp/bg_install_files.tar", dir) @log.trace "Files uploaded." end @log.debug "Files installed." end
[ "def", "install_files", "(", "guestfs", ")", "@log", ".", "debug", "\"Installing files specified in appliance definition file...\"", "@appliance_config", ".", "files", ".", "each", "do", "|", "dir", ",", "files", "|", "@log", ".", "debug", "\"Proceding files for '#{dir}' destination directory...\"", "local_files", "=", "[", "]", "# Create the directory if it doesn't exists", "guestfs", ".", "mkdir_p", "(", "dir", ")", "unless", "guestfs", ".", "exists", "(", "dir", ")", "!=", "0", "files", ".", "each", "do", "|", "f", "|", "if", "f", ".", "match", "(", "/", "\\/", "\\/", "/", ")", "# Remote url provided", "@log", ".", "trace", "\"Remote url detected: '#{f}'.\"", "# We have a remote file, try to download it using curl!", "guestfs", ".", "sh", "(", "\"cd #{dir} && curl -O -L #{f}\"", ")", "else", "@log", ".", "trace", "\"Local path detected: '#{f}'.\"", "file_path", "=", "(", "f", ".", "match", "(", "/", "\\/", "/", ")", "?", "f", ":", "\"#{File.dirname(@appliance_definition_file)}/#{f}\"", ")", "# TODO validate this earlier", "raise", "ValidationError", ",", "\"File '#{f}' specified in files section of appliance definition file doesn't exists.\"", "unless", "File", ".", "exists?", "(", "file_path", ")", "local_files", "<<", "f", "end", "end", "next", "if", "local_files", ".", "empty?", "@log", ".", "trace", "\"Tarring files...\"", "@exec_helper", ".", "execute", "(", "\"cd #{File.dirname(@appliance_definition_file)} && tar -cvf /tmp/bg_install_files.tar --wildcards #{local_files.join(' ')}\"", ")", "@log", ".", "trace", "\"Files tarred.\"", "@log", ".", "trace", "\"Uploading and unpacking...\"", "guestfs", ".", "tar_in", "(", "\"/tmp/bg_install_files.tar\"", ",", "dir", ")", "@log", ".", "trace", "\"Files uploaded.\"", "end", "@log", ".", "debug", "\"Files installed.\"", "end" ]
Copies specified files into appliance. There are two types of paths: 1. remote - starting with http:// or https:// or ftp:// 2. local - all other. Please use relative paths. Relative means relative to the appliance definition file. Using absolute paths will cause creating whole directory structure in appliance, which is most probably not exactly what you want. https://issues.jboss.org/browse/BGBUILD-276
[ "Copies", "specified", "files", "into", "appliance", "." ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/plugins/os/rpm-based/rpm-based-os-plugin.rb#L288-L331
24,173
kayagoban/echochamber
lib/echochamber/library_documents/client.rb
Echochamber.Client.get_library_document_file
def get_library_document_file(library_document_id, file_id, file_path=nil) response = Echochamber::Request.get_library_document_file(token, library_document_id, file_id) unless file_path.nil? file = File.new(file_path, 'wb') file.write(response) file.close end response end
ruby
def get_library_document_file(library_document_id, file_id, file_path=nil) response = Echochamber::Request.get_library_document_file(token, library_document_id, file_id) unless file_path.nil? file = File.new(file_path, 'wb') file.write(response) file.close end response end
[ "def", "get_library_document_file", "(", "library_document_id", ",", "file_id", ",", "file_path", "=", "nil", ")", "response", "=", "Echochamber", "::", "Request", ".", "get_library_document_file", "(", "token", ",", "library_document_id", ",", "file_id", ")", "unless", "file_path", ".", "nil?", "file", "=", "File", ".", "new", "(", "file_path", ",", "'wb'", ")", "file", ".", "write", "(", "response", ")", "file", ".", "close", "end", "response", "end" ]
Retrieves library document file data @param library_document_id (REQUIRED) @param file_id [String] (REQUIRED) @param file_path [String] File path for saving the document. If none is given, nothing will be saved to disk. @return [String] Raw library document file data
[ "Retrieves", "library", "document", "file", "data" ]
a3665c6b78928e3efa7ba578b899c31aa5c893a4
https://github.com/kayagoban/echochamber/blob/a3665c6b78928e3efa7ba578b899c31aa5c893a4/lib/echochamber/library_documents/client.rb#L36-L44
24,174
kayagoban/echochamber
lib/echochamber/library_documents/client.rb
Echochamber.Client.library_combined_document
def library_combined_document(library_document_id, file_path=nil, auditReport=false) response = Echochamber::Request.library_combined_document(token, library_document_id, auditReport) unless file_path.nil? file = File.new(file_path, 'wb') file.write(response) file.close end response end
ruby
def library_combined_document(library_document_id, file_path=nil, auditReport=false) response = Echochamber::Request.library_combined_document(token, library_document_id, auditReport) unless file_path.nil? file = File.new(file_path, 'wb') file.write(response) file.close end response end
[ "def", "library_combined_document", "(", "library_document_id", ",", "file_path", "=", "nil", ",", "auditReport", "=", "false", ")", "response", "=", "Echochamber", "::", "Request", ".", "library_combined_document", "(", "token", ",", "library_document_id", ",", "auditReport", ")", "unless", "file_path", ".", "nil?", "file", "=", "File", ".", "new", "(", "file_path", ",", "'wb'", ")", "file", ".", "write", "(", "response", ")", "file", ".", "close", "end", "response", "end" ]
Retrieves library combined document file @param library_document_id (REQUIRED) @param file_path [String] File path for saving the document. If none is given, nothing will be saved to disk. @param auditReport [Boolean] When set to YES attach an audit report to the library document PDF. Default value will be false. @return [String] Raw library combined document file data
[ "Retrieves", "library", "combined", "document", "file" ]
a3665c6b78928e3efa7ba578b899c31aa5c893a4
https://github.com/kayagoban/echochamber/blob/a3665c6b78928e3efa7ba578b899c31aa5c893a4/lib/echochamber/library_documents/client.rb#L67-L75
24,175
bih/userq
lib/userq.rb
UserQ.Queue.enter_into_queue?
def enter_into_queue? # Check if enough space in queue current_limit = queue_constraints[:capacity].to_i current_usage = queue_constraints[:taken].to_i + UserQ::UserQueue.count_unexpired(queue_constraints[:context]) # Assess whether enough space left into queue current_usage < current_limit end
ruby
def enter_into_queue? # Check if enough space in queue current_limit = queue_constraints[:capacity].to_i current_usage = queue_constraints[:taken].to_i + UserQ::UserQueue.count_unexpired(queue_constraints[:context]) # Assess whether enough space left into queue current_usage < current_limit end
[ "def", "enter_into_queue?", "# Check if enough space in queue", "current_limit", "=", "queue_constraints", "[", ":capacity", "]", ".", "to_i", "current_usage", "=", "queue_constraints", "[", ":taken", "]", ".", "to_i", "+", "UserQ", "::", "UserQueue", ".", "count_unexpired", "(", "queue_constraints", "[", ":context", "]", ")", "# Assess whether enough space left into queue", "current_usage", "<", "current_limit", "end" ]
Beautiful syntax.
[ "Beautiful", "syntax", "." ]
0f7ebb8f789fdcd7c148b7984cb23fddc502167b
https://github.com/bih/userq/blob/0f7ebb8f789fdcd7c148b7984cb23fddc502167b/lib/userq.rb#L23-L29
24,176
kany/kairos-api
lib/kairos/client.rb
Kairos.Client.gallery_list_all
def gallery_list_all # ToDo: Research why Typhoeus works better than Faraday for this endpoint request = Typhoeus::Request.new( "#{Kairos::Configuration::GALLERY_LIST_ALL}", method: :post, headers: { "Content-Type" => "application/x-www-form-urlencoded", "app_id" => "#{@app_id}", "app_key" => "#{@app_key}" } ) response = request.run JSON.parse(response.body) rescue "INVALID_JSON: #{response.body}" end
ruby
def gallery_list_all # ToDo: Research why Typhoeus works better than Faraday for this endpoint request = Typhoeus::Request.new( "#{Kairos::Configuration::GALLERY_LIST_ALL}", method: :post, headers: { "Content-Type" => "application/x-www-form-urlencoded", "app_id" => "#{@app_id}", "app_key" => "#{@app_key}" } ) response = request.run JSON.parse(response.body) rescue "INVALID_JSON: #{response.body}" end
[ "def", "gallery_list_all", "# ToDo: Research why Typhoeus works better than Faraday for this endpoint", "request", "=", "Typhoeus", "::", "Request", ".", "new", "(", "\"#{Kairos::Configuration::GALLERY_LIST_ALL}\"", ",", "method", ":", ":post", ",", "headers", ":", "{", "\"Content-Type\"", "=>", "\"application/x-www-form-urlencoded\"", ",", "\"app_id\"", "=>", "\"#{@app_id}\"", ",", "\"app_key\"", "=>", "\"#{@app_key}\"", "}", ")", "response", "=", "request", ".", "run", "JSON", ".", "parse", "(", "response", ".", "body", ")", "rescue", "\"INVALID_JSON: #{response.body}\"", "end" ]
List all Galleries Example Usage: - require 'kairos' - client = Kairos::Client.new(:app_id => '1234', :app_key => 'abcde1234') - client.gallery_list_all
[ "List", "all", "Galleries" ]
f44eb07cd569dbe353f55b2acbf469dbb093b98b
https://github.com/kany/kairos-api/blob/f44eb07cd569dbe353f55b2acbf469dbb093b98b/lib/kairos/client.rb#L68-L79
24,177
jasonroelofs/rbgccxml
lib/rbgccxml/query_result.rb
RbGCCXML.QueryResult.method_missing
def method_missing(name, *args) if self[0].respond_to?(name) self.inject(QueryResult.new) do |memo, node| ret = node.send(name, *args) memo << ret if ret memo end else super end end
ruby
def method_missing(name, *args) if self[0].respond_to?(name) self.inject(QueryResult.new) do |memo, node| ret = node.send(name, *args) memo << ret if ret memo end else super end end
[ "def", "method_missing", "(", "name", ",", "*", "args", ")", "if", "self", "[", "0", "]", ".", "respond_to?", "(", "name", ")", "self", ".", "inject", "(", "QueryResult", ".", "new", ")", "do", "|", "memo", ",", "node", "|", "ret", "=", "node", ".", "send", "(", "name", ",", "args", ")", "memo", "<<", "ret", "if", "ret", "memo", "end", "else", "super", "end", "end" ]
To facilitate the management of what could be many nodes found by a single query, we forward off any unknown methods to each node in the results query. We assume that if one node accepts the method, then all of them will.
[ "To", "facilitate", "the", "management", "of", "what", "could", "be", "many", "nodes", "found", "by", "a", "single", "query", "we", "forward", "off", "any", "unknown", "methods", "to", "each", "node", "in", "the", "results", "query", ".", "We", "assume", "that", "if", "one", "node", "accepts", "the", "method", "then", "all", "of", "them", "will", "." ]
f9051f46277a6b4f580dd779012c61e482d11410
https://github.com/jasonroelofs/rbgccxml/blob/f9051f46277a6b4f580dd779012c61e482d11410/lib/rbgccxml/query_result.rb#L10-L20
24,178
reidmorrison/sync_attr
lib/sync_attr/attributes.rb
SyncAttr.Attributes.sync_attr_sync
def sync_attr_sync(attribute, &block) mutex_var_name = "@sync_attr_#{attribute}".to_sym instance_variable_set(mutex_var_name, Mutex.new) unless instance_variable_defined?(mutex_var_name) instance_variable_get(mutex_var_name).synchronize(&block) end
ruby
def sync_attr_sync(attribute, &block) mutex_var_name = "@sync_attr_#{attribute}".to_sym instance_variable_set(mutex_var_name, Mutex.new) unless instance_variable_defined?(mutex_var_name) instance_variable_get(mutex_var_name).synchronize(&block) end
[ "def", "sync_attr_sync", "(", "attribute", ",", "&", "block", ")", "mutex_var_name", "=", "\"@sync_attr_#{attribute}\"", ".", "to_sym", "instance_variable_set", "(", "mutex_var_name", ",", "Mutex", ".", "new", ")", "unless", "instance_variable_defined?", "(", "mutex_var_name", ")", "instance_variable_get", "(", "mutex_var_name", ")", ".", "synchronize", "(", "block", ")", "end" ]
Thread safe way of creating the instance sync
[ "Thread", "safe", "way", "of", "creating", "the", "instance", "sync" ]
08ec85c1a3048fb671b25438ccbaa018bca87937
https://github.com/reidmorrison/sync_attr/blob/08ec85c1a3048fb671b25438ccbaa018bca87937/lib/sync_attr/attributes.rb#L91-L95
24,179
boxgrinder/boxgrinder-build
lib/boxgrinder-build/helpers/ec2-helper.rb
BoxGrinder.EC2Helper.wait_for_instance_death
def wait_for_instance_death(instance, opts={}) wait_for_instance_status(:terminated, instance, opts) if instance.exists? rescue AWS::EC2::Errors::InvalidInstanceID::NotFound end
ruby
def wait_for_instance_death(instance, opts={}) wait_for_instance_status(:terminated, instance, opts) if instance.exists? rescue AWS::EC2::Errors::InvalidInstanceID::NotFound end
[ "def", "wait_for_instance_death", "(", "instance", ",", "opts", "=", "{", "}", ")", "wait_for_instance_status", "(", ":terminated", ",", "instance", ",", "opts", ")", "if", "instance", ".", "exists?", "rescue", "AWS", "::", "EC2", "::", "Errors", "::", "InvalidInstanceID", "::", "NotFound", "end" ]
Being serial shouldn't be much slower as we are blocked by the slowest stopper anyway
[ "Being", "serial", "shouldn", "t", "be", "much", "slower", "as", "we", "are", "blocked", "by", "the", "slowest", "stopper", "anyway" ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/helpers/ec2-helper.rb#L57-L60
24,180
kayagoban/echochamber
lib/echochamber/widget/client.rb
Echochamber.Client.get_widget_documents
def get_widget_documents(widget_id, version_id=nil, participant_email=nil) Echochamber::Request.get_widget_documents(token, widget_id, version_id, participant_email) end
ruby
def get_widget_documents(widget_id, version_id=nil, participant_email=nil) Echochamber::Request.get_widget_documents(token, widget_id, version_id, participant_email) end
[ "def", "get_widget_documents", "(", "widget_id", ",", "version_id", "=", "nil", ",", "participant_email", "=", "nil", ")", "Echochamber", "::", "Request", ".", "get_widget_documents", "(", "token", ",", "widget_id", ",", "version_id", ",", "participant_email", ")", "end" ]
Retrieves the IDs of the documents associated with widget. @param widget_id [String] @param version_id [String] The version identifier of widget as provided by get_widget. If not provided then latest version will be used. @param participant_email [String] The email address of the participant to be used to retrieve documents @return [Hash] Info about widget documents
[ "Retrieves", "the", "IDs", "of", "the", "documents", "associated", "with", "widget", "." ]
a3665c6b78928e3efa7ba578b899c31aa5c893a4
https://github.com/kayagoban/echochamber/blob/a3665c6b78928e3efa7ba578b899c31aa5c893a4/lib/echochamber/widget/client.rb#L54-L56
24,181
kayagoban/echochamber
lib/echochamber/widget/client.rb
Echochamber.Client.get_widget_document_file
def get_widget_document_file(widget_id, document_id, file_path=nil) response = Echochamber::Request.get_widget_document_file(token, widget_id, document_id) unless file_path.nil? file = File.new(file_path, 'wb') file.write(response) file.close end response end
ruby
def get_widget_document_file(widget_id, document_id, file_path=nil) response = Echochamber::Request.get_widget_document_file(token, widget_id, document_id) unless file_path.nil? file = File.new(file_path, 'wb') file.write(response) file.close end response end
[ "def", "get_widget_document_file", "(", "widget_id", ",", "document_id", ",", "file_path", "=", "nil", ")", "response", "=", "Echochamber", "::", "Request", ".", "get_widget_document_file", "(", "token", ",", "widget_id", ",", "document_id", ")", "unless", "file_path", ".", "nil?", "file", "=", "File", ".", "new", "(", "file_path", ",", "'wb'", ")", "file", ".", "write", "(", "response", ")", "file", ".", "close", "end", "response", "end" ]
Retrieves the file stream of a document of a widget @param widget_id [String] @param document_id [String] @param file_path [String] File path where to save the document. If none is given, nothing will be saved to file. @return [String] Raw file stream
[ "Retrieves", "the", "file", "stream", "of", "a", "document", "of", "a", "widget" ]
a3665c6b78928e3efa7ba578b899c31aa5c893a4
https://github.com/kayagoban/echochamber/blob/a3665c6b78928e3efa7ba578b899c31aa5c893a4/lib/echochamber/widget/client.rb#L64-L72
24,182
huerlisi/i18n_rails_helpers
lib/i18n_rails_helpers/controller_helpers.rb
I18nRailsHelpers.ControllerHelpers.redirect_notice
def redirect_notice(record = nil) { notice: I18n.t("crud.notices.#{action_name}", model: helpers.t_model, record: record.present? ? "#{record} " : '') } end
ruby
def redirect_notice(record = nil) { notice: I18n.t("crud.notices.#{action_name}", model: helpers.t_model, record: record.present? ? "#{record} " : '') } end
[ "def", "redirect_notice", "(", "record", "=", "nil", ")", "{", "notice", ":", "I18n", ".", "t", "(", "\"crud.notices.#{action_name}\"", ",", "model", ":", "helpers", ".", "t_model", ",", "record", ":", "record", ".", "present?", "?", "\"#{record} \"", ":", "''", ")", "}", "end" ]
returns a redirect notice for create, update and destroy actions Example in ClientsController: redirect_to some_path, redirect_notice # => 'Klient geändert.' redirect_to some_path, redirect_notice(@client) # => 'Klient Example Client geändert.'
[ "returns", "a", "redirect", "notice", "for", "create", "update", "and", "destroy", "actions" ]
4faa6d84ebb4465798246d2bb6d6e353a21d5de8
https://github.com/huerlisi/i18n_rails_helpers/blob/4faa6d84ebb4465798246d2bb6d6e353a21d5de8/lib/i18n_rails_helpers/controller_helpers.rb#L12-L15
24,183
kwi/i18n_routing
lib/i18n_routing_rails32.rb
I18nRouting.JourneyRoute.initialize_with_i18n_routing
def initialize_with_i18n_routing(name, app, path, constraints, defaults = {}) @locale = if constraints.key?(:i18n_locale) c = constraints.delete(:i18n_locale) # In rails 3.0 it's a regexp otherwise it's a string, so we need to call source on the regexp (c.respond_to?(:source) ? c.source : c).to_sym else nil end initialize_without_i18n_routing(name, app, path, constraints, defaults) end
ruby
def initialize_with_i18n_routing(name, app, path, constraints, defaults = {}) @locale = if constraints.key?(:i18n_locale) c = constraints.delete(:i18n_locale) # In rails 3.0 it's a regexp otherwise it's a string, so we need to call source on the regexp (c.respond_to?(:source) ? c.source : c).to_sym else nil end initialize_without_i18n_routing(name, app, path, constraints, defaults) end
[ "def", "initialize_with_i18n_routing", "(", "name", ",", "app", ",", "path", ",", "constraints", ",", "defaults", "=", "{", "}", ")", "@locale", "=", "if", "constraints", ".", "key?", "(", ":i18n_locale", ")", "c", "=", "constraints", ".", "delete", "(", ":i18n_locale", ")", "# In rails 3.0 it's a regexp otherwise it's a string, so we need to call source on the regexp", "(", "c", ".", "respond_to?", "(", ":source", ")", "?", "c", ".", "source", ":", "c", ")", ".", "to_sym", "else", "nil", "end", "initialize_without_i18n_routing", "(", "name", ",", "app", ",", "path", ",", "constraints", ",", "defaults", ")", "end" ]
During route initialization, if a condition i18n_locale is present Delete it, store it in @locale, and add it to @defaults
[ "During", "route", "initialization", "if", "a", "condition", "i18n_locale", "is", "present", "Delete", "it", "store", "it", "in" ]
edd30ac3445b928f34a97e3762df0ded3c136230
https://github.com/kwi/i18n_routing/blob/edd30ac3445b928f34a97e3762df0ded3c136230/lib/i18n_routing_rails32.rb#L400-L409
24,184
snltd/wavefront-sdk
lib/wavefront-sdk/core/response.rb
Wavefront.Response.raw_response
def raw_response(json, status) json.empty? ? {} : JSON.parse(json, symbolize_names: true) rescue StandardError { message: json, code: status } end
ruby
def raw_response(json, status) json.empty? ? {} : JSON.parse(json, symbolize_names: true) rescue StandardError { message: json, code: status } end
[ "def", "raw_response", "(", "json", ",", "status", ")", "json", ".", "empty?", "?", "{", "}", ":", "JSON", ".", "parse", "(", "json", ",", "symbolize_names", ":", "true", ")", "rescue", "StandardError", "{", "message", ":", "json", ",", "code", ":", "status", "}", "end" ]
Turn the API's JSON response and HTTP status code into a Ruby object. @return [Hash]
[ "Turn", "the", "API", "s", "JSON", "response", "and", "HTTP", "status", "code", "into", "a", "Ruby", "object", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/core/response.rb#L126-L130
24,185
bih/userq
lib/generators/userq/install_generator.rb
Userq.InstallGenerator.do_migration
def do_migration migration_exists = Dir["db/migrate/*_create_user_queues.rb"].count > 0 if migration_exists and installing? puts "UserQ is already installed. Maybe a 'rake db:migrate' command might help?" return end create_migration puts "Success! UserQ is installed. You can now use it in your application." if installing? puts "UserQ has already been uninstalled. Remember the 'user_queue' table needs to be manually destroyed." if destroying? and migration_exists == false puts "Success! UserQ is uninstalled. The table 'userq_queue' needs to be destroyed manually to complete removal." if destroying? and migration_exists end
ruby
def do_migration migration_exists = Dir["db/migrate/*_create_user_queues.rb"].count > 0 if migration_exists and installing? puts "UserQ is already installed. Maybe a 'rake db:migrate' command might help?" return end create_migration puts "Success! UserQ is installed. You can now use it in your application." if installing? puts "UserQ has already been uninstalled. Remember the 'user_queue' table needs to be manually destroyed." if destroying? and migration_exists == false puts "Success! UserQ is uninstalled. The table 'userq_queue' needs to be destroyed manually to complete removal." if destroying? and migration_exists end
[ "def", "do_migration", "migration_exists", "=", "Dir", "[", "\"db/migrate/*_create_user_queues.rb\"", "]", ".", "count", ">", "0", "if", "migration_exists", "and", "installing?", "puts", "\"UserQ is already installed. Maybe a 'rake db:migrate' command might help?\"", "return", "end", "create_migration", "puts", "\"Success! UserQ is installed. You can now use it in your application.\"", "if", "installing?", "puts", "\"UserQ has already been uninstalled. Remember the 'user_queue' table needs to be manually destroyed.\"", "if", "destroying?", "and", "migration_exists", "==", "false", "puts", "\"Success! UserQ is uninstalled. The table 'userq_queue' needs to be destroyed manually to complete removal.\"", "if", "destroying?", "and", "migration_exists", "end" ]
Setup and create the migration
[ "Setup", "and", "create", "the", "migration" ]
0f7ebb8f789fdcd7c148b7984cb23fddc502167b
https://github.com/bih/userq/blob/0f7ebb8f789fdcd7c148b7984cb23fddc502167b/lib/generators/userq/install_generator.rb#L6-L19
24,186
kayagoban/echochamber
lib/echochamber/client.rb
Echochamber.Client.create_user
def create_user(user) user_response = Echochamber::Request.create_user(user, token) user_response.fetch("userId") end
ruby
def create_user(user) user_response = Echochamber::Request.create_user(user, token) user_response.fetch("userId") end
[ "def", "create_user", "(", "user", ")", "user_response", "=", "Echochamber", "::", "Request", ".", "create_user", "(", "user", ",", "token", ")", "user_response", ".", "fetch", "(", "\"userId\"", ")", "end" ]
Initializes the Client object @param credentials [Echochamber::Credentials] Initialized Echochamber::Credentials @return [Echochamber::Client] Initialized Echochamber::Client Creates a user for the current application @param user [Echochamber::User] @return [String] User ID of new Echosign user
[ "Initializes", "the", "Client", "object" ]
a3665c6b78928e3efa7ba578b899c31aa5c893a4
https://github.com/kayagoban/echochamber/blob/a3665c6b78928e3efa7ba578b899c31aa5c893a4/lib/echochamber/client.rb#L23-L26
24,187
kayagoban/echochamber
lib/echochamber/client.rb
Echochamber.Client.create_transient_document
def create_transient_document(file_name, mime_type, file_handle) transient_document_response = Echochamber::Request.create_transient_document(token, file_name, file_handle, mime_type) transient_document_response.fetch("transientDocumentId") end
ruby
def create_transient_document(file_name, mime_type, file_handle) transient_document_response = Echochamber::Request.create_transient_document(token, file_name, file_handle, mime_type) transient_document_response.fetch("transientDocumentId") end
[ "def", "create_transient_document", "(", "file_name", ",", "mime_type", ",", "file_handle", ")", "transient_document_response", "=", "Echochamber", "::", "Request", ".", "create_transient_document", "(", "token", ",", "file_name", ",", "file_handle", ",", "mime_type", ")", "transient_document_response", ".", "fetch", "(", "\"transientDocumentId\"", ")", "end" ]
Creates a transient document for later referral @param file_name [String] @param mime_type [String] @param file_handle [File] @return [String] Transient document ID
[ "Creates", "a", "transient", "document", "for", "later", "referral" ]
a3665c6b78928e3efa7ba578b899c31aa5c893a4
https://github.com/kayagoban/echochamber/blob/a3665c6b78928e3efa7ba578b899c31aa5c893a4/lib/echochamber/client.rb#L42-L45
24,188
ddnexus/irt
lib/irt/extensions/rails_server.rb
IRT.Utils.ask_run_new_file
def ask_run_new_file(new_file_path, source_path, tmp) return if tmp && IRT.rails_server original_ask_run_new_file(new_file_path, source_path, tmp) end
ruby
def ask_run_new_file(new_file_path, source_path, tmp) return if tmp && IRT.rails_server original_ask_run_new_file(new_file_path, source_path, tmp) end
[ "def", "ask_run_new_file", "(", "new_file_path", ",", "source_path", ",", "tmp", ")", "return", "if", "tmp", "&&", "IRT", ".", "rails_server", "original_ask_run_new_file", "(", "new_file_path", ",", "source_path", ",", "tmp", ")", "end" ]
skips asking to run the save file if it is a tmp file in a server session because the server is exiting so no rerun is possible
[ "skips", "asking", "to", "run", "the", "save", "file", "if", "it", "is", "a", "tmp", "file", "in", "a", "server", "session", "because", "the", "server", "is", "exiting", "so", "no", "rerun", "is", "possible" ]
6d6c5a7631abd6271dcec7def982ebcfc1aaf9e0
https://github.com/ddnexus/irt/blob/6d6c5a7631abd6271dcec7def982ebcfc1aaf9e0/lib/irt/extensions/rails_server.rb#L62-L65
24,189
snltd/wavefront-sdk
lib/wavefront-sdk/user.rb
Wavefront.User.response_shim
def response_shim(body, status) items = JSON.parse(body, symbolize_names: true) { response: { items: items, offset: 0, limit: items.size, totalItems: items.size, modeItems: false }, status: { result: status == 200 ? 'OK' : 'ERROR', message: extract_api_message(status, items), code: status } }.to_json end
ruby
def response_shim(body, status) items = JSON.parse(body, symbolize_names: true) { response: { items: items, offset: 0, limit: items.size, totalItems: items.size, modeItems: false }, status: { result: status == 200 ? 'OK' : 'ERROR', message: extract_api_message(status, items), code: status } }.to_json end
[ "def", "response_shim", "(", "body", ",", "status", ")", "items", "=", "JSON", ".", "parse", "(", "body", ",", "symbolize_names", ":", "true", ")", "{", "response", ":", "{", "items", ":", "items", ",", "offset", ":", "0", ",", "limit", ":", "items", ".", "size", ",", "totalItems", ":", "items", ".", "size", ",", "modeItems", ":", "false", "}", ",", "status", ":", "{", "result", ":", "status", "==", "200", "?", "'OK'", ":", "'ERROR'", ",", "message", ":", "extract_api_message", "(", "status", ",", "items", ")", ",", "code", ":", "status", "}", "}", ".", "to_json", "end" ]
Fake a response which looks like we get from all the other paths. I'm expecting the user response model to be made consistent with others in the future.
[ "Fake", "a", "response", "which", "looks", "like", "we", "get", "from", "all", "the", "other", "paths", ".", "I", "m", "expecting", "the", "user", "response", "model", "to", "be", "made", "consistent", "with", "others", "in", "the", "future", "." ]
93659d2dab64611fd56aee05cf1de1dd732b46f7
https://github.com/snltd/wavefront-sdk/blob/93659d2dab64611fd56aee05cf1de1dd732b46f7/lib/wavefront-sdk/user.rb#L200-L211
24,190
boxgrinder/boxgrinder-build
lib/boxgrinder-build/helpers/aws-helper.rb
BoxGrinder.AWSHelper.parse_opts
def parse_opts(opts_in, opts_defaults) diff_id = opts_in.keys - opts_defaults.keys raise ArgumentError, "Unrecognised argument(s): #{diff_id.join(", ")}" if diff_id.any? (opts_in.keys & opts_defaults.keys).each do |k| raise ArgumentError, "Argument #{k.to_s} must not be nil" if opts_defaults[k] == nil and opts_in[k] == nil end (opts_defaults.keys - opts_in.keys).each do |k| raise ArgumentError, "Argument #{k.to_s} must not be nil" if opts_defaults[k] == nil opts_in.merge!(k => opts_defaults[k]) end opts_in end
ruby
def parse_opts(opts_in, opts_defaults) diff_id = opts_in.keys - opts_defaults.keys raise ArgumentError, "Unrecognised argument(s): #{diff_id.join(", ")}" if diff_id.any? (opts_in.keys & opts_defaults.keys).each do |k| raise ArgumentError, "Argument #{k.to_s} must not be nil" if opts_defaults[k] == nil and opts_in[k] == nil end (opts_defaults.keys - opts_in.keys).each do |k| raise ArgumentError, "Argument #{k.to_s} must not be nil" if opts_defaults[k] == nil opts_in.merge!(k => opts_defaults[k]) end opts_in end
[ "def", "parse_opts", "(", "opts_in", ",", "opts_defaults", ")", "diff_id", "=", "opts_in", ".", "keys", "-", "opts_defaults", ".", "keys", "raise", "ArgumentError", ",", "\"Unrecognised argument(s): #{diff_id.join(\", \")}\"", "if", "diff_id", ".", "any?", "(", "opts_in", ".", "keys", "&", "opts_defaults", ".", "keys", ")", ".", "each", "do", "|", "k", "|", "raise", "ArgumentError", ",", "\"Argument #{k.to_s} must not be nil\"", "if", "opts_defaults", "[", "k", "]", "==", "nil", "and", "opts_in", "[", "k", "]", "==", "nil", "end", "(", "opts_defaults", ".", "keys", "-", "opts_in", ".", "keys", ")", ".", "each", "do", "|", "k", "|", "raise", "ArgumentError", ",", "\"Argument #{k.to_s} must not be nil\"", "if", "opts_defaults", "[", "k", "]", "==", "nil", "opts_in", ".", "merge!", "(", "k", "=>", "opts_defaults", "[", "k", "]", ")", "end", "opts_in", "end" ]
Setting value of a key to nil in opts_defaults forces non-nil value of key in opts_in
[ "Setting", "value", "of", "a", "key", "to", "nil", "in", "opts_defaults", "forces", "non", "-", "nil", "value", "of", "key", "in", "opts_in" ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/helpers/aws-helper.rb#L24-L37
24,191
boxgrinder/boxgrinder-build
lib/boxgrinder-build/plugins/delivery/libvirt/libvirt-plugin.rb
BoxGrinder.LibvirtPlugin.determine_remotely
def determine_remotely # Remove password field from URI, as libvirt doesn't support it directly. We can use it for passphrase if needed. lv_uri = URI::Generic.build(:scheme => @connection_uri.scheme, :userinfo => @connection_uri.user, :host => @connection_uri.host, :path => @connection_uri.path, :query => @connection_uri.query) # The authentication only pertains to libvirtd itself and _not_ the transport (e.g. SSH). conn = Libvirt::open_auth(lv_uri.to_s, [Libvirt::CRED_AUTHNAME, Libvirt::CRED_PASSPHRASE]) do |cred| case cred["type"] when Libvirt::CRED_AUTHNAME @connection_uri.user when Libvirt::CRED_PASSPHRASE @connection_uri.password end end if dom = get_existing_domain(conn, @appliance_name) unless @overwrite @log.fatal("A domain already exists with the name #{@appliance_name}. Set overwrite:true to automatically destroy and undefine it.") raise RuntimeError, "Domain '#{@appliance_name}' already exists" #Make better specific exception end @log.info("Undefining existing domain #{@appliance_name}") undefine_domain(dom) end guest = @libvirt_capabilities.determine_capabilities(conn, @previous_plugin_info) raise "Remote libvirt machine offered no viable guests!" if guest.nil? xml = generate_xml(guest) @log.info("Defining domain #{@appliance_name}") conn.define_domain_xml(xml) xml ensure if conn conn.close unless conn.closed? end end
ruby
def determine_remotely # Remove password field from URI, as libvirt doesn't support it directly. We can use it for passphrase if needed. lv_uri = URI::Generic.build(:scheme => @connection_uri.scheme, :userinfo => @connection_uri.user, :host => @connection_uri.host, :path => @connection_uri.path, :query => @connection_uri.query) # The authentication only pertains to libvirtd itself and _not_ the transport (e.g. SSH). conn = Libvirt::open_auth(lv_uri.to_s, [Libvirt::CRED_AUTHNAME, Libvirt::CRED_PASSPHRASE]) do |cred| case cred["type"] when Libvirt::CRED_AUTHNAME @connection_uri.user when Libvirt::CRED_PASSPHRASE @connection_uri.password end end if dom = get_existing_domain(conn, @appliance_name) unless @overwrite @log.fatal("A domain already exists with the name #{@appliance_name}. Set overwrite:true to automatically destroy and undefine it.") raise RuntimeError, "Domain '#{@appliance_name}' already exists" #Make better specific exception end @log.info("Undefining existing domain #{@appliance_name}") undefine_domain(dom) end guest = @libvirt_capabilities.determine_capabilities(conn, @previous_plugin_info) raise "Remote libvirt machine offered no viable guests!" if guest.nil? xml = generate_xml(guest) @log.info("Defining domain #{@appliance_name}") conn.define_domain_xml(xml) xml ensure if conn conn.close unless conn.closed? end end
[ "def", "determine_remotely", "# Remove password field from URI, as libvirt doesn't support it directly. We can use it for passphrase if needed.", "lv_uri", "=", "URI", "::", "Generic", ".", "build", "(", ":scheme", "=>", "@connection_uri", ".", "scheme", ",", ":userinfo", "=>", "@connection_uri", ".", "user", ",", ":host", "=>", "@connection_uri", ".", "host", ",", ":path", "=>", "@connection_uri", ".", "path", ",", ":query", "=>", "@connection_uri", ".", "query", ")", "# The authentication only pertains to libvirtd itself and _not_ the transport (e.g. SSH).", "conn", "=", "Libvirt", "::", "open_auth", "(", "lv_uri", ".", "to_s", ",", "[", "Libvirt", "::", "CRED_AUTHNAME", ",", "Libvirt", "::", "CRED_PASSPHRASE", "]", ")", "do", "|", "cred", "|", "case", "cred", "[", "\"type\"", "]", "when", "Libvirt", "::", "CRED_AUTHNAME", "@connection_uri", ".", "user", "when", "Libvirt", "::", "CRED_PASSPHRASE", "@connection_uri", ".", "password", "end", "end", "if", "dom", "=", "get_existing_domain", "(", "conn", ",", "@appliance_name", ")", "unless", "@overwrite", "@log", ".", "fatal", "(", "\"A domain already exists with the name #{@appliance_name}. Set overwrite:true to automatically destroy and undefine it.\"", ")", "raise", "RuntimeError", ",", "\"Domain '#{@appliance_name}' already exists\"", "#Make better specific exception", "end", "@log", ".", "info", "(", "\"Undefining existing domain #{@appliance_name}\"", ")", "undefine_domain", "(", "dom", ")", "end", "guest", "=", "@libvirt_capabilities", ".", "determine_capabilities", "(", "conn", ",", "@previous_plugin_info", ")", "raise", "\"Remote libvirt machine offered no viable guests!\"", "if", "guest", ".", "nil?", "xml", "=", "generate_xml", "(", "guest", ")", "@log", ".", "info", "(", "\"Defining domain #{@appliance_name}\"", ")", "conn", ".", "define_domain_xml", "(", "xml", ")", "xml", "ensure", "if", "conn", "conn", ".", "close", "unless", "conn", ".", "closed?", "end", "end" ]
Interact with a libvirtd, attempt to determine optimal settings where possible. Register the appliance as a new domain.
[ "Interact", "with", "a", "libvirtd", "attempt", "to", "determine", "optimal", "settings", "where", "possible", ".", "Register", "the", "appliance", "as", "a", "new", "domain", "." ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/plugins/delivery/libvirt/libvirt-plugin.rb#L160-L197
24,192
boxgrinder/boxgrinder-build
lib/boxgrinder-build/plugins/delivery/libvirt/libvirt-plugin.rb
BoxGrinder.LibvirtPlugin.determine_locally
def determine_locally domain = @libvirt_capabilities.get_plugin(@previous_plugin_info).domain_rank.last generate_xml(OpenStruct.new({ :domain_type => domain.name, :os_type => domain.virt_rank.last, :bus => domain.bus })) end
ruby
def determine_locally domain = @libvirt_capabilities.get_plugin(@previous_plugin_info).domain_rank.last generate_xml(OpenStruct.new({ :domain_type => domain.name, :os_type => domain.virt_rank.last, :bus => domain.bus })) end
[ "def", "determine_locally", "domain", "=", "@libvirt_capabilities", ".", "get_plugin", "(", "@previous_plugin_info", ")", ".", "domain_rank", ".", "last", "generate_xml", "(", "OpenStruct", ".", "new", "(", "{", ":domain_type", "=>", "domain", ".", "name", ",", ":os_type", "=>", "domain", ".", "virt_rank", ".", "last", ",", ":bus", "=>", "domain", ".", "bus", "}", ")", ")", "end" ]
Make no external connections, just dump a basic XML skeleton and provide sensible defaults where user provided values are not given.
[ "Make", "no", "external", "connections", "just", "dump", "a", "basic", "XML", "skeleton", "and", "provide", "sensible", "defaults", "where", "user", "provided", "values", "are", "not", "given", "." ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/plugins/delivery/libvirt/libvirt-plugin.rb#L201-L208
24,193
boxgrinder/boxgrinder-build
lib/boxgrinder-build/plugins/delivery/libvirt/libvirt-plugin.rb
BoxGrinder.LibvirtPlugin.upload_image
def upload_image uploader = SFTPHelper.new(:log => @log) #SFTP library automagically uses keys registered with the OS first before trying a password. uploader.connect(@image_delivery_uri.host, (@image_delivery_uri.user || Etc.getlogin), :password => @image_delivery_uri.password) uploader.upload_files(@image_delivery_uri.path, @default_permissions, @overwrite, File.basename(@previous_deliverables.disk) => @previous_deliverables.disk) ensure uploader.disconnect if uploader.connected? end
ruby
def upload_image uploader = SFTPHelper.new(:log => @log) #SFTP library automagically uses keys registered with the OS first before trying a password. uploader.connect(@image_delivery_uri.host, (@image_delivery_uri.user || Etc.getlogin), :password => @image_delivery_uri.password) uploader.upload_files(@image_delivery_uri.path, @default_permissions, @overwrite, File.basename(@previous_deliverables.disk) => @previous_deliverables.disk) ensure uploader.disconnect if uploader.connected? end
[ "def", "upload_image", "uploader", "=", "SFTPHelper", ".", "new", "(", ":log", "=>", "@log", ")", "#SFTP library automagically uses keys registered with the OS first before trying a password.", "uploader", ".", "connect", "(", "@image_delivery_uri", ".", "host", ",", "(", "@image_delivery_uri", ".", "user", "||", "Etc", ".", "getlogin", ")", ",", ":password", "=>", "@image_delivery_uri", ".", "password", ")", "uploader", ".", "upload_files", "(", "@image_delivery_uri", ".", "path", ",", "@default_permissions", ",", "@overwrite", ",", "File", ".", "basename", "(", "@previous_deliverables", ".", "disk", ")", "=>", "@previous_deliverables", ".", "disk", ")", "ensure", "uploader", ".", "disconnect", "if", "uploader", ".", "connected?", "end" ]
Upload an image via SFTP
[ "Upload", "an", "image", "via", "SFTP" ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/plugins/delivery/libvirt/libvirt-plugin.rb#L211-L225
24,194
boxgrinder/boxgrinder-build
lib/boxgrinder-build/plugins/delivery/libvirt/libvirt-plugin.rb
BoxGrinder.LibvirtPlugin.build_xml
def build_xml(opts = {}) opts = {:bus => @bus, :os_type => :hvm}.merge!(opts) builder = Builder::XmlMarkup.new(:indent => 2) xml = builder.domain(:type => opts[:domain_type].to_s) do |domain| domain.name(@appliance_name) domain.description(@appliance_config.summary) domain.memory(@appliance_config.hardware.memory * 1024) #KB domain.vcpu(@appliance_config.hardware.cpus) domain.os do |os| os.type(opts[:os_type].to_s, :arch => @appliance_config.hardware.arch) os.boot(:dev => 'hd') end domain.devices do |devices| devices.disk(:type => 'file', :device => 'disk') do |disk| disk.source(:file => "#{@libvirt_image_uri}/#{File.basename(@previous_deliverables.disk)}") disk.target(:dev => 'hda', :bus => opts[:bus].to_s) end devices.interface(:type => 'network') do |interface| interface.source(:network => @network) interface.mac(:address => @mac) if @mac end devices.console(:type => 'pty') unless @noautoconsole devices.graphics(:type => 'vnc', :port => -1) unless @novnc end domain.features do |features| features.pae if @appliance_config.os.pae end end @log.debug xml # Let the user modify the XML specification to their requirements if @script @log.info "Attempting to run user provided script for modifying libVirt XML..." xml = IO::popen("#{@script} --domain '#{xml}'").read @log.debug "Response was: #{xml}" end xml end
ruby
def build_xml(opts = {}) opts = {:bus => @bus, :os_type => :hvm}.merge!(opts) builder = Builder::XmlMarkup.new(:indent => 2) xml = builder.domain(:type => opts[:domain_type].to_s) do |domain| domain.name(@appliance_name) domain.description(@appliance_config.summary) domain.memory(@appliance_config.hardware.memory * 1024) #KB domain.vcpu(@appliance_config.hardware.cpus) domain.os do |os| os.type(opts[:os_type].to_s, :arch => @appliance_config.hardware.arch) os.boot(:dev => 'hd') end domain.devices do |devices| devices.disk(:type => 'file', :device => 'disk') do |disk| disk.source(:file => "#{@libvirt_image_uri}/#{File.basename(@previous_deliverables.disk)}") disk.target(:dev => 'hda', :bus => opts[:bus].to_s) end devices.interface(:type => 'network') do |interface| interface.source(:network => @network) interface.mac(:address => @mac) if @mac end devices.console(:type => 'pty') unless @noautoconsole devices.graphics(:type => 'vnc', :port => -1) unless @novnc end domain.features do |features| features.pae if @appliance_config.os.pae end end @log.debug xml # Let the user modify the XML specification to their requirements if @script @log.info "Attempting to run user provided script for modifying libVirt XML..." xml = IO::popen("#{@script} --domain '#{xml}'").read @log.debug "Response was: #{xml}" end xml end
[ "def", "build_xml", "(", "opts", "=", "{", "}", ")", "opts", "=", "{", ":bus", "=>", "@bus", ",", ":os_type", "=>", ":hvm", "}", ".", "merge!", "(", "opts", ")", "builder", "=", "Builder", "::", "XmlMarkup", ".", "new", "(", ":indent", "=>", "2", ")", "xml", "=", "builder", ".", "domain", "(", ":type", "=>", "opts", "[", ":domain_type", "]", ".", "to_s", ")", "do", "|", "domain", "|", "domain", ".", "name", "(", "@appliance_name", ")", "domain", ".", "description", "(", "@appliance_config", ".", "summary", ")", "domain", ".", "memory", "(", "@appliance_config", ".", "hardware", ".", "memory", "*", "1024", ")", "#KB", "domain", ".", "vcpu", "(", "@appliance_config", ".", "hardware", ".", "cpus", ")", "domain", ".", "os", "do", "|", "os", "|", "os", ".", "type", "(", "opts", "[", ":os_type", "]", ".", "to_s", ",", ":arch", "=>", "@appliance_config", ".", "hardware", ".", "arch", ")", "os", ".", "boot", "(", ":dev", "=>", "'hd'", ")", "end", "domain", ".", "devices", "do", "|", "devices", "|", "devices", ".", "disk", "(", ":type", "=>", "'file'", ",", ":device", "=>", "'disk'", ")", "do", "|", "disk", "|", "disk", ".", "source", "(", ":file", "=>", "\"#{@libvirt_image_uri}/#{File.basename(@previous_deliverables.disk)}\"", ")", "disk", ".", "target", "(", ":dev", "=>", "'hda'", ",", ":bus", "=>", "opts", "[", ":bus", "]", ".", "to_s", ")", "end", "devices", ".", "interface", "(", ":type", "=>", "'network'", ")", "do", "|", "interface", "|", "interface", ".", "source", "(", ":network", "=>", "@network", ")", "interface", ".", "mac", "(", ":address", "=>", "@mac", ")", "if", "@mac", "end", "devices", ".", "console", "(", ":type", "=>", "'pty'", ")", "unless", "@noautoconsole", "devices", ".", "graphics", "(", ":type", "=>", "'vnc'", ",", ":port", "=>", "-", "1", ")", "unless", "@novnc", "end", "domain", ".", "features", "do", "|", "features", "|", "features", ".", "pae", "if", "@appliance_config", ".", "os", ".", "pae", "end", "end", "@log", ".", "debug", "xml", "# Let the user modify the XML specification to their requirements", "if", "@script", "@log", ".", "info", "\"Attempting to run user provided script for modifying libVirt XML...\"", "xml", "=", "IO", "::", "popen", "(", "\"#{@script} --domain '#{xml}'\"", ")", ".", "read", "@log", ".", "debug", "\"Response was: #{xml}\"", "end", "xml", "end" ]
Build the XML domain definition. If the user provides a script, it will be called after the basic definition has been constructed with the XML as the sole parameter. The output from stdout of the script will be used as the new domain definition.
[ "Build", "the", "XML", "domain", "definition", ".", "If", "the", "user", "provides", "a", "script", "it", "will", "be", "called", "after", "the", "basic", "definition", "has", "been", "constructed", "with", "the", "XML", "as", "the", "sole", "parameter", ".", "The", "output", "from", "stdout", "of", "the", "script", "will", "be", "used", "as", "the", "new", "domain", "definition", "." ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/plugins/delivery/libvirt/libvirt-plugin.rb#L237-L276
24,195
boxgrinder/boxgrinder-build
lib/boxgrinder-build/plugins/delivery/libvirt/libvirt-plugin.rb
BoxGrinder.LibvirtPlugin.get_existing_domain
def get_existing_domain(conn, name) return conn.lookup_domain_by_name(name) rescue Libvirt::Error => e return nil if e.libvirt_code == 42 # If domain not defined raise # Otherwise reraise end
ruby
def get_existing_domain(conn, name) return conn.lookup_domain_by_name(name) rescue Libvirt::Error => e return nil if e.libvirt_code == 42 # If domain not defined raise # Otherwise reraise end
[ "def", "get_existing_domain", "(", "conn", ",", "name", ")", "return", "conn", ".", "lookup_domain_by_name", "(", "name", ")", "rescue", "Libvirt", "::", "Error", "=>", "e", "return", "nil", "if", "e", ".", "libvirt_code", "==", "42", "# If domain not defined", "raise", "# Otherwise reraise", "end" ]
Look up a domain by name
[ "Look", "up", "a", "domain", "by", "name" ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/plugins/delivery/libvirt/libvirt-plugin.rb#L281-L286
24,196
boxgrinder/boxgrinder-build
lib/boxgrinder-build/plugins/delivery/libvirt/libvirt-plugin.rb
BoxGrinder.LibvirtPlugin.undefine_domain
def undefine_domain(dom) case dom.info.state when Libvirt::Domain::RUNNING, Libvirt::Domain::PAUSED, Libvirt::Domain::BLOCKED dom.destroy end dom.undefine end
ruby
def undefine_domain(dom) case dom.info.state when Libvirt::Domain::RUNNING, Libvirt::Domain::PAUSED, Libvirt::Domain::BLOCKED dom.destroy end dom.undefine end
[ "def", "undefine_domain", "(", "dom", ")", "case", "dom", ".", "info", ".", "state", "when", "Libvirt", "::", "Domain", "::", "RUNNING", ",", "Libvirt", "::", "Domain", "::", "PAUSED", ",", "Libvirt", "::", "Domain", "::", "BLOCKED", "dom", ".", "destroy", "end", "dom", ".", "undefine", "end" ]
Undefine a domain. The domain will be destroyed first if required.
[ "Undefine", "a", "domain", ".", "The", "domain", "will", "be", "destroyed", "first", "if", "required", "." ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/plugins/delivery/libvirt/libvirt-plugin.rb#L289-L295
24,197
boxgrinder/boxgrinder-build
lib/boxgrinder-build/plugins/delivery/libvirt/libvirt-plugin.rb
BoxGrinder.LibvirtPlugin.write_xml
def write_xml(xml) fname = "#{@appliance_name}.xml" File.open("#{@dir.tmp}/#{fname}", 'w'){|f| f.write(xml)} register_deliverable(:xml => fname) end
ruby
def write_xml(xml) fname = "#{@appliance_name}.xml" File.open("#{@dir.tmp}/#{fname}", 'w'){|f| f.write(xml)} register_deliverable(:xml => fname) end
[ "def", "write_xml", "(", "xml", ")", "fname", "=", "\"#{@appliance_name}.xml\"", "File", ".", "open", "(", "\"#{@dir.tmp}/#{fname}\"", ",", "'w'", ")", "{", "|", "f", "|", "f", ".", "write", "(", "xml", ")", "}", "register_deliverable", "(", ":xml", "=>", "fname", ")", "end" ]
Write domain XML to file
[ "Write", "domain", "XML", "to", "file" ]
fa21c27451d23f281b41a3e32339d5d791d5f420
https://github.com/boxgrinder/boxgrinder-build/blob/fa21c27451d23f281b41a3e32339d5d791d5f420/lib/boxgrinder-build/plugins/delivery/libvirt/libvirt-plugin.rb#L307-L311
24,198
duke-libraries/ddr-models
lib/ddr/models/with_content_file.rb
Ddr::Models.WithContentFile.with_temp_file
def with_temp_file filename = original_filename || content.default_file_name basename = [ File.basename(filename, ".*"), File.extname(filename) ] infile = Tempfile.open(basename, Ddr::Models.tempdir, encoding: 'ascii-8bit') begin infile.write(content.content) infile.close verify_checksum!(infile) yield infile.path ensure infile.close unless infile.closed? File.unlink(infile) end end
ruby
def with_temp_file filename = original_filename || content.default_file_name basename = [ File.basename(filename, ".*"), File.extname(filename) ] infile = Tempfile.open(basename, Ddr::Models.tempdir, encoding: 'ascii-8bit') begin infile.write(content.content) infile.close verify_checksum!(infile) yield infile.path ensure infile.close unless infile.closed? File.unlink(infile) end end
[ "def", "with_temp_file", "filename", "=", "original_filename", "||", "content", ".", "default_file_name", "basename", "=", "[", "File", ".", "basename", "(", "filename", ",", "\".*\"", ")", ",", "File", ".", "extname", "(", "filename", ")", "]", "infile", "=", "Tempfile", ".", "open", "(", "basename", ",", "Ddr", "::", "Models", ".", "tempdir", ",", "encoding", ":", "'ascii-8bit'", ")", "begin", "infile", ".", "write", "(", "content", ".", "content", ")", "infile", ".", "close", "verify_checksum!", "(", "infile", ")", "yield", "infile", ".", "path", "ensure", "infile", ".", "close", "unless", "infile", ".", "closed?", "File", ".", "unlink", "(", "infile", ")", "end", "end" ]
Yields path of tempfile containing content to block @yield [String] the path to the tempfile containing content
[ "Yields", "path", "of", "tempfile", "containing", "content", "to", "block" ]
1555c436daf8a8370cd7220c65ba1d8008918795
https://github.com/duke-libraries/ddr-models/blob/1555c436daf8a8370cd7220c65ba1d8008918795/lib/ddr/models/with_content_file.rb#L14-L27
24,199
duke-libraries/ddr-models
lib/ddr/auth/auth_context.rb
Ddr::Auth.AuthContext.member_of?
def member_of?(group) if group.is_a? Group groups.include? group else member_of? Group.new(group) end end
ruby
def member_of?(group) if group.is_a? Group groups.include? group else member_of? Group.new(group) end end
[ "def", "member_of?", "(", "group", ")", "if", "group", ".", "is_a?", "Group", "groups", ".", "include?", "group", "else", "member_of?", "Group", ".", "new", "(", "group", ")", "end", "end" ]
Is the user associated with the auth context a member of the group? @param group [Group, String] group object or group id @return [Boolean]
[ "Is", "the", "user", "associated", "with", "the", "auth", "context", "a", "member", "of", "the", "group?" ]
1555c436daf8a8370cd7220c65ba1d8008918795
https://github.com/duke-libraries/ddr-models/blob/1555c436daf8a8370cd7220c65ba1d8008918795/lib/ddr/auth/auth_context.rb#L69-L75