--- !ruby/object:Gem::Specification name: rtm version: !ruby/object:Gem::Version prerelease: false segments: - 0 - 3 - 0 version: 0.3.0 platform: ruby authors: - Benjamin Bock - Arnim Bleier - Uta Schulze - Daniel Exner autorequire: bindir: bin cert_chain: [] date: 2010-04-13 00:00:00 +02:00 default_executable: dependencies: [] description: | ==== Ruby Topic Maps (RTM) RTM is a Topic Maps engine written in Ruby. See http://rtm.topicmapslab.de/ for instructions. Several backends and extensions are available as separate gems. ==== Overview From a developer's perspective, RTM is a schema-less database management system. The Topic Maps standard (described below) on which RTM is based provides a way of creating a self-describing schema just by using it. ==== Quickstart require 'rtm' connection = RTM.connect # uses the default Ontopia in-memory backend topic_map = connection.create "http://example.org/my_topic_map/" some_topic = topicmap.get!("identifier_of_the_topic") some_topic["-"] = "default name for the topic" topic_map.to_xtm("my_xtm_file.xtm") ==== Topic Maps Topic Maps is an international industry standard (ISO13250) for interchangeably representing information about the structure of information resources used to define topics, and the relationships between topics. A set of one or more interrelated documents that employs the notation defined by this International Standard is called a topic map. A topic map defines a multidimensional topic space - a space in which the locations are topics, and in which the distances between topics are measurable in terms of the number of intervening topics which must be visited in order to get from one topic to another, and the kinds of relationships that define the path from one topic to another, if any, through the intervening topics, if any. In addition, information objects can have properties, as well as values for those properties, assigned to them. The Topic Maps Data Model which is used in this implementation can be found on http://www.isotopicmaps.org/sam/sam-model/. ==== Backends * rtm-ontopia: JRuby only, recommended, uses Ontopia: http://code.google.com/p/ontopia/ * rtm-tinytim: JRuby only, uses TinyTiM: http://tinytim.sourceforge.net/ * rtm-activerecord: uses a custom ActiveRecord schema ==== Extensions * rtm-tmql: Adds support for the Topic Maps Query Language (TMQL), http://isotopicmaps.org/tmql/ * rtm-tmcl: Adds support for the Topic Maps Constraint Language (TMCL), http://isotopicmaps.org/tmcl/ ==== License Copyright 2009 Topic Maps Lab, University of Leipzig. Apache License, Version 2.0 email: rtm+rtm-gem-20100413@topicmapslab.de executables: [] extensions: [] extra_rdoc_files: [] files: - lib/rtm/axes/association.rb - lib/rtm/axes/associations.rb - lib/rtm/axes/assocs_names_occs.rb - lib/rtm/axes/characteristic.rb - lib/rtm/axes/characteristics.rb - lib/rtm/axes/string.rb - lib/rtm/axes/strings.rb - lib/rtm/axes/topic.rb - lib/rtm/axes/topics.rb - lib/rtm/axes.rb - lib/rtm/connection.rb - lib/rtm/deprecated/index_property_set.rb - lib/rtm/engine.rb - lib/rtm/extensions.rb - lib/rtm/helpers/locator.rb - lib/rtm/helpers/no_output.rb - lib/rtm/helpers/uri.rb - lib/rtm/io/from_xtm2_libxml.rb - lib/rtm/io/tmapix_from.rb - lib/rtm/io/tmapix_to.rb - lib/rtm/io/to_hash.rb - lib/rtm/io/to_jtm.rb - lib/rtm/io/to_rdf.rb - lib/rtm/io/to_string.rb - lib/rtm/io/to_xtm1.rb - lib/rtm/io/to_xtm2.rb - lib/rtm/io/to_yaml.rb - lib/rtm/io.rb - lib/rtm/navigation/association/players.rb - lib/rtm/navigation/name/atomify.rb - lib/rtm/navigation/name/characteristics.rb - lib/rtm/navigation/occurrence/atomify.rb - lib/rtm/navigation/occurrence/characteristics.rb - lib/rtm/navigation/topic/characteristics.rb - lib/rtm/navigation/topic/indicators.rb - lib/rtm/navigation/topic/items.rb - lib/rtm/navigation/topic/locators.rb - lib/rtm/navigation/topic/players.rb - lib/rtm/navigation/topic/supertypes.rb - lib/rtm/navigation/topic/traverse.rb - lib/rtm/navigation/topic/types.rb - lib/rtm/navigation.rb - lib/rtm/psi.rb - lib/rtm/sugar/association/hash_access.rb - lib/rtm/sugar/occurrence/dynamic_value.rb - lib/rtm/sugar/occurrence/external.rb - lib/rtm/sugar/reifiable/reifier.rb - lib/rtm/sugar/role/counterparts.rb - lib/rtm/sugar/topic/best_name.rb - lib/rtm/sugar/topic/characteristics.rb - lib/rtm/sugar/topic/counterparts.rb - lib/rtm/sugar/topic/hash_access.rb - lib/rtm/sugar/topic/scoped.rb - lib/rtm/sugar/topic/topic_ref.rb - lib/rtm/sugar/topic/typed.rb - lib/rtm/sugar/topic_map/query_cache.rb - lib/rtm/sugar/topic_map/remove.rb - lib/rtm/sugar/topic_map/scoped.rb - lib/rtm/sugar/topic_map/types.rb - lib/rtm/sugar/typed/types.rb - lib/rtm/sugar/variant/topic.rb - lib/rtm/sugar.rb - lib/rtm/topology.rb - lib/rtm/validation.rb - lib/rtm/version.rb - lib/rtm.rb - spec/helpers/spec_exampleexamplegroup.rb - spec/rtm/axes/association_spec.rb - spec/rtm/axes/associations_spec.rb - spec/rtm/axes/assocs_names_occs_spec.rb - spec/rtm/axes/characteristic_spec.rb - spec/rtm/axes/characteristics_spec.rb - spec/rtm/axes/string_spec.rb - spec/rtm/axes/strings_spec.rb - spec/rtm/axes/topic_spec.rb - spec/rtm/axes/topics_spec.rb - spec/rtm/base_spec.rb - spec/rtm/engine_spec.rb - spec/rtm/io/tmapix_from_spec.rb - spec/rtm/io/tmapix_to_spec.rb - spec/rtm/io/to_hash_spec.rb - spec/rtm/io/to_rdf_spec.rb - spec/rtm/io/to_string_spec.rb - spec/rtm/io/to_yaml_spec.rb - spec/rtm/javatmapi_spec.rb - spec/rtm/navigation/association/players_spec.rb - spec/rtm/navigation/association_spec.rb - spec/rtm/navigation/name/atomify_spec.rb - spec/rtm/navigation/name/characteristics_spec.rb - spec/rtm/navigation/name_spec.rb - spec/rtm/navigation/occurrence/atomify_spec.rb - spec/rtm/navigation/occurrence/characteristics_spec.rb - spec/rtm/navigation/occurrence_spec.rb - spec/rtm/navigation/string_spec.rb - spec/rtm/navigation/topic/characteristics_spec.rb - spec/rtm/navigation/topic/indicators_spec.rb - spec/rtm/navigation/topic/items_spec.rb - spec/rtm/navigation/topic/locators_spec.rb - spec/rtm/navigation/topic/players_spec.rb - spec/rtm/navigation/topic/scope_spec.rb - spec/rtm/navigation/topic/supertypes_spec.rb - spec/rtm/navigation/topic/traverse_spec.rb - spec/rtm/navigation/topic/types_spec.rb - spec/rtm/navigation/topic_spec.rb - spec/rtm/sugar/association/hash_access_spec.rb - spec/rtm/sugar/occurrence/dynamic_value_spec.rb - spec/rtm/sugar/occurrence/external_spec.rb - spec/rtm/sugar/reifiable/reifier_spec.rb - spec/rtm/sugar/role/counterparts_spec.rb - spec/rtm/sugar/topic/best_name_spec.rb - spec/rtm/sugar/topic/characteristics_spec.rb - spec/rtm/sugar/topic/counterparts_spec.rb - spec/rtm/sugar/topic/hash_access_spec.rb - spec/rtm/sugar/topic/scoped_spec.rb - spec/rtm/sugar/topic/topic_ref_spec.rb - spec/rtm/sugar/topic/typed_spec.rb - spec/rtm/sugar/topic_map/remove_spec.rb - spec/rtm/sugar/topic_map/scoped_spec.rb - spec/rtm/sugar/topic_map/types_spec.rb - spec/rtm/sugar/typed/types_spec.rb - spec/rtm/sugar/variant/topic_spec.rb - spec/rtm/tmapi/core/association_spec.rb - spec/rtm/tmapi/core/construct_spec.rb - spec/rtm/tmapi/core/datatype_aware_spec.rb - spec/rtm/tmapi/core/name_spec.rb - spec/rtm/tmapi/core/occurrence_spec.rb - spec/rtm/tmapi/core/reifiable_spec.rb - spec/rtm/tmapi/core/role_spec.rb - spec/rtm/tmapi/core/scoped_spec.rb - spec/rtm/tmapi/core/topic_map_spec.rb - spec/rtm/tmapi/core/topic_spec.rb - spec/rtm/tmapi/core/typed_spec.rb - spec/rtm/tmapi/core/variant_spec.rb - spec/rtm/tmapi/ext/java_util_set_spec.rb - spec/rtm/tmapi_spec.rb - spec/rtm/utils/sparql_spec.rb - spec/rtm_spec.rb - spec/spec_helper.rb - test/tmapi_tests.rb - test/javalibs/junit-4.5.jar - test/javalibs/tmapi-2.0-tests.jar - LICENSE - DISCLAIMER - README has_rdoc: true homepage: http://rtm.topicmapslab.de/ licenses: [] post_install_message: "You have successfully installed RTM. Please be aware you need to install a backend implementation to use it. Examples: rtm-ontopia, rtm-tinytim, rtm-activerecord" rdoc_options: [] require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version segments: - 0 version: "0" required_rubygems_version: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version segments: - 0 version: "0" requirements: [] rubyforge_project: rtm rubygems_version: 1.3.6 signing_key: specification_version: 3 summary: Ruby Topic Maps is a Topic Maps engine written in Ruby. test_files: []