Module: RoadForest::SourceRigor

Defined in:
lib/roadforest/source-rigor.rb,
lib/roadforest/source-rigor/engine.rb,
lib/roadforest/source-rigor/credence.rb,
lib/roadforest/source-rigor/credence/any.rb,
lib/roadforest/source-rigor/investigator.rb,
lib/roadforest/source-rigor/investigation.rb,
lib/roadforest/source-rigor/resource-query.rb,
lib/roadforest/source-rigor/rigorous-access.rb,
lib/roadforest/source-rigor/resource-pattern.rb,
lib/roadforest/source-rigor/credence-annealer.rb,
lib/roadforest/source-rigor/http-investigator.rb,
lib/roadforest/source-rigor/null-investigator.rb,
lib/roadforest/source-rigor/credence/role-if-available.rb,
lib/roadforest/source-rigor/credence/none-if-role-absent.rb

Defined Under Namespace

Modules: Credence, Rigorous Classes: CredenceAnnealer, Engine, GraphStore, HTTPInvestigator, Investigation, Investigator, NoCredibleResults, NotCredible, NullInvestigator, Parcel, PostManager, ResourcePattern, ResourceQuery, RetrieveManager, UpdateManager

Class Method Summary collapse

Class Method Details

.httpObject



15
16
17
18
19
20
# File 'lib/roadforest/source-rigor/engine.rb', line 15

def http
  rigor = Engine.new
  rigor.policy_list(:may_subject, :any) #XXX
  rigor.investigator_list(:http, :null)
  rigor
end

.simpleObject



8
9
10
11
12
13
# File 'lib/roadforest/source-rigor/engine.rb', line 8

def simple
  rigor = Engine.new
  rigor.policy_list(:must_local, :may_local)
  rigor.investigator_list(:null)
  rigor
end