repo stringlengths 5 92 | file_url stringlengths 80 287 | file_path stringlengths 5 197 | content stringlengths 0 32.8k | language stringclasses 1
value | license stringclasses 7
values | commit_sha stringlengths 40 40 | retrieved_at stringdate 2026-01-04 15:37:27 2026-01-04 17:58:21 | truncated bool 2
classes |
|---|---|---|---|---|---|---|---|---|
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/configurations.rb | lib/zabbixapi/classes/configurations.rb | class ZabbixApi
class Configurations < Basic
# @return [Boolean]
def array_flag
true
end
# The method name used for interacting with Configurations via Zabbix API
#
# @return [String]
def method_name
'configuration'
end
# The id field name used for identifying specifi... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/maintenance.rb | lib/zabbixapi/classes/maintenance.rb | class ZabbixApi
class Maintenance < Basic
# The method name used for interacting with Maintenances via Zabbix API
#
# @return [String]
def method_name
'maintenance'
end
# The id field name used for identifying specific Maintenance objects via Zabbix API
#
# @return [String]
... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/problems.rb | lib/zabbixapi/classes/problems.rb | class ZabbixApi
class Problems < Basic
# The method name used for interacting with Hosts via Zabbix API
#
# @return [String]
def method_name
'problem'
end
# The id field name used for identifying specific Problem objects via Zabbix API
#
# @return [String]
def identify
... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/items.rb | lib/zabbixapi/classes/items.rb | class ZabbixApi
class Items < Basic
# The method name used for interacting with Items via Zabbix API
#
# @return [String]
def method_name
'item'
end
# The id field name used for identifying specific Item objects via Zabbix API
#
# @return [String]
def identify
'name'
... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/errors.rb | lib/zabbixapi/classes/errors.rb | class ZabbixApi
class BaseError < RuntimeError
attr_accessor :response, :error, :error_message
def initialize(message, response = nil)
super(message)
@response = response
set_error! if @response
end
private
def set_error!
@error = @response['error']
@error_message =... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/applications.rb | lib/zabbixapi/classes/applications.rb | class ZabbixApi
class Applications < Basic
# The method name used for interacting with Applications via Zabbix API
#
# @return [String]
def method_name
'application'
end
# The id field name used for identifying specific Application objects via Zabbix API
#
# @return [String]
... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/hostgroups.rb | lib/zabbixapi/classes/hostgroups.rb | class ZabbixApi
class HostGroups < Basic
# The method name used for interacting with HostGroups via Zabbix API
#
# @return [String]
def method_name
'hostgroup'
end
# The id field name used for identifying specific HostGroup objects via Zabbix API
#
# @return [String]
def ide... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/proxies.rb | lib/zabbixapi/classes/proxies.rb | class ZabbixApi
class Proxies < Basic
# The method name used for interacting with Proxies via Zabbix API
#
# @return [String]
def method_name
'proxy'
end
# The id field name used for identifying specific Proxy objects via Zabbix API
#
# @return [String]
def identify
'n... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/templates.rb | lib/zabbixapi/classes/templates.rb | class ZabbixApi
class Templates < Basic
# The method name used for interacting with Templates via Zabbix API
#
# @return [String]
def method_name
'template'
end
# The id field name used for identifying specific Template objects via Zabbix API
#
# @return [String]
def identif... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/roles.rb | lib/zabbixapi/classes/roles.rb | class ZabbixApi
class Roles < Basic
# The method name used for interacting with Role via Zabbix API
#
# @return [String]
def method_name
'role'
end
# The key field name used for Role objects via Zabbix API
#
# @return [String]
def key
'roleid'
end
# The id fie... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/unusable.rb | lib/zabbixapi/classes/unusable.rb | class ZabbixApi
class Triggers < Basic
def create_or_update(data)
log "[DEBUG] Call create_or_update with parameters: #{data.inspect}"
get_or_create(data)
end
end
end
| ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/graphs.rb | lib/zabbixapi/classes/graphs.rb | class ZabbixApi
class Graphs < Basic
# The method name used for interacting with Graphs via Zabbix API
#
# @return [String]
def method_name
'graph'
end
# The id field name used for identifying specific Graph objects via Zabbix API
#
# @return [String]
def identify
'nam... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/httptests.rb | lib/zabbixapi/classes/httptests.rb | class ZabbixApi
class HttpTests < Basic
# The method name used for interacting with HttpTests via Zabbix API
#
# @return [String]
def method_name
'httptest'
end
# The id field name used for identifying specific HttpTest objects via Zabbix API
#
# @return [String]
def identif... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/scripts.rb | lib/zabbixapi/classes/scripts.rb | class ZabbixApi
class Scripts < Basic
def method_name
'script'
end
# The id field name used for identifying specific Screen objects via Zabbix API
#
# @return [String]
def identify
'name'
end
# Submits a request to the zabbix api
# data - A Hash containing the scripti... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/drules.rb | lib/zabbixapi/classes/drules.rb | class ZabbixApi
class Drules < Basic
# The method name used for interacting with Drules via Zabbix API
#
# @return [String]
def method_name
'drule'
end
# The id field name used for identifying specific Drule objects via Zabbix API
#
# @return [String]
def identify
'nam... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/triggers.rb | lib/zabbixapi/classes/triggers.rb | class ZabbixApi
class Triggers < Basic
# The method name used for interacting with Triggers via Zabbix API
#
# @return [String]
def method_name
'trigger'
end
# The id field name used for identifying specific Trigger objects via Zabbix API
#
# @return [String]
def identify
... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/server.rb | lib/zabbixapi/classes/server.rb | class ZabbixApi
class Server
# @return [String]
attr_reader :version
# Initializes a new Server object with ZabbixApi Client and fetches Zabbix Server API version
#
# @param client [ZabbixApi::Client]
# @return [ZabbixApi::Client]
# @return [String] Zabbix API version number
def initi... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/mediatypes.rb | lib/zabbixapi/classes/mediatypes.rb | class ZabbixApi
class Mediatypes < Basic
# The method name used for interacting with MediaTypes via Zabbix API
#
# @return [String]
def method_name
'mediatype'
end
# The id field name used for identifying specific MediaType objects via Zabbix API
#
# @return [String]
def ide... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/valuemaps.rb | lib/zabbixapi/classes/valuemaps.rb | class ZabbixApi
class ValueMaps < Basic
# The method name used for interacting with ValueMaps via Zabbix API
#
# @return [String]
def method_name
'valuemap'
end
# The key field name used for ValueMap objects via Zabbix API
#
# @return [String]
def key
'valuemapid'
... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/hosts.rb | lib/zabbixapi/classes/hosts.rb | class ZabbixApi
class Hosts < Basic
# The method name used for interacting with Hosts via Zabbix API
#
# @return [String]
def method_name
'host'
end
# The id field name used for identifying specific Host objects via Zabbix API
#
# @return [String]
def identify
'host'
... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/screens.rb | lib/zabbixapi/classes/screens.rb | class ZabbixApi
class Screens < Basic
# extracted from frontends/php/include/defines.inc.php
# SCREEN_RESOURCE_GRAPH => 0,
# SCREEN_RESOURCE_SIMPLE_GRAPH => 1,
# SCREEN_RESOURCE_MAP => 2,
# SCREEN_RESOURCE_PLAIN_TEXT => 3,
# SCREEN_RESOURCE_HOSTS_INFO => 4,
# SCREEN_RESOURCE_TRIGGERS_INFO ... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/usergroups.rb | lib/zabbixapi/classes/usergroups.rb | class ZabbixApi
class Usergroups < Basic
# The method name used for interacting with Usergroups via Zabbix API
#
# @return [String]
def method_name
'usergroup'
end
# The key field name used for Usergroup objects via Zabbix API
#
# @return [String]
def key
'usrgrpid'
... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/usermacros.rb | lib/zabbixapi/classes/usermacros.rb | class ZabbixApi
class Usermacros < Basic
# The id field name used for identifying specific User macro objects via Zabbix API
#
# @return [String]
def identify
'macro'
end
# The method name used for interacting with User macros via Zabbix API
#
# @return [String]
def method_n... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
express42/zabbixapi | https://github.com/express42/zabbixapi/blob/d8f23720aaf1bb6928414c91e02f426dac699c30/lib/zabbixapi/classes/proxygroup.rb | lib/zabbixapi/classes/proxygroup.rb | class ZabbixApi
class Proxygroup < Basic
# The method name used for interacting with Proxygroup via Zabbix API
#
# @return [String]
def method_name
'proxygroup'
end
# The id field name used for identifying specific Proxygroup objects via Zabbix API
#
# @return [String]
def i... | ruby | MIT | d8f23720aaf1bb6928414c91e02f426dac699c30 | 2026-01-04T17:47:42.006756Z | false |
yabeda-rb/yabeda-sidekiq | https://github.com/yabeda-rb/yabeda-sidekiq/blob/4488eb848788093ac5809129646fd4956edbf0ec/spec/spec_helper.rb | spec/spec_helper.rb | # frozen_string_literal: true
require "bundler/setup"
require "sidekiq/cli" # Fake that we're a worker to test worker-specific things
require "yabeda/sidekiq"
require "yabeda/rspec"
require "sidekiq/testing"
require "active_job"
require "active_job/queue_adapters/sidekiq_adapter"
require "pry"
require_relative "supp... | ruby | MIT | 4488eb848788093ac5809129646fd4956edbf0ec | 2026-01-04T17:47:44.155696Z | false |
yabeda-rb/yabeda-sidekiq | https://github.com/yabeda-rb/yabeda-sidekiq/blob/4488eb848788093ac5809129646fd4956edbf0ec/spec/support/sidekiq_inline_middlewares.rb | spec/support/sidekiq_inline_middlewares.rb | # frozen_string_literal: true
require "sidekiq/testing"
module SidekiqTestingInlineWithMiddlewares
# rubocop:disable Metrics/AbcSize
def push(job)
return super unless Sidekiq::Testing.inline?
job = Sidekiq.load_json(Sidekiq.dump_json(job))
job["jid"] ||= SecureRandom.hex(12)
job_class = Object.co... | ruby | MIT | 4488eb848788093ac5809129646fd4956edbf0ec | 2026-01-04T17:47:44.155696Z | false |
yabeda-rb/yabeda-sidekiq | https://github.com/yabeda-rb/yabeda-sidekiq/blob/4488eb848788093ac5809129646fd4956edbf0ec/spec/support/custom_metrics.rb | spec/support/custom_metrics.rb | # frozen_string_literal: true
Yabeda.configure do
group :test do
counter :whatever
end
end
| ruby | MIT | 4488eb848788093ac5809129646fd4956edbf0ec | 2026-01-04T17:47:44.155696Z | false |
yabeda-rb/yabeda-sidekiq | https://github.com/yabeda-rb/yabeda-sidekiq/blob/4488eb848788093ac5809129646fd4956edbf0ec/spec/support/jobs.rb | spec/support/jobs.rb | # frozen_string_literal: true
class SamplePlainJob
include Sidekiq::Worker
def perform(*_args)
"My job is simple"
end
end
class SampleLongRunningJob
include Sidekiq::Worker
def perform(*_args)
sleep 0.05
"Phew, I'm done!"
end
end
class SampleComplexJob
include Sidekiq::Worker
def perfo... | ruby | MIT | 4488eb848788093ac5809129646fd4956edbf0ec | 2026-01-04T17:47:44.155696Z | false |
yabeda-rb/yabeda-sidekiq | https://github.com/yabeda-rb/yabeda-sidekiq/blob/4488eb848788093ac5809129646fd4956edbf0ec/spec/yabeda/sidekiq_spec.rb | spec/yabeda/sidekiq_spec.rb | # frozen_string_literal: true
RSpec.describe Yabeda::Sidekiq do
it "has a version number" do
expect(Yabeda::Sidekiq::VERSION).not_to be nil
end
it "configures middlewares" do
config = Sidekiq.respond_to?(:default_configuration) ? Sidekiq.default_configuration : Sidekiq
expect(config.client_middlewar... | ruby | MIT | 4488eb848788093ac5809129646fd4956edbf0ec | 2026-01-04T17:47:44.155696Z | false |
yabeda-rb/yabeda-sidekiq | https://github.com/yabeda-rb/yabeda-sidekiq/blob/4488eb848788093ac5809129646fd4956edbf0ec/lib/yabeda/sidekiq.rb | lib/yabeda/sidekiq.rb | # frozen_string_literal: true
require "sidekiq"
require "sidekiq/api"
require "yabeda"
require "yabeda/sidekiq/version"
require "yabeda/sidekiq/client_middleware"
require "yabeda/sidekiq/server_middleware"
require "yabeda/sidekiq/config"
module Yabeda
module Sidekiq
LONG_RUNNING_JOB_RUNTIME_BUCKETS = [
0... | ruby | MIT | 4488eb848788093ac5809129646fd4956edbf0ec | 2026-01-04T17:47:44.155696Z | false |
yabeda-rb/yabeda-sidekiq | https://github.com/yabeda-rb/yabeda-sidekiq/blob/4488eb848788093ac5809129646fd4956edbf0ec/lib/yabeda/sidekiq/version.rb | lib/yabeda/sidekiq/version.rb | # frozen_string_literal: true
module Yabeda
module Sidekiq
VERSION = "0.12.0"
end
end
| ruby | MIT | 4488eb848788093ac5809129646fd4956edbf0ec | 2026-01-04T17:47:44.155696Z | false |
yabeda-rb/yabeda-sidekiq | https://github.com/yabeda-rb/yabeda-sidekiq/blob/4488eb848788093ac5809129646fd4956edbf0ec/lib/yabeda/sidekiq/server_middleware.rb | lib/yabeda/sidekiq/server_middleware.rb | # frozen_string_literal: true
module Yabeda
module Sidekiq
# Sidekiq worker middleware
class ServerMiddleware
# See https://github.com/mperham/sidekiq/discussions/4971
JOB_RECORD_CLASS = defined?(::Sidekiq::JobRecord) ? ::Sidekiq::JobRecord : ::Sidekiq::Job
# rubocop: disable Metrics/AbcSi... | ruby | MIT | 4488eb848788093ac5809129646fd4956edbf0ec | 2026-01-04T17:47:44.155696Z | false |
yabeda-rb/yabeda-sidekiq | https://github.com/yabeda-rb/yabeda-sidekiq/blob/4488eb848788093ac5809129646fd4956edbf0ec/lib/yabeda/sidekiq/client_middleware.rb | lib/yabeda/sidekiq/client_middleware.rb | # frozen_string_literal: true
module Yabeda
module Sidekiq
# Client middleware to count number of enqueued jobs
class ClientMiddleware
def call(worker, job, queue, _redis_pool)
labels = Yabeda::Sidekiq.labelize(worker, job, job["queue"] || queue)
Yabeda.sidekiq_jobs_enqueued_total.incre... | ruby | MIT | 4488eb848788093ac5809129646fd4956edbf0ec | 2026-01-04T17:47:44.155696Z | false |
yabeda-rb/yabeda-sidekiq | https://github.com/yabeda-rb/yabeda-sidekiq/blob/4488eb848788093ac5809129646fd4956edbf0ec/lib/yabeda/sidekiq/config.rb | lib/yabeda/sidekiq/config.rb | # frozen_string_literal: true
require "anyway"
module Yabeda
module Sidekiq
class Config < ::Anyway::Config
config_name :yabeda_sidekiq
# By default all sidekiq worker processes (servers) collects global metrics about whole Sidekiq installation.
# Client processes (everything else that is not... | ruby | MIT | 4488eb848788093ac5809129646fd4956edbf0ec | 2026-01-04T17:47:44.155696Z | false |
CocoaPods/cocoapods-try | https://github.com/CocoaPods/cocoapods-try/blob/c30ca17e364e10086aa75ac5f2f61f368d7c7e95/spec/spec_helper.rb | spec/spec_helper.rb |
# Set up
#-----------------------------------------------------------------------------#
require 'bundler/setup'
require 'pathname'
require 'bacon'
require 'mocha-on-bacon'
require 'pretty_bacon'
require 'cocoapods'
ROOT = Pathname.new(File.expand_path('../../', __FILE__))
$LOAD_PATH.unshift((ROOT + 'lib').to_s)
$LO... | ruby | MIT | c30ca17e364e10086aa75ac5f2f61f368d7c7e95 | 2026-01-04T17:48:05.498097Z | false |
CocoaPods/cocoapods-try | https://github.com/CocoaPods/cocoapods-try/blob/c30ca17e364e10086aa75ac5f2f61f368d7c7e95/spec/command/try_settings_spec.rb | spec/command/try_settings_spec.rb | require 'tmpdir'
require File.expand_path('../../spec_helper', __FILE__)
# The CocoaPods namespace
#
module Pod
describe TrySettings do
it 'returns an instance with empty defaults when there are no yml settings files' do
Dir.mktmpdir do |dir|
settings = TrySettings.settings_from_folder dir
... | ruby | MIT | c30ca17e364e10086aa75ac5f2f61f368d7c7e95 | 2026-01-04T17:48:05.498097Z | false |
CocoaPods/cocoapods-try | https://github.com/CocoaPods/cocoapods-try/blob/c30ca17e364e10086aa75ac5f2f61f368d7c7e95/spec/command/try_spec.rb | spec/command/try_spec.rb | require File.expand_path('../../spec_helper', __FILE__)
# The CocoaPods namespace
#
module Pod
describe Command::Try do
describe 'Try' do
XCODE_PROJECT = Pod::Command::Try::TRY_TMP_DIR + 'Project.xcodeproj'
XCODE_WORKSPACE = Pod::Command::Try::TRY_TMP_DIR + 'Project.xcworkspace'
it 'registers ... | ruby | MIT | c30ca17e364e10086aa75ac5f2f61f368d7c7e95 | 2026-01-04T17:48:05.498097Z | false |
CocoaPods/cocoapods-try | https://github.com/CocoaPods/cocoapods-try/blob/c30ca17e364e10086aa75ac5f2f61f368d7c7e95/lib/cocoapods_plugin.rb | lib/cocoapods_plugin.rb | require 'pod/command/try'
| ruby | MIT | c30ca17e364e10086aa75ac5f2f61f368d7c7e95 | 2026-01-04T17:48:05.498097Z | false |
CocoaPods/cocoapods-try | https://github.com/CocoaPods/cocoapods-try/blob/c30ca17e364e10086aa75ac5f2f61f368d7c7e95/lib/cocoapods_try.rb | lib/cocoapods_try.rb | # The namespace of the Cocoapods try plugin.
#
module CocoapodsTry
VERSION = '1.2.0'.freeze
end
| ruby | MIT | c30ca17e364e10086aa75ac5f2f61f368d7c7e95 | 2026-01-04T17:48:05.498097Z | false |
CocoaPods/cocoapods-try | https://github.com/CocoaPods/cocoapods-try/blob/c30ca17e364e10086aa75ac5f2f61f368d7c7e95/lib/pod/try_settings.rb | lib/pod/try_settings.rb | module Pod
class TrySettings
attr_accessor :pre_install_commands, :project_path
# Creates a TrySettings instance based on a folder path
#
def self.settings_from_folder(path)
settings_path = Pathname.new(path) + '.cocoapods.yml'
return TrySettings.new unless File.exist? settings_path
... | ruby | MIT | c30ca17e364e10086aa75ac5f2f61f368d7c7e95 | 2026-01-04T17:48:05.498097Z | false |
CocoaPods/cocoapods-try | https://github.com/CocoaPods/cocoapods-try/blob/c30ca17e364e10086aa75ac5f2f61f368d7c7e95/lib/pod/command/try.rb | lib/pod/command/try.rb | require 'pod/try_settings'
# The CocoaPods namespace
#
module Pod
class Command
# The pod try command.
# @CocoaPods 0.29.0
#
class Try < Command
include RepoUpdate
self.summary = 'Try a Pod!'
self.description = <<-DESC
Downloads the Pod with the given `NAME` (or Git `URL... | ruby | MIT | c30ca17e364e10086aa75ac5f2f61f368d7c7e95 | 2026-01-04T17:48:05.498097Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/helpers/reports_helper.rb | app/helpers/reports_helper.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/helpers/dashboard_helper.rb | app/helpers/dashboard_helper.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/helpers/sessions_helper.rb | app/helpers/sessions_helper.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/helpers/search_helper.rb | app/helpers/search_helper.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/helpers/syslog_helper.rb | app/helpers/syslog_helper.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/helpers/users_helper.rb | app/helpers/users_helper.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/helpers/access_denied_helper.rb | app/helpers/access_denied_helper.rb | module AccessDeniedHelper
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/helpers/macros_helper.rb | app/helpers/macros_helper.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/helpers/records_helper.rb | app/helpers/records_helper.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/helpers/bind_time_format_helper.rb | app/helpers/bind_time_format_helper.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/helpers/application_helper.rb | app/helpers/application_helper.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/helpers/domains_helper.rb | app/helpers/domains_helper.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/helpers/macro_steps_helper.rb | app/helpers/macro_steps_helper.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/helpers/templates_helper.rb | app/helpers/templates_helper.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/helpers/auth_tokens_helper.rb | app/helpers/auth_tokens_helper.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/helpers/audits_helper.rb | app/helpers/audits_helper.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/controllers/bind9_controller.rb | app/controllers/bind9_controller.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/controllers/domains_controller.rb | app/controllers/domains_controller.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/controllers/access_denied_controller.rb | app/controllers/access_denied_controller.rb | class AccessDeniedController < ApplicationController
skip_before_filter :authenticate_user!
def show
respond_to do |format|
format.html { render :status => :not_authorized, :file => File.join(Rails.root, 'public', '401.html'), :layout => nil }
format.json { render :status => :forbidden, :json =... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/controllers/omniauth_callbacks_controller.rb | app/controllers/omniauth_callbacks_controller.rb | class OmniauthCallbacksController < Devise::OmniauthCallbacksController
skip_before_filter :authenticate_user!
# def oauth_provider
# @user = User.from_omniauth(request.env["omniauth.auth"])
# if @user.persisted?
# if @user.active
# sign_in_and_redirect @user, :event => :authentication #this ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/controllers/domain_templates_controller.rb | app/controllers/domain_templates_controller.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/controllers/records_controller.rb | app/controllers/records_controller.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/controllers/dashboard_controller.rb | app/controllers/dashboard_controller.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/controllers/views_controller.rb | app/controllers/views_controller.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/controllers/users_controller.rb | app/controllers/users_controller.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/controllers/record_templates_controller.rb | app/controllers/record_templates_controller.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/controllers/reports_controller.rb | app/controllers/reports_controller.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/controllers/audits_controller.rb | app/controllers/audits_controller.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/controllers/auth_tokens_controller.rb | app/controllers/auth_tokens_controller.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/controllers/sessions_controller.rb | app/controllers/sessions_controller.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/controllers/application_controller.rb | app/controllers/application_controller.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/controllers/search_controller.rb | app/controllers/search_controller.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/user_observer.rb | app/models/user_observer.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/nsec3param.rb | app/models/nsec3param.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/dlv.rb | app/models/dlv.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/record.rb | app/models/record.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/txt.rb | app/models/txt.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/aaaa.rb | app/models/aaaa.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/spf.rb | app/models/spf.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/kx.rb | app/models/kx.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/srv.rb | app/models/srv.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/dnskey.rb | app/models/dnskey.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/soa.rb | app/models/soa.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/ns.rb | app/models/ns.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/record_template.rb | app/models/record_template.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/sig.rb | app/models/sig.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/view.rb | app/models/view.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/a.rb | app/models/a.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/ptr.rb | app/models/ptr.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/audits.rb | app/models/audits.rb | class Audits < ActiveRecord::Base
include SyslogHelper
include BindTimeFormatHelper
attr_accessible :time, :user_id, :from, :action, :entity, :association, :changes;
# scopes
default_scope { order("#{self.table_name}.name") }
# scope :updated_since, -> (timestamp) {Domain.where("#{self.tab... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/acl.rb | app/models/acl.rb | class Acl < ActiveRecord::Base
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/domain.rb | app/models/domain.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/caa.rb | app/models/caa.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/nsec3.rb | app/models/nsec3.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/tkey.rb | app/models/tkey.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/key.rb | app/models/key.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/domain_template.rb | app/models/domain_template.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/ipseckey.rb | app/models/ipseckey.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/user_mailer.rb | app/models/user_mailer.rb | # Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use ... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.