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 |
|---|---|---|---|---|---|---|---|---|
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/rrsig.rb | app/models/rrsig.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/ds.rb | app/models/ds.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/auth_token.rb | app/models/auth_token.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/ta.rb | app/models/ta.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/cname.rb | app/models/cname.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/tsig.rb | app/models/tsig.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/nsec.rb | app/models/nsec.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/mx.rb | app/models/mx.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/loc.rb | app/models/loc.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/schedule.rb | app/models/schedule.rb | class Schedule < ActiveRecord::Base
attr_accessible :name, :date
def self.get name
Schedule.where(:name => name).first_or_create
end
def self.run_exclusive name
s = Schedule.where(:name => name).first_or_create
s.with_lock do
ret = yield s
s.save
return ret
end
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/app/models/cert.rb | app/models/cert.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.rb | app/models/user.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/mailers/notifier.rb | app/mailers/notifier.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/stories/helper.rb | stories/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/stories/all.rb | stories/all.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/db/seeds.rb | db/seeds.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/db/schema.rb | db/schema.rb | # encoding: UTF-8
# This file is auto-generated from the current state of the database. Instead
# of editing this file, please use the migrations feature of Active Record to
# incrementally modify your database, and then regenerate this schema definition.
#
# Note that this schema.rb definition is the authoritative sou... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20180830191058_create_acls.rb | db/migrate/20180830191058_create_acls.rb | class CreateAcls < ActiveRecord::Migration
def change
create_table :acls do |t|
t.timestamps null: false
end
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20130219183739_fix_record_templates_attributes.rb | db/migrate/20130219183739_fix_record_templates_attributes.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/db/migrate/20150105051755_add_sibling_id_to_domains.rb | db/migrate/20150105051755_add_sibling_id_to_domains.rb | class AddSiblingIdToDomains < ActiveRecord::Migration
def change
add_column :domains, :sibling_id, :integer, index: true
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20120405120000_create_audits.rb | db/migrate/20120405120000_create_audits.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/db/migrate/20160609132503_add_name_to_users.rb | db/migrate/20160609132503_add_name_to_users.rb | class AddNameToUsers < ActiveRecord::Migration
def change
add_column :users, :name, :string
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20180619122648_add_export_to_to_domain.rb | db/migrate/20180619122648_add_export_to_to_domain.rb | class AddExportToToDomain < ActiveRecord::Migration
def change
add_column :domains, :export_to, :string, array: true
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20190130182510_change_token.rb | db/migrate/20190130182510_change_token.rb | class ChangeToken < ActiveRecord::Migration
def change
change_column :users, :oauth_token, :text
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20160609143554_add_oauth_expires_at_to_users.rb | db/migrate/20160609143554_add_oauth_expires_at_to_users.rb | class AddOauthExpiresAtToUsers < ActiveRecord::Migration
def change
add_column :users, :oauth_expires_at, :datetime
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20120619223235_increase_length_records_content.rb | db/migrate/20120619223235_increase_length_records_content.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/db/migrate/20180522210929_add_range_to_record.rb | db/migrate/20180522210929_add_range_to_record.rb | class AddRangeToRecord < ActiveRecord::Migration
def change
add_column :records, :range, :string
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20120402120000_create_records.rb | db/migrate/20120402120000_create_records.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/db/migrate/20120420202106_set_domain_ttl_as_nullable.rb | db/migrate/20120420202106_set_domain_ttl_as_nullable.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/db/migrate/20120424170903_create_views.rb | db/migrate/20120424170903_create_views.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/db/migrate/20120401120000_create_domains.rb | db/migrate/20120401120000_create_domains.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/db/migrate/20170519182716_add_disabled_to_domain.rb | db/migrate/20170519182716_add_disabled_to_domain.rb | class AddDisabledToDomain < ActiveRecord::Migration
def change
add_column :domains, :disabled, :boolean, :default => false
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20141003232635_create_schedules.rb | db/migrate/20141003232635_create_schedules.rb | class CreateSchedules < ActiveRecord::Migration
def change
create_table :schedules do |t|
t.string :name, :null => false
t.datetime :date
t.timestamps
end
add_index :schedules, :name, unique: true
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20120913150000_add_foreign_keys.rb | db/migrate/20120913150000_add_foreign_keys.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/db/migrate/20120404120000_create_users.rb | db/migrate/20120404120000_create_users.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/db/migrate/20160613182355_add_provider_to_users.rb | db/migrate/20160613182355_add_provider_to_users.rb | class AddProviderToUsers < ActiveRecord::Migration
def change
add_column :users, :provider, :string
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20120523202405_add_query_ip_address_to_views.rb | db/migrate/20120523202405_add_query_ip_address_to_views.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/db/migrate/20180522210447_add_generate_to_record.rb | db/migrate/20180522210447_add_generate_to_record.rb | class AddGenerateToRecord < ActiveRecord::Migration
def change
add_column :records, :generate, :boolean
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20170207113243_add_weight_and_port_to_record_template.rb | db/migrate/20170207113243_add_weight_and_port_to_record_template.rb | class AddWeightAndPortToRecordTemplate < ActiveRecord::Migration
def change
add_column :record_templates, :weight, :integer
add_column :record_templates, :port, :integer
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20170206161214_add_weight_and_port_to_records.rb | db/migrate/20170206161214_add_weight_and_port_to_records.rb | class AddWeightAndPortToRecords < ActiveRecord::Migration
def change
add_column :records, :weight, :integer
add_column :records, :port, :integer
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20120403120000_create_templates.rb | db/migrate/20120403120000_create_templates.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/db/migrate/20160613182510_change_password_salt_null.rb | db/migrate/20160613182510_change_password_salt_null.rb | class ChangePasswordSaltNull < ActiveRecord::Migration
def change
change_column :users, :password_salt, :string, :null => true
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20160609162420_add_uid_to_users.rb | db/migrate/20160609162420_add_uid_to_users.rb | class AddUidToUsers < ActiveRecord::Migration
def change
add_column :users, :uid, :string
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20160613181936_add_password_to_users.rb | db/migrate/20160613181936_add_password_to_users.rb | class AddPasswordToUsers < ActiveRecord::Migration
def change
add_column :users, :password, :string, :default => "password"
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20160413212730_add_request_uuid_to_audits.rb | db/migrate/20160413212730_add_request_uuid_to_audits.rb | class AddRequestUuidToAudits < ActiveRecord::Migration
def self.up
add_column :audits, :request_uuid, :string
add_index :audits, :request_uuid
end
def self.down
remove_column :audits, :request_uuid
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20160609143530_add_oauth_token_to_users.rb | db/migrate/20160609143530_add_oauth_token_to_users.rb | class AddOauthTokenToUsers < ActiveRecord::Migration
def change
add_column :users, :oauth_token, :string
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20170622175729_remove_disabled_from_domain.rb | db/migrate/20170622175729_remove_disabled_from_domain.rb | class RemoveDisabledFromDomain < ActiveRecord::Migration
def change
remove_column :domains, :disabled
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20120525183452_convert_bind_time_values_to_string.rb | db/migrate/20120525183452_convert_bind_time_values_to_string.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/db/migrate/20120528162942_rename_query_ip_address_to_key.rb | db/migrate/20120528162942_rename_query_ip_address_to_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/db/migrate/20160608205545_add_active_to_user.rb | db/migrate/20160608205545_add_active_to_user.rb | class AddActiveToUser < ActiveRecord::Migration
def change
add_column :users, :active, :boolean, default: true
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20120420171552_add_addressing_type_to_domains.rb | db/migrate/20120420171552_add_addressing_type_to_domains.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/db/migrate/20160613182452_change_encrypted_password_null.rb | db/migrate/20160613182452_change_encrypted_password_null.rb | class ChangeEncryptedPasswordNull < ActiveRecord::Migration
def change
change_column :users, :encrypted_password, :string, :null => true
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20170509142358_create_caas.rb | db/migrate/20170509142358_create_caas.rb | class CreateCaas < ActiveRecord::Migration
def change
create_table :caas do |t|
t.timestamps null: false
end
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20170509195431_add_tag_to_record.rb | db/migrate/20170509195431_add_tag_to_record.rb | class AddTagToRecord < ActiveRecord::Migration
def change
add_column :records, :tag, :string
add_column :record_templates, :tag, :string
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/db/migrate/20170207122634_fix_srv_record_attributes.rb | db/migrate/20170207122634_fix_srv_record_attributes.rb | class FixSrvRecordAttributes < ActiveRecord::Migration
def change
records = Record.where(type: "SRV")
records.each do |record|
if record.prio.nil? or record.weight.nil? or record.port.nil? and !record.content.nil?
puts record
srv_attr = record.content.split
record.prio = srv_attr... | ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/autotest/discover.rb | autotest/discover.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/test/test_helper.rb | test/test_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/test/controllers/access_denied_controller_test.rb | test/controllers/access_denied_controller_test.rb | require 'test_helper'
class AccessDeniedControllerTest < ActionController::TestCase
test "should get new" do
get :new
assert_response :success
end
test "should get create" do
get :create
assert_response :success
end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/test/models/acl_test.rb | test/models/acl_test.rb | require 'test_helper'
class AclTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/test/performance/browsing_test.rb | test/performance/browsing_test.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/test/unit/schedule_test.rb | test/unit/schedule_test.rb | require 'test_helper'
class ScheduleTest < ActiveSupport::TestCase
# test "the truth" do
# assert true
# end
end
| ruby | Apache-2.0 | d745871945c76cd26a8c926873b59690ef1ea5a7 | 2026-01-04T17:43:23.539268Z | false |
globocom/GloboDNS | https://github.com/globocom/GloboDNS/blob/d745871945c76cd26a8c926873b59690ef1ea5a7/test/unit/exporter_test.rb | test/unit/exporter_test.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/test/functional/domains_controller_test.rb | test/functional/domains_controller_test.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/test/functional/records_controller_test.rb | test/functional/records_controller_test.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/public/dispatch.rb | public/dispatch.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/features/support/env.rb | features/support/env.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/features/support/paths.rb | features/support/paths.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/features/support/selectors.rb | features/support/selectors.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/features/step_definitions/web_steps.rb | features/step_definitions/web_steps.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/features/step_definitions/webrat_steps.rb | features/step_definitions/webrat_steps.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/features/step_definitions/macro_definition_steps.rb | features/step_definitions/macro_definition_steps.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/spec/spec_helper.rb | spec/spec_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/spec/support/sign_in_helpers.rb | spec/support/sign_in_helpers.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/spec/support/users_factory.rb | spec/support/users_factory.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/spec/support/zone_template_factory.rb | spec/support/zone_template_factory.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/spec/support/domain_factory.rb | spec/support/domain_factory.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/spec/support/auth_token_factory.rb | spec/support/auth_token_factory.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/spec/support/macro_factory.rb | spec/support/macro_factory.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/spec/helpers/macro_steps_helper_spec.rb | spec/helpers/macro_steps_helper_spec.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/spec/helpers/audits_helper_spec.rb | spec/helpers/audits_helper_spec.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/spec/helpers/macros_helper_spec.rb | spec/helpers/macros_helper_spec.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/spec/helpers/application_helper_spec.rb | spec/helpers/application_helper_spec.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/spec/controllers/search_controller_spec.rb | spec/controllers/search_controller_spec.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/spec/controllers/audits_controller_spec.rb | spec/controllers/audits_controller_spec.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/spec/controllers/auth_tokens_controller_spec.rb | spec/controllers/auth_tokens_controller_spec.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/spec/controllers/macros_controller_spec.rb | spec/controllers/macros_controller_spec.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/spec/controllers/macro_steps_controller_spec.rb | spec/controllers/macro_steps_controller_spec.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/spec/controllers/sessions_controller_spec.rb | spec/controllers/sessions_controller_spec.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/spec/controllers/users_controller_spec.rb | spec/controllers/users_controller_spec.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/spec/controllers/domains_controller_spec.rb | spec/controllers/domains_controller_spec.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/spec/controllers/templates_controller_spec.rb | spec/controllers/templates_controller_spec.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/spec/controllers/dashboard_controller_spec.rb | spec/controllers/dashboard_controller_spec.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/spec/controllers/reports_controller_spec.rb | spec/controllers/reports_controller_spec.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/spec/controllers/record_template_controller_spec.rb | spec/controllers/record_template_controller_spec.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/spec/controllers/records_controller_spec.rb | spec/controllers/records_controller_spec.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/spec/models/record_spec.rb | spec/models/record_spec.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/spec/models/record_template_spec.rb | spec/models/record_template_spec.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/spec/models/macro_step_spec.rb | spec/models/macro_step_spec.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/spec/models/ptr_spec.rb | spec/models/ptr_spec.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/spec/models/a_spec.rb | spec/models/a_spec.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.