├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── Guardfile ├── LICENSE ├── README.md ├── Rakefile ├── app ├── assets │ ├── images │ │ └── .keep │ ├── javascripts │ │ └── application.js │ └── stylesheets │ │ └── application.css ├── controllers │ ├── application_controller.rb │ ├── concerns │ │ └── .keep │ ├── dataset_controller.rb │ └── subject_controller.rb ├── helpers │ └── application_helper.rb ├── mailers │ └── .keep ├── models │ ├── .keep │ └── setting.rb └── views │ └── layouts │ └── application.html.erb ├── bin ├── bundle ├── rails ├── rake ├── setup └── spring ├── circle.yml ├── config.ru ├── config ├── application.rb ├── boot.rb ├── database.yml ├── environment.rb ├── environments │ ├── development.rb │ ├── production.rb │ └── test.rb ├── initializers │ ├── assets.rb │ ├── backtrace_silencers.rb │ ├── cookies_serializer.rb │ ├── filter_parameter_logging.rb │ ├── inflections.rb │ ├── mime_types.rb │ ├── session_store.rb │ └── wrap_parameters.rb ├── jetty.yml.sample ├── ldf.yml.sample_blazegraph ├── ldf.yml.sample_marmotta ├── ldf.yml.sample_repository ├── locales │ └── en.yml ├── routes.rb └── secrets.yml ├── db └── seeds.rb ├── lib ├── assets │ └── .keep ├── linked_data_fragments.rb ├── linked_data_fragments │ ├── backend_base.rb │ ├── blazegraph.rb │ ├── builders.rb │ ├── builders │ │ ├── control_builder.rb │ │ ├── dataset_builder.rb │ │ └── template_builder.rb │ ├── hydra_template.rb │ ├── marmotta.rb │ ├── models.rb │ ├── models │ │ ├── control.rb │ │ ├── dataset.rb │ │ ├── result.rb │ │ └── template.rb │ ├── repository.rb │ ├── schemas.rb │ ├── schemas │ │ ├── control_schema.rb │ │ ├── dataset_schema.rb │ │ ├── result_schema.rb │ │ └── template_schema.rb │ ├── service.rb │ └── settings.rb └── tasks │ └── .keep ├── log └── .keep ├── public ├── 404.html ├── 422.html ├── 500.html ├── favicon.ico └── robots.txt ├── spec ├── caching │ ├── blazegraph_spec.rb │ ├── marmotta_spec.rb │ └── repository_spec.rb ├── cassettes │ ├── LinkedDataFragments_Blazegraph │ │ └── retrieve_a_subject_uri │ │ │ ├── should_be_configured_as_a_Blazegraph_instance_with_the_mocked_uri.yml │ │ │ └── should_retrieve_and_return_a_response_on_a_valid_subject_uri.yml │ ├── LinkedDataFragments_Marmotta │ │ └── retrieve_a_subject_uri │ │ │ ├── should_be_configured_as_a_Marmotta_instance_with_the_mocked_uri.yml │ │ │ ├── should_retrieve_and_return_a_response_on_a_valid_subject_uri.yml │ │ │ └── should_retrieve_nothing_on_an_invalid_uri.yml │ ├── LinkedDataFragments_Repository │ │ ├── behaves_like_a_backend │ │ │ ├── _add │ │ │ │ └── adds_a_url.yml │ │ │ ├── _delete_all_ │ │ │ │ ├── empties_backend.yml │ │ │ │ └── removes_resources.yml │ │ │ ├── _empty_ │ │ │ │ └── becomes_non-empty_when_a_resource_is_added.yml │ │ │ ├── _has_ │ │ │ │ └── has_a_resource_that_has_been_added.yml │ │ │ └── _retrieve │ │ │ │ ├── when_empty │ │ │ │ ├── loads_a_valid_URL.yml │ │ │ │ └── raises_on_invalid_URL.yml │ │ │ │ └── with_an_existing_resource │ │ │ │ ├── gets_an_RDF_Enumerable.yml │ │ │ │ └── raises_IOError_on_invalid_URL.yml │ │ └── retrieve_a_subject_uri │ │ │ ├── should_retrieve_and_return_a_response_on_a_valid_subject_uri.yml │ │ │ └── should_retrieve_nothing_on_an_invalid_uri.yml │ └── SubjectController │ │ └── subject │ │ └── JSON-LD │ │ └── should_return_a_graph.yml ├── controllers │ ├── dataset_controller_spec.rb │ └── subject_controller_spec.rb ├── linked_data_fragments │ ├── builders │ │ ├── control_builder_spec.rb │ │ ├── dataset_builder_spec.rb │ │ └── template_builder_spec.rb │ ├── hydra_template_spec.rb │ ├── models │ │ ├── control_spec.rb │ │ ├── dataset_spec.rb │ │ ├── result_spec.rb │ │ └── template_spec.rb │ ├── schemas │ │ ├── control_schema_spec.rb │ │ ├── dataset_schema_spec.rb │ │ ├── result_schema_spec.rb │ │ └── template_schema_spec.rb │ ├── service_spec.rb │ └── settings_spec.rb ├── rails_helper.rb ├── routing │ ├── root_routing_spec.rb │ └── subject_routing_spec.rb ├── spec_helper.rb ├── support │ └── shared_examples │ │ ├── backend.rb │ │ └── schema.rb └── vcr_setup.rb └── vendor └── assets ├── javascripts └── .keep └── stylesheets └── .keep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --require spec_helper 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/Rakefile -------------------------------------------------------------------------------- /app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/controllers/dataset_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/app/controllers/dataset_controller.rb -------------------------------------------------------------------------------- /app/controllers/subject_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/app/controllers/subject_controller.rb -------------------------------------------------------------------------------- /app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /app/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /app/models/setting.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/app/models/setting.rb -------------------------------------------------------------------------------- /app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/bin/bundle -------------------------------------------------------------------------------- /bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/bin/rails -------------------------------------------------------------------------------- /bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/bin/rake -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/bin/setup -------------------------------------------------------------------------------- /bin/spring: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/bin/spring -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/circle.yml -------------------------------------------------------------------------------- /config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config.ru -------------------------------------------------------------------------------- /config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/application.rb -------------------------------------------------------------------------------- /config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/boot.rb -------------------------------------------------------------------------------- /config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/database.yml -------------------------------------------------------------------------------- /config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/environment.rb -------------------------------------------------------------------------------- /config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/environments/development.rb -------------------------------------------------------------------------------- /config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/environments/production.rb -------------------------------------------------------------------------------- /config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/environments/test.rb -------------------------------------------------------------------------------- /config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/initializers/assets.rb -------------------------------------------------------------------------------- /config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/initializers/inflections.rb -------------------------------------------------------------------------------- /config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /config/initializers/session_store.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/initializers/session_store.rb -------------------------------------------------------------------------------- /config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /config/jetty.yml.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/jetty.yml.sample -------------------------------------------------------------------------------- /config/ldf.yml.sample_blazegraph: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/ldf.yml.sample_blazegraph -------------------------------------------------------------------------------- /config/ldf.yml.sample_marmotta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/ldf.yml.sample_marmotta -------------------------------------------------------------------------------- /config/ldf.yml.sample_repository: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/ldf.yml.sample_repository -------------------------------------------------------------------------------- /config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/locales/en.yml -------------------------------------------------------------------------------- /config/routes.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/routes.rb -------------------------------------------------------------------------------- /config/secrets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/config/secrets.yml -------------------------------------------------------------------------------- /db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/db/seeds.rb -------------------------------------------------------------------------------- /lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/linked_data_fragments.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/backend_base.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/backend_base.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/blazegraph.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/blazegraph.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/builders.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/builders.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/builders/control_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/builders/control_builder.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/builders/dataset_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/builders/dataset_builder.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/builders/template_builder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/builders/template_builder.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/hydra_template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/hydra_template.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/marmotta.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/marmotta.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/models.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/models.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/models/control.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/models/control.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/models/dataset.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/models/dataset.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/models/result.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/models/result.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/models/template.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/models/template.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/repository.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/repository.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/schemas.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/schemas.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/schemas/control_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/schemas/control_schema.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/schemas/dataset_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/schemas/dataset_schema.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/schemas/result_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/schemas/result_schema.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/schemas/template_schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/schemas/template_schema.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/service.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/service.rb -------------------------------------------------------------------------------- /lib/linked_data_fragments/settings.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/lib/linked_data_fragments/settings.rb -------------------------------------------------------------------------------- /lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/public/404.html -------------------------------------------------------------------------------- /public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/public/422.html -------------------------------------------------------------------------------- /public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/public/500.html -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/public/robots.txt -------------------------------------------------------------------------------- /spec/caching/blazegraph_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/caching/blazegraph_spec.rb -------------------------------------------------------------------------------- /spec/caching/marmotta_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/caching/marmotta_spec.rb -------------------------------------------------------------------------------- /spec/caching/repository_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/caching/repository_spec.rb -------------------------------------------------------------------------------- /spec/cassettes/LinkedDataFragments_Blazegraph/retrieve_a_subject_uri/should_be_configured_as_a_Blazegraph_instance_with_the_mocked_uri.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/cassettes/LinkedDataFragments_Blazegraph/retrieve_a_subject_uri/should_be_configured_as_a_Blazegraph_instance_with_the_mocked_uri.yml -------------------------------------------------------------------------------- /spec/cassettes/LinkedDataFragments_Blazegraph/retrieve_a_subject_uri/should_retrieve_and_return_a_response_on_a_valid_subject_uri.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/cassettes/LinkedDataFragments_Blazegraph/retrieve_a_subject_uri/should_retrieve_and_return_a_response_on_a_valid_subject_uri.yml -------------------------------------------------------------------------------- /spec/cassettes/LinkedDataFragments_Marmotta/retrieve_a_subject_uri/should_be_configured_as_a_Marmotta_instance_with_the_mocked_uri.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/cassettes/LinkedDataFragments_Marmotta/retrieve_a_subject_uri/should_be_configured_as_a_Marmotta_instance_with_the_mocked_uri.yml -------------------------------------------------------------------------------- /spec/cassettes/LinkedDataFragments_Marmotta/retrieve_a_subject_uri/should_retrieve_and_return_a_response_on_a_valid_subject_uri.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/cassettes/LinkedDataFragments_Marmotta/retrieve_a_subject_uri/should_retrieve_and_return_a_response_on_a_valid_subject_uri.yml -------------------------------------------------------------------------------- /spec/cassettes/LinkedDataFragments_Marmotta/retrieve_a_subject_uri/should_retrieve_nothing_on_an_invalid_uri.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/cassettes/LinkedDataFragments_Marmotta/retrieve_a_subject_uri/should_retrieve_nothing_on_an_invalid_uri.yml -------------------------------------------------------------------------------- /spec/cassettes/LinkedDataFragments_Repository/behaves_like_a_backend/_add/adds_a_url.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/cassettes/LinkedDataFragments_Repository/behaves_like_a_backend/_add/adds_a_url.yml -------------------------------------------------------------------------------- /spec/cassettes/LinkedDataFragments_Repository/behaves_like_a_backend/_delete_all_/empties_backend.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/cassettes/LinkedDataFragments_Repository/behaves_like_a_backend/_delete_all_/empties_backend.yml -------------------------------------------------------------------------------- /spec/cassettes/LinkedDataFragments_Repository/behaves_like_a_backend/_delete_all_/removes_resources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/cassettes/LinkedDataFragments_Repository/behaves_like_a_backend/_delete_all_/removes_resources.yml -------------------------------------------------------------------------------- /spec/cassettes/LinkedDataFragments_Repository/behaves_like_a_backend/_empty_/becomes_non-empty_when_a_resource_is_added.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/cassettes/LinkedDataFragments_Repository/behaves_like_a_backend/_empty_/becomes_non-empty_when_a_resource_is_added.yml -------------------------------------------------------------------------------- /spec/cassettes/LinkedDataFragments_Repository/behaves_like_a_backend/_has_/has_a_resource_that_has_been_added.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/cassettes/LinkedDataFragments_Repository/behaves_like_a_backend/_has_/has_a_resource_that_has_been_added.yml -------------------------------------------------------------------------------- /spec/cassettes/LinkedDataFragments_Repository/behaves_like_a_backend/_retrieve/when_empty/loads_a_valid_URL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/cassettes/LinkedDataFragments_Repository/behaves_like_a_backend/_retrieve/when_empty/loads_a_valid_URL.yml -------------------------------------------------------------------------------- /spec/cassettes/LinkedDataFragments_Repository/behaves_like_a_backend/_retrieve/when_empty/raises_on_invalid_URL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/cassettes/LinkedDataFragments_Repository/behaves_like_a_backend/_retrieve/when_empty/raises_on_invalid_URL.yml -------------------------------------------------------------------------------- /spec/cassettes/LinkedDataFragments_Repository/behaves_like_a_backend/_retrieve/with_an_existing_resource/gets_an_RDF_Enumerable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/cassettes/LinkedDataFragments_Repository/behaves_like_a_backend/_retrieve/with_an_existing_resource/gets_an_RDF_Enumerable.yml -------------------------------------------------------------------------------- /spec/cassettes/LinkedDataFragments_Repository/behaves_like_a_backend/_retrieve/with_an_existing_resource/raises_IOError_on_invalid_URL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/cassettes/LinkedDataFragments_Repository/behaves_like_a_backend/_retrieve/with_an_existing_resource/raises_IOError_on_invalid_URL.yml -------------------------------------------------------------------------------- /spec/cassettes/LinkedDataFragments_Repository/retrieve_a_subject_uri/should_retrieve_and_return_a_response_on_a_valid_subject_uri.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/cassettes/LinkedDataFragments_Repository/retrieve_a_subject_uri/should_retrieve_and_return_a_response_on_a_valid_subject_uri.yml -------------------------------------------------------------------------------- /spec/cassettes/LinkedDataFragments_Repository/retrieve_a_subject_uri/should_retrieve_nothing_on_an_invalid_uri.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/cassettes/LinkedDataFragments_Repository/retrieve_a_subject_uri/should_retrieve_nothing_on_an_invalid_uri.yml -------------------------------------------------------------------------------- /spec/cassettes/SubjectController/subject/JSON-LD/should_return_a_graph.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/cassettes/SubjectController/subject/JSON-LD/should_return_a_graph.yml -------------------------------------------------------------------------------- /spec/controllers/dataset_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/controllers/dataset_controller_spec.rb -------------------------------------------------------------------------------- /spec/controllers/subject_controller_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/controllers/subject_controller_spec.rb -------------------------------------------------------------------------------- /spec/linked_data_fragments/builders/control_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/linked_data_fragments/builders/control_builder_spec.rb -------------------------------------------------------------------------------- /spec/linked_data_fragments/builders/dataset_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/linked_data_fragments/builders/dataset_builder_spec.rb -------------------------------------------------------------------------------- /spec/linked_data_fragments/builders/template_builder_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/linked_data_fragments/builders/template_builder_spec.rb -------------------------------------------------------------------------------- /spec/linked_data_fragments/hydra_template_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/linked_data_fragments/hydra_template_spec.rb -------------------------------------------------------------------------------- /spec/linked_data_fragments/models/control_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/linked_data_fragments/models/control_spec.rb -------------------------------------------------------------------------------- /spec/linked_data_fragments/models/dataset_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/linked_data_fragments/models/dataset_spec.rb -------------------------------------------------------------------------------- /spec/linked_data_fragments/models/result_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/linked_data_fragments/models/result_spec.rb -------------------------------------------------------------------------------- /spec/linked_data_fragments/models/template_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/linked_data_fragments/models/template_spec.rb -------------------------------------------------------------------------------- /spec/linked_data_fragments/schemas/control_schema_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/linked_data_fragments/schemas/control_schema_spec.rb -------------------------------------------------------------------------------- /spec/linked_data_fragments/schemas/dataset_schema_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/linked_data_fragments/schemas/dataset_schema_spec.rb -------------------------------------------------------------------------------- /spec/linked_data_fragments/schemas/result_schema_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/linked_data_fragments/schemas/result_schema_spec.rb -------------------------------------------------------------------------------- /spec/linked_data_fragments/schemas/template_schema_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/linked_data_fragments/schemas/template_schema_spec.rb -------------------------------------------------------------------------------- /spec/linked_data_fragments/service_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/linked_data_fragments/service_spec.rb -------------------------------------------------------------------------------- /spec/linked_data_fragments/settings_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/linked_data_fragments/settings_spec.rb -------------------------------------------------------------------------------- /spec/rails_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/rails_helper.rb -------------------------------------------------------------------------------- /spec/routing/root_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/routing/root_routing_spec.rb -------------------------------------------------------------------------------- /spec/routing/subject_routing_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/routing/subject_routing_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/backend.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/support/shared_examples/backend.rb -------------------------------------------------------------------------------- /spec/support/shared_examples/schema.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/support/shared_examples/schema.rb -------------------------------------------------------------------------------- /spec/vcr_setup.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ActiveTriples/linked-data-fragments/HEAD/spec/vcr_setup.rb -------------------------------------------------------------------------------- /vendor/assets/javascripts/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vendor/assets/stylesheets/.keep: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------