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 |
|---|---|---|---|---|---|---|---|---|
makandra/assignable_values | https://github.com/makandra/assignable_values/blob/b697c65723442c91588643fe737548e0f3539660/spec/assignable_values/humanized_value_spec.rb | spec/assignable_values/humanized_value_spec.rb | require 'spec_helper'
describe AssignableValues::HumanizedValue do
describe '#inspect' do
it "should be a helpful description of the instance's content" do
value = AssignableValues::HumanizedValue.new('value', 'humanization')
value.inspect.should == '#<AssignableValues::HumanizedValue value: "value... | ruby | MIT | b697c65723442c91588643fe737548e0f3539660 | 2026-01-04T17:42:26.089155Z | false |
makandra/assignable_values | https://github.com/makandra/assignable_values/blob/b697c65723442c91588643fe737548e0f3539660/spec/assignable_values/active_record_spec.rb | spec/assignable_values/active_record_spec.rb | require 'spec_helper'
require 'ostruct'
def save_without_validation(record)
if ActiveRecord::VERSION::MAJOR < 3
record.save(false)
else
record.save(:validate => false)
end
end
describe AssignableValues::ActiveRecord do
describe '.assignable_values' do
it 'should raise an error when not called wi... | ruby | MIT | b697c65723442c91588643fe737548e0f3539660 | 2026-01-04T17:42:26.089155Z | true |
makandra/assignable_values | https://github.com/makandra/assignable_values/blob/b697c65723442c91588643fe737548e0f3539660/lib/assignable_values.rb | lib/assignable_values.rb | require 'active_record'
require 'active_support/deprecation'
require 'assignable_values/errors'
require 'assignable_values/active_record'
require 'assignable_values/active_record/restriction/base'
require 'assignable_values/active_record/restriction/belongs_to_association'
require 'assignable_values/active_record/restr... | ruby | MIT | b697c65723442c91588643fe737548e0f3539660 | 2026-01-04T17:42:26.089155Z | false |
makandra/assignable_values | https://github.com/makandra/assignable_values/blob/b697c65723442c91588643fe737548e0f3539660/lib/assignable_values/active_record.rb | lib/assignable_values/active_record.rb | module AssignableValues
module ActiveRecord
private
def assignable_values_for(property, options = {}, &values)
restriction_type = if belongs_to_association?(property)
Restriction::BelongsToAssociation
elsif store_accessor_attribute?(property)
Restriction::StoreAccessorAttribute
... | ruby | MIT | b697c65723442c91588643fe737548e0f3539660 | 2026-01-04T17:42:26.089155Z | false |
makandra/assignable_values | https://github.com/makandra/assignable_values/blob/b697c65723442c91588643fe737548e0f3539660/lib/assignable_values/version.rb | lib/assignable_values/version.rb | module AssignableValues
VERSION = '2.0.0'
end
| ruby | MIT | b697c65723442c91588643fe737548e0f3539660 | 2026-01-04T17:42:26.089155Z | false |
makandra/assignable_values | https://github.com/makandra/assignable_values/blob/b697c65723442c91588643fe737548e0f3539660/lib/assignable_values/errors.rb | lib/assignable_values/errors.rb | module AssignableValues
class Error < StandardError; end
class DelegateUnavailable < Error; end
class NoValuesGiven < Error; end
class NoDefault < Error; end
class UnsupportedOption < Error; end
end
| ruby | MIT | b697c65723442c91588643fe737548e0f3539660 | 2026-01-04T17:42:26.089155Z | false |
makandra/assignable_values | https://github.com/makandra/assignable_values/blob/b697c65723442c91588643fe737548e0f3539660/lib/assignable_values/humanized_value.rb | lib/assignable_values/humanized_value.rb | module AssignableValues
class HumanizedValue
attr_reader :value, :humanized
def initialize(value, humanized)
@value = value
@humanized = humanized
end
def to_s
humanized
end
def inspect
"#<#{self.class.name} value: #{value.inspect}, humanized: #{humanized.inspect}>"... | ruby | MIT | b697c65723442c91588643fe737548e0f3539660 | 2026-01-04T17:42:26.089155Z | false |
makandra/assignable_values | https://github.com/makandra/assignable_values/blob/b697c65723442c91588643fe737548e0f3539660/lib/assignable_values/active_record/restriction/belongs_to_association.rb | lib/assignable_values/active_record/restriction/belongs_to_association.rb | module AssignableValues
module ActiveRecord
module Restriction
class BelongsToAssociation < Base
def initialize(*)
super
if @options[:multiple]
raise "Option :multiple is not allowed for restricting belongs_to associations."
end
end
private... | ruby | MIT | b697c65723442c91588643fe737548e0f3539660 | 2026-01-04T17:42:26.089155Z | false |
makandra/assignable_values | https://github.com/makandra/assignable_values/blob/b697c65723442c91588643fe737548e0f3539660/lib/assignable_values/active_record/restriction/scalar_attribute.rb | lib/assignable_values/active_record/restriction/scalar_attribute.rb | module AssignableValues
module ActiveRecord
module Restriction
class ScalarAttribute < Base
def initialize(*args)
super
define_humanized_value_instance_method
define_humanized_value_class_method
define_humanized_assignable_values_instance_method
end
... | ruby | MIT | b697c65723442c91588643fe737548e0f3539660 | 2026-01-04T17:42:26.089155Z | false |
makandra/assignable_values | https://github.com/makandra/assignable_values/blob/b697c65723442c91588643fe737548e0f3539660/lib/assignable_values/active_record/restriction/store_accessor_attribute.rb | lib/assignable_values/active_record/restriction/store_accessor_attribute.rb | module AssignableValues
module ActiveRecord
module Restriction
class StoreAccessorAttribute < ScalarAttribute
private
def store_identifier
@model.stored_attributes.find { |_, attrs| attrs.include?(property.to_sym) }&.first
end
def value_was_method
:"#{s... | ruby | MIT | b697c65723442c91588643fe737548e0f3539660 | 2026-01-04T17:42:26.089155Z | false |
makandra/assignable_values | https://github.com/makandra/assignable_values/blob/b697c65723442c91588643fe737548e0f3539660/lib/assignable_values/active_record/restriction/base.rb | lib/assignable_values/active_record/restriction/base.rb | module AssignableValues
module ActiveRecord
module Restriction
class Base
attr_reader :model, :property, :options, :values, :default, :secondary_default
SUPPORTED_OPTIONS = [
:allow_blank,
:default,
:include_old_value,
:message,
:multiple,
... | ruby | MIT | b697c65723442c91588643fe737548e0f3539660 | 2026-01-04T17:42:26.089155Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/jdepend.rb | addon/buildr/jdepend.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/antlr.rb | addon/buildr/antlr.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/gwt.rb | addon/buildr/gwt.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/checkstyle.rb | addon/buildr/checkstyle.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/jetty.rb | addon/buildr/jetty.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/openjpa.rb | addon/buildr/openjpa.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/javancss.rb | addon/buildr/javancss.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/top_level_generate_dir.rb | addon/buildr/top_level_generate_dir.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 t... | ruby | Apache-2.0 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/jetty6.rb | addon/buildr/jetty6.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/javacc.rb | addon/buildr/javacc.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/git_auto_version.rb | addon/buildr/git_auto_version.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 t... | ruby | Apache-2.0 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/scss_lint.rb | addon/buildr/scss_lint.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/custom_pom.rb | addon/buildr/custom_pom.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/sonar.rb | addon/buildr/sonar.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/drb.rb | addon/buildr/drb.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/jibx.rb | addon/buildr/jibx.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/bnd.rb | addon/buildr/bnd.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 t... | ruby | Apache-2.0 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/wsgen.rb | addon/buildr/wsgen.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 t... | ruby | Apache-2.0 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/jaxb_xjc.rb | addon/buildr/jaxb_xjc.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 t... | ruby | Apache-2.0 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/protobuf.rb | addon/buildr/protobuf.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/pmd.rb | addon/buildr/pmd.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/jacoco.rb | addon/buildr/jacoco.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 t... | ruby | Apache-2.0 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/single_intermediate_layout.rb | addon/buildr/single_intermediate_layout.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 t... | ruby | Apache-2.0 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/spotbugs.rb | addon/buildr/spotbugs.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/activate_jruby_facet.rb | addon/buildr/activate_jruby_facet.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/gpg.rb | addon/buildr/gpg.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 t... | ruby | Apache-2.0 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/hibernate.rb | addon/buildr/hibernate.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/css_lint.rb | addon/buildr/css_lint.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/findbugs.rb | addon/buildr/findbugs.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/nailgun.rb | addon/buildr/nailgun.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/xmlbeans.rb | addon/buildr/xmlbeans.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/addon/buildr/package_as_nsis.rb | addon/buildr/package_as_nsis.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/tests/integration_testing.rb | tests/integration_testing.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/sandbox.rb | spec/sandbox.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/xpath_matchers.rb | spec/xpath_matchers.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/spec_helpers.rb | spec/spec_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/version_requirement_spec.rb | spec/version_requirement_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/packaging/archive_spec.rb | spec/packaging/archive_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/packaging/artifact_spec.rb | spec/packaging/artifact_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | true |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/packaging/artifact_namespace_spec.rb | spec/packaging/artifact_namespace_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/packaging/packaging_spec.rb | spec/packaging/packaging_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/packaging/packaging_helper.rb | spec/packaging/packaging_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/addon/jaxb_xjc_spec.rb | spec/addon/jaxb_xjc_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 t... | ruby | Apache-2.0 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/addon/drb_spec.rb | spec/addon/drb_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 t... | ruby | Apache-2.0 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/addon/bnd_spec.rb | spec/addon/bnd_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 t... | ruby | Apache-2.0 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/addon/checkstyle_spec.rb | spec/addon/checkstyle_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/kotlin/compiler_spec.rb | spec/kotlin/compiler_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/groovy/bdd_spec.rb | spec/groovy/bdd_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/groovy/doc_spec.rb | spec/groovy/doc_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/groovy/compiler_spec.rb | spec/groovy/compiler_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/java/test_coverage_helper.rb | spec/java/test_coverage_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/java/cobertura_spec.rb | spec/java/cobertura_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/java/tests_spec.rb | spec/java/tests_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/java/pom_spec.rb | spec/java/pom_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/java/emma_spec.rb | spec/java/emma_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/java/java_spec.rb | spec/java/java_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/java/bdd_spec.rb | spec/java/bdd_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/java/commands_spec.rb | spec/java/commands_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/java/run_spec.rb | spec/java/run_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/java/external_spec.rb | spec/java/external_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/java/custom_pom_spec.rb | spec/java/custom_pom_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 t... | ruby | Apache-2.0 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/java/ecj_spec.rb | spec/java/ecj_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/java/packaging_spec.rb | spec/java/packaging_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | true |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/java/doc_spec.rb | spec/java/doc_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/java/compiler_spec.rb | spec/java/compiler_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/java/ant_spec.rb | spec/java/ant_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/core/build_spec.rb | spec/core/build_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/core/console_spec.rb | spec/core/console_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/core/common_spec.rb | spec/core/common_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/core/transport_spec.rb | spec/core/transport_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/core/project_spec.rb | spec/core/project_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/core/generate_spec.rb | spec/core/generate_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/core/extension_spec.rb | spec/core/extension_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/core/util_spec.rb | spec/core/util_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/core/compile_spec.rb | spec/core/compile_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/core/run_spec.rb | spec/core/run_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/core/cc_spec.rb | spec/core/cc_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/core/shell_spec.rb | spec/core/shell_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/core/application_spec.rb | spec/core/application_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/core/generate_from_eclipse_spec.rb | spec/core/generate_from_eclipse_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/core/doc_spec.rb | spec/core/doc_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/core/checks_spec.rb | spec/core/checks_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/core/test_spec.rb | spec/core/test_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | true |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/scala/tests_spec.rb | spec/scala/tests_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/scala/bdd_spec.rb | spec/scala/bdd_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/scala/doc_spec.rb | spec/scala/doc_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/scala/scala.rb | spec/scala/scala.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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/scala/compiler_spec.rb | spec/scala/compiler_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
apache/buildr | https://github.com/apache/buildr/blob/8c35881a5e761ae45942312085b5d5adee7e730e/spec/ide/eclipse_spec.rb | spec/ide/eclipse_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 | 8c35881a5e761ae45942312085b5d5adee7e730e | 2026-01-04T17:41:47.999483Z | false |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.