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 |
|---|---|---|---|---|---|---|---|---|
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/spec/factories/ignored_table_factory.rb | spec/factories/ignored_table_factory.rb | FactoryBot.define do
factory :ignored_table do
data_source
pattern { ".+_(?:old|wk|l)" }
end
end
| ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/spec/factories/user_factory.rb | spec/factories/user_factory.rb | FactoryBot.define do
factory :user do
provider { "google_oauth2" }
sequence(:uid) { |n| (n * 100).to_s }
name { "name_#{uid}" }
email { "#{name}@gmail.com" }
image_url { "https://lh3.googleusercontent.com/-l5MDH3jtWXc/AAAAAAAAAAI/AAAAAAAAAAA/2wjfVaIkYNY/photo.jpg" }
trait :admin do
admi... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/spec/factories/schema_memo_log_factory.rb | spec/factories/schema_memo_log_factory.rb | FactoryBot.define do
factory :schema_memo_log do
schema_memo
sequence(:revision) { |n| n }
user
description { "# schema memo" }
description_diff { "+# schema memo" }
end
end
| ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/spec/factories/column_memo_factory.rb | spec/factories/column_memo_factory.rb | FactoryBot.define do
factory :column_memo do
table_memo
sequence(:name) { |n| "column#{n}" }
description { "# column memo" }
end
end
| ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/spec/factories/schema_memo_factory.rb | spec/factories/schema_memo_factory.rb | FactoryBot.define do
factory :schema_memo do
database_memo
sequence(:name) { |n| "schema#{n}" }
description { "# schema memo" }
end
end
| ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/spec/factories/database_memo_log_factory.rb | spec/factories/database_memo_log_factory.rb | FactoryBot.define do
factory :database_memo_log do
database_memo
sequence(:revision) { |n| n }
user
description { "# database memo" }
description_diff { "+# database memo" }
end
end
| ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/spec/factories/database_memo_factory.rb | spec/factories/database_memo_factory.rb | FactoryBot.define do
factory :database_memo do
sequence(:name) { |n| "database#{n}" }
description { "# database memo" }
end
end
| ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/spec/factories/keyword_factory.rb | spec/factories/keyword_factory.rb | FactoryBot.define do
factory :keyword do
name { "keyword" }
description { "# keyword description" }
end
end
| ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/spec/factories/favorite_table_factory.rb | spec/factories/favorite_table_factory.rb | FactoryBot.define do
factory :favorite_table do
user
table_memo
end
end
| ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/spec/factories/data_source_factory.rb | spec/factories/data_source_factory.rb | FactoryBot.define do
factory :data_source do
name { "dmemo" }
description { "# dmemo test db\nDB for test." }
adapter { ActiveRecord::Base.establish_connection.db_config.configuration_hash[:adapter] }
host { "localhost" }
port { 5432 }
dbname { ActiveRecord::Base.establish_connection.db_config... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/spec/models/data_source_spec.rb | spec/models/data_source_spec.rb | require "rails_helper"
describe DataSource, type: :model do
let(:data_source) { FactoryBot.create(:data_source) }
describe "#data_source_table" do
it "return data source table" do
table_names = data_source.source_table_names
ds_table = data_source.data_source_table("public", "data_sources", table_... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/spec/models/autolink_keyword_spec.rb | spec/models/autolink_keyword_spec.rb | require "rails_helper"
describe AutolinkKeyword, type: :model do
describe ".links" do
let(:database_memo) { FactoryBot.create(:database_memo, name: "db") }
let(:schema_memo) { FactoryBot.create(:schema_memo, database_memo:, name: "myapp") }
before do
FactoryBot.create(:table_memo, schema_memo:, nam... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/spec/models/data_source_adapters/mysql2_adapter_spec.rb | spec/models/data_source_adapters/mysql2_adapter_spec.rb | require "rails_helper"
describe DataSourceAdapters::Mysql2Adapter, type: :model do
let(:data_source) do
FactoryBot.create(
:data_source,
adapter: 'mysql2',
port: 3306,
dbname: 'dmemo_test',
user: 'root',
password: '',
host: '127.0.0.1',
)
end
let(:adapter) { Data... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/spec/models/data_source_adapters/bigquery_adapter_spec.rb | spec/models/data_source_adapters/bigquery_adapter_spec.rb | require "rails_helper"
describe DataSourceAdapters::BigqueryAdapter, type: :model do
let(:data_source) { FactoryBot.create(:data_source, :bigquery_adapter) }
let(:adapter) { DataSourceAdapters::BigqueryAdapter.new(data_source) }
let(:table) { DataSourceTable.new(data_source, 'public', 'keywords') }
describe "... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/spec/models/data_source_adapters/standard_adapter_spec.rb | spec/models/data_source_adapters/standard_adapter_spec.rb | require "rails_helper"
describe DataSourceAdapters::StandardAdapter, type: :model do
let(:data_source) { FactoryBot.create(:data_source) }
let(:adapter) { DataSourceAdapters::StandardAdapter.new(data_source) }
let(:table) { DataSourceTable.new(data_source, 'public', 'keywords') }
describe "#source_base_class"... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/spec/batches/synchronize_data_sources_spec.rb | spec/batches/synchronize_data_sources_spec.rb | require "rails_helper"
describe SynchronizeDataSources do
let(:batch) { SynchronizeDataSources }
describe ".run" do
let!(:data_source) { FactoryBot.create(:data_source, name: "dmemo", description: "") }
it "synchronize data_source" do
expect(DatabaseMemo.count).to eq(0)
batch.run
data... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/spec/lib/autoload/return_to_validator_spec.rb | spec/lib/autoload/return_to_validator_spec.rb | require 'rails_helper'
RSpec.describe ReturnToValidator do
let(:validator) { described_class }
describe '.valid?' do
it 'accepts a valid path' do
expect(validator).to be_valid('/users/1')
end
it 'rejects absolute URI' do
expect(validator).to_not be_valid('http://example.net')
end
... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/spec/lib/autoload/html/pipeline/autolink_keyword_filter_spec.rb | spec/lib/autoload/html/pipeline/autolink_keyword_filter_spec.rb | require "rails_helper"
describe HTML::Pipeline::AutolinkKeywordFilter do
describe "#call" do
let(:filter) { HTML::Pipeline::AutolinkKeywordFilter.new(doc, autolink_keywords:) }
let(:doc) { Nokogiri::HTML::DocumentFragment.parse(html) }
let(:autolink_keywords) { {
"ruby" => "https://www.ruby-lang.or... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/spec/spec_helpers/request_spec_helper.rb | spec/spec_helpers/request_spec_helper.rb | module RequestSpecHelper
def self.last_response
@response
end
def self.last_response=(response)
@response = response
end
def set_rack_session(hash)
data = ::RackSessionAccess.encode(hash)
put RackSessionAccess.path, params: { data: }
end
def login!(user: nil, admin: false)
user ||= ... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/lib/autoload/return_to_validator.rb | lib/autoload/return_to_validator.rb | module ReturnToValidator
def self.valid?(return_to)
if return_to.nil?
return false
end
uri = Addressable::URI.parse(return_to)
!uri.nil? && uri.host.nil? && uri.scheme.nil?
rescue Addressable::URI::InvalidURIError
false
end
end
| ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/lib/autoload/html/pipeline/inner_text_filter.rb | lib/autoload/html/pipeline/inner_text_filter.rb | module HTML
class Pipeline
class InnerTextFilter < HTML::Pipeline::Filter
def call
doc.text
end
end
end
end
| ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/lib/autoload/html/pipeline/autolink_keyword_filter.rb | lib/autoload/html/pipeline/autolink_keyword_filter.rb | module HTML
class Pipeline
class AutolinkKeywordFilter < Filter
IGNORED_ANCESTOR_TAGS = %w(pre code a)
def call
return doc unless context[:autolink_keywords]
doc.search('.//text()').each do |node|
next if has_ancestor?(node, IGNORED_ANCESTOR_TAGS)
content = node.t... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/application.rb | config/application.rb | require_relative "boot"
require "rails"
require "active_model/railtie"
require "active_record/railtie"
require "action_controller/railtie"
require "action_view/railtie"
# Require the gems listed in Gemfile, including any gems
# you've limited to :test, :development, or :production.
Bundler.require(*Rails.groups)
mod... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/environment.rb | config/environment.rb | # Load the Rails application.
require_relative "application"
# Initialize the Rails application.
Rails.application.initialize!
| ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/puma.rb | config/puma.rb | # Puma can serve each request in a thread from an internal thread pool.
# The `threads` method setting takes two numbers a minimum and maximum.
# Any libraries that use thread pools should be configured to match
# the maximum value specified for Puma. Default is set to 5 threads for minimum
# and maximum, this matches ... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/routes.rb | config/routes.rb | Rails.application.routes.draw do
root "top#show"
resource :setting, only: %w(show)
resources :data_sources
patch "/data_sources/:id/import_schema/:schema_name" => "data_sources#import_schema", as: "import_schema"
patch "/data_sources/:id/unlink_schema/:schema_name" => "data_sources#unlink_schema", as: "unlin... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/spring.rb | config/spring.rb | %w(
.ruby-version
.rbenv-vars
tmp/restart.txt
tmp/caching-dev.txt
).each { |path| Spring.watch(path) }
| ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/boot.rb | config/boot.rb | ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
require "bundler/setup" # Set up gems listed in the Gemfile.
require "bootsnap/setup" # Speed up boot time by caching expensive operations.
| ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/initializers/content_security_policy.rb | config/initializers/content_security_policy.rb | # Be sure to restart your server when you modify this file.
# Define an application-wide content security policy.
# See the Securing Rails Applications Guide for more information:
# https://guides.rubyonrails.org/security.html#content-security-policy-header
# Rails.application.configure do
# config.content_security... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/initializers/filter_parameter_logging.rb | config/initializers/filter_parameter_logging.rb | # Be sure to restart your server when you modify this file.
# Configure parameters to be filtered from the log file. Use this to limit dissemination of
# sensitive information. See the ActiveSupport::ParameterFilter documentation for supported
# notations and behaviors.
Rails.application.config.filter_parameters += [
... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/initializers/application_controller_renderer.rb | config/initializers/application_controller_renderer.rb | # Be sure to restart your server when you modify this file.
# ActiveSupport::Reloader.to_prepare do
# ApplicationController.renderer.defaults.merge!(
# http_host: 'example.org',
# https: false
# )
# end
| ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/initializers/logger.rb | config/initializers/logger.rb | Rails.application.configure do
config.middleware.swap(
Rails::Rack::Logger,
Silencer::Logger,
config.log_tags,
silence: ["/site/sha"]
)
end
| ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/initializers/session_store.rb | config/initializers/session_store.rb | # Be sure to restart your server when you modify this file.
Rails.application.config.session_store :cookie_store, key: '_dmemo_session'
| ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/initializers/data_source_adapters.rb | config/initializers/data_source_adapters.rb | Rails.application.config.to_prepare do
ActiveSupport.on_load(:active_record) do
DataSourceAdapters.register_adapter(DataSourceAdapters::PostgresqlAdapter, 'postgresql')
DataSourceAdapters.register_adapter(DataSourceAdapters::Mysql2Adapter, 'mysql2')
DataSourceAdapters.register_adapter(DataSourceAdapters::... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/initializers/wrap_parameters.rb | config/initializers/wrap_parameters.rb | # Be sure to restart your server when you modify this file.
# This file contains settings for ActionController::ParamsWrapper which
# is enabled by default.
# Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
ActiveSupport.on_load(:action_controller) do
wrap_parameters f... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/initializers/omniauth.rb | config/initializers/omniauth.rb | Rails.application.config.middleware.use OmniAuth::Builder do
provider :google_oauth2, ENV["GOOGLE_CLIENT_ID"], ENV["GOOGLE_CLIENT_SECRET"], {
hd: ENV["GOOGLE_HOSTED_DOMAIN"].present? ? ENV["GOOGLE_HOSTED_DOMAIN"] : nil,
}
end
| ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/initializers/inflections.rb | config/initializers/inflections.rb | # Be sure to restart your server when you modify this file.
# Add new inflection rules using the following format. Inflections
# are locale specific, and you may define rules for as many different
# locales as you wish. All of these examples are active by default:
# ActiveSupport::Inflector.inflections(:en) do |inflec... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/initializers/active_record_connection_adapters.rb | config/initializers/active_record_connection_adapters.rb | # This file explicitly requires the connection adapter for mysql2 to ensure that every adapter is loaded before the app launch.
# This helps database_rewinder's monkey patch, which assumes that basic adapters are loaded before the patch is applied.
# https://github.com/amatsuda/database_rewinder/blob/v1.0.1/lib/databas... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/initializers/cookies_serializer.rb | config/initializers/cookies_serializer.rb | # Be sure to restart your server when you modify this file.
# Specify a serializer for the signed and encrypted cookie jars.
# Valid options are :json, :marshal, and :hybrid.
Rails.application.config.action_dispatch.cookies_serializer = :json
| ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/initializers/permissions_policy.rb | config/initializers/permissions_policy.rb | # Define an application-wide HTTP permissions policy. For further
# information see https://developers.google.com/web/updates/2018/06/feature-policy
#
# Rails.application.config.permissions_policy do |f|
# f.camera :none
# f.gyroscope :none
# f.microphone :none
# f.usb :none
# f.fullscreen :s... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/initializers/html_pipeline.rb | config/initializers/html_pipeline.rb | require 'html/pipeline'
require 'html/pipeline/autolink_filter'
require 'html/pipeline/autolink_keyword_filter'
require 'html/pipeline/inner_text_filter'
require 'html/pipeline/markdown_filter'
require 'html/pipeline/syntax_highlight_filter'
Rails.application.reloader.to_prepare do
Rails.application.config.markdown... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/initializers/backtrace_silencers.rb | config/initializers/backtrace_silencers.rb | # Be sure to restart your server when you modify this file.
# You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
# Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
# You can also remove all the silencers if you're trying to debug a probl... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/initializers/mime_types.rb | config/initializers/mime_types.rb | # Be sure to restart your server when you modify this file.
# Add new mime types for use in respond_to blocks:
# Mime::Type.register "text/richtext", :rtf
| ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/initializers/disable_ar_logger_ignore_payload.rb | config/initializers/disable_ar_logger_ignore_payload.rb | ActiveSupport.on_load(:active_record) do
ActiveRecord::LogSubscriber::IGNORE_PAYLOAD_NAMES.reject! { true }
end
| ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/environments/test.rb | config/environments/test.rb | require "active_support/core_ext/integer/time"
# The test environment is used exclusively to run your application's
# test suite. You never need to work with it otherwise. Remember that
# your test database is "scratch space" for the test suite and is wiped
# and recreated between test runs. Don't rely on the data the... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/environments/development.rb | config/environments/development.rb | require "active_support/core_ext/integer/time"
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
# In the development environment your application's code is reloaded any time
# it changes. This slows down response time but is perfect for developme... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
cookpad/dmemo | https://github.com/cookpad/dmemo/blob/9cf312044a85c02280853d6ab95b82404dbfdeb5/config/environments/production.rb | config/environments/production.rb | require "active_support/core_ext/integer/time"
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
# Code is not reloaded between requests.
config.cache_classes = true
# Eager load code on boot. This eager loads most of Rails and
# your applica... | ruby | MIT | 9cf312044a85c02280853d6ab95b82404dbfdeb5 | 2026-01-04T17:49:09.929348Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/gzr_spec.rb | spec/gzr_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/spec_helper.rb | spec/spec_helper.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/group_spec.rb | spec/integration/group_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/query_spec.rb | spec/integration/query_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/plan_spec.rb | spec/integration/plan_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/alert_spec.rb | spec/integration/alert_spec.rb | # The MIT License (MIT)
# Copyright (c) 2024 Mike DeAngelo Google, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the rights to
# use... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/model_spec.rb | spec/integration/model_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/role_spec.rb | spec/integration/role_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/connection_spec.rb | spec/integration/connection_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/attribute_spec.rb | spec/integration/attribute_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/folder_spec.rb | spec/integration/folder_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/dashboard_spec.rb | spec/integration/dashboard_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/look_spec.rb | spec/integration/look_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/permission_spec.rb | spec/integration/permission_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/user_spec.rb | spec/integration/user_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/query/runquery_spec.rb | spec/integration/query/runquery_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/user/delete_spec.rb | spec/integration/user/delete_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/user/ls_spec.rb | spec/integration/user/ls_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/user/enable_spec.rb | spec/integration/user/enable_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/user/disable_spec.rb | spec/integration/user/disable_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/user/cat_spec.rb | spec/integration/user/cat_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/user/me_spec.rb | spec/integration/user/me_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/model/ls_spec.rb | spec/integration/model/ls_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/plan/randomize_spec.rb | spec/integration/plan/randomize_spec.rb | # The MIT License (MIT)
# Copyright (c) 2024 Mike DeAngelo Google, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the rights to
# use... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/plan/import_spec.rb | spec/integration/plan/import_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/plan/ls_spec.rb | spec/integration/plan/ls_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/plan/failures_spec.rb | spec/integration/plan/failures_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/plan/run_spec.rb | spec/integration/plan/run_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/plan/enable_spec.rb | spec/integration/plan/enable_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/plan/disable_spec.rb | spec/integration/plan/disable_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/plan/rm_spec.rb | spec/integration/plan/rm_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/plan/cat_spec.rb | spec/integration/plan/cat_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/connection/ls_spec.rb | spec/integration/connection/ls_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/connection/dialects_spec.rb | spec/integration/connection/dialects_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/group/member_users_spec.rb | spec/integration/group/member_users_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/group/ls_spec.rb | spec/integration/group/ls_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/group/member_groups_spec.rb | spec/integration/group/member_groups_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/alert/randomize_spec.rb | spec/integration/alert/randomize_spec.rb | # The MIT License (MIT)
# Copyright (c) 2024 Mike DeAngelo Google, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the rights to
# use... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/dashboard/import_spec.rb | spec/integration/dashboard/import_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/dashboard/mv_spec.rb | spec/integration/dashboard/mv_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/dashboard/rm_spec.rb | spec/integration/dashboard/rm_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/dashboard/cat_spec.rb | spec/integration/dashboard/cat_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/folder/export_spec.rb | spec/integration/folder/export_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/folder/ls_spec.rb | spec/integration/folder/ls_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/folder/top_spec.rb | spec/integration/folder/top_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/folder/create_spec.rb | spec/integration/folder/create_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/folder/tree_spec.rb | spec/integration/folder/tree_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/folder/rm_spec.rb | spec/integration/folder/rm_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/folder/cat_spec.rb | spec/integration/folder/cat_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/look/import_spec.rb | spec/integration/look/import_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/look/mv_spec.rb | spec/integration/look/mv_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/look/rm_spec.rb | spec/integration/look/rm_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
looker-open-source/gzr | https://github.com/looker-open-source/gzr/blob/329fd27a33941ecabc87192a5460efdf34352806/spec/integration/look/cat_spec.rb | spec/integration/look/cat_spec.rb | # The MIT License (MIT)
# Copyright (c) 2018 Mike DeAngelo Looker Data Sciences, Inc.
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the r... | ruby | MIT | 329fd27a33941ecabc87192a5460efdf34352806 | 2026-01-04T17:49:18.520281Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.