History log of /ontohub/Gemfile.lock
Revision Date Author Comments Expand
d028e7841419d177561d20bc03db3b070f29dad6 03-Apr-2017 Tom Gehrke <phyrog@users.noreply.github.com>

Update nokogiri (#1807) * Update nokogiri * Use up-to-date travis config from branch add_repository_premium_flag_and_lots_of_fixes * Remove sinatra group restriction

0c6ce6e1864f25f9832d6e7499a3d7457bfbc622 04-Aug-2016 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gems (#1743) * Update gem: simplecov to 0.12.0 * Update gem: elasticsearch to 2.0.0. * Update gem: kaminari to 1.17.0. * Update gem: rdf to 2.0.2. * Update gem: rdf-rdfxml to 2.0.0. * Update gem: rdf-n3 to 2.0.0. * Update gem: rest-client to 2.0.0. * Update gem: secure_headers to 3.4.0. * Update gem: d3_rails to 4.1.1. * Update gem: poltergeist to 1.10.0. * Update gem: webmock to 2.1.0. * Update gem: yard to 0.9.5. * Add comment about exception_notification requirements. * Add comment about active_model_serializers requirements. * Bundle update. * Obey Hound.

466897c027934f3e919b55600916b23c953cf3d9 26-Jul-2016 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Remove profiler gem. (#1740)

6391cb072bfb9191a4e4f61d38d5d23cb2f77a7d 19-Jul-2016 Tom Gehrke <phyrog@cognitive-coding.com>

Add puma_worker_killer gem

aa74032d531a9f13ce2cf5d13dc04d2f873da008 19-Jul-2016 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Fix deadlocks caused by semaphore. (#1732)

9686f69d126f13ec787c8954e82dca5ddac3536a 04-Jul-2016 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: Nokogiri to 1.6.8. (#1722)

e8ec59dda8f903e81cb5cceaef93d20a0812fc77 01-Jul-2016 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

982 error this iri is already being processed (#1697) * Add expiration parameter to Semaphore After the expiration, the semaphore is unlocked. This allows dead processes (e.g. by kill -9) to release the lock again. * Namespace the redis semaphore at ontohub:semaphore. * Code style. * Code style: use class << self block. * Add concurrency testing gem. * Completely revamp Semaphore * Put it into the same redis-namespace as sidekiq. * Add method to check if a lock is closed. * Namespace semaphores even deeper. Checking if a lock is closed is not an atomic operation. To make it atomic, we put the check into a mutexed part. In order to really exclude the locking and unlocking from this mutexed check, these two operations must be mutexed as well with the same key (LOCK_ACTION_KEY). Unfortunately, using many threads/processes in an example makes the test suite hang. This is because of celluloid. Maybe we can unskip the example after upgrading to sidekiq 4 and dropping sidetiq. * Add settings keys for Redis. * Use redis namespace setting for Semaphore. * Share redis connections between Sidekiq and Semaphore When all connections are in use, any Redis call will block until a connection is freed. Sidekiq is now namespaced deeper in order to prevent conflicts with the semaphore. * Fix locked? and perform_exclusively signatures. * Add lock and unlock methods. * Use separate redis namespaces for our environments. * Use Semaphore only if not testing * Use Semaphore when parsing an Ontology * Remove not needed method perform_async_on_queue. * Refactor all the Worker classes for parsing Now, all comes down to the new OntologyParsingWorker. It performs on a queue of triples containing the version id, options for the version and the try_count (number of the next parsing attempt). If parsing a version fails, it is put back to the queue (at the end), with an incremented try_count. If this happens too often for the same version, it is given to the SequentialOntologyParsingWorker that only parses one OntologyVersion at a time. The OntologyParsingPriorityWorker is a more elegant way to use the priotitized queue. All the background parsing is now performed via the OntologyParsingWorker or its subclasses. * Be explicit about the namespace. * Obey Hound.

Gemfile Gemfile.lock app/models/hets_instance.rb app/models/ontology_version/parsing.rb app/models/sine_axiom_selection.rb config/initializers/redis_pool.rb config/initializers/sidekiq.rb config/settings.yml config/settings/development.yml config/settings/test.yml lib/base_worker.rb lib/hets/concurrent_evaluator.rb lib/hets/dg/importer.rb lib/hets/dg/node_evaluator.rb lib/hets_instance_force_free_worker.rb lib/ontology_batch_parse_worker.rb lib/ontology_parsing_priority_worker.rb lib/ontology_parsing_worker.rb lib/ontology_saver.rb lib/proof_evaluation_state_updater.rb lib/proof_execution_worker.rb lib/repository_update_worker.rb lib/semaphore.rb lib/sequential_ontology_batch_parse_worker.rb lib/sequential_ontology_parsing_worker.rb lib/sequential_worker.rb lib/settings_validation_wrapper.rb lib/tasks/data.rake lib/worker.rb spec/lib/access_token_deletion_worker_spec.rb spec/lib/ontology_batch_parse_worker_spec.rb spec/lib/repository/git_repository_spec.rb spec/lib/semaphore_spec.rb spec/lib/worker_spec.rb spec/models/repository/git_spec.rb
5a102b3c56d4ac75632c7e9244ee0ce5bdbbf13a 01-Jul-2016 Sascha Graef <sgraef@informatik.uni-bremen.de>

Improve locId (#1618) * introduce new model to ontohub * introduce new locid behavior * adding try to prevent undefined method for nil * generate the locids by object creation * introduce method to simulate an attribute * generate Locids correctly for ontologies * correct creation of child_ontology locids * remove old uniqueness validation for ontology locid * use better names vor locidportion * correct behaviour for locid creation * generate loc_id correctly for ontology * use correct class for inherritanc * remove locids on deletion of objects * rename the base model * introduce data-migration to move the locids * remove double naming in the cat ontology * obey hound * correct behaviour of external repository for locid * change factory behaviour for locid * fix missing comma * begin to fix test * change ontology factory to new locid * change factories for new LocId Model * remove unneeded test * Use proper class retrieval in factories. * Always use to_s on the class call in LocIdBaseModel. * Always use .class.to_s instead of .class when used for the database. * Fix external repository. * Be clean and unstub again. * Fix sentence factory. * Quick fix the destruction of locids. * Fix code style. * Generate locids during create process: Base class. * Generate locids during create process: Mapping. * Generate locids during create process: Sentence. * Generate locids during create process: Symbol. * Generate locids during create process: ProofAttempt. * Generate locids during create process: ProverOutput. * Generate locids during create process: Ontology #1. * Generate locids during create process: Ontology #2. * Generate locids during create process: Ontology #3. * Generate locids during create process: Factories. * Fix seeds errors. * Fix ontology spec on error while parsing The ontology needs to be reloaded because sidekiq does so as well. It always fetches a fresh record from the database. The test failed before because `NodeEvaluationHelper#clean_ontology` called destroy on all the ontology's symbols which existed in the object, but were not really persisted because of an aborted transaction. * Remove redundant space. * Move comment to the correct line. * Fix worker_spec In the production code, the locid is never set before saving the ontology. * Add gems pry-stack_explorer, awesome_print for debugging purposes. * Only start hets if there was a hets error and rollback the changes. * Destroy dependent prover output. * Fix ProofAttempt factory. * Rename assorted_object to specific and fix migration. * Fix migration code style. * Reanalyze ontologies with duplicate locids. * Fix code style. * Remove redundancies. * Remove useless association. * Obey Hound. * Directly query in the LocIdBaseModel. * Add locid routing feature. * Cache LocId query results This should speed up the routing in a great extent. For each matching `specified_get`, the LocIdRouterConstraint fetched the element once from the database. This resulted in 8 times the same SQL query for a ProofAttempt. The implemented cache reduces this to a single query. * Clear the elements cache periodically to prevent memory leaks. * Add missing dependent: :destroy. * Add Recreating repository feature. * Combine if statements. * Change Given to When. * Catch ambiguous locid error. * Fix i18n key usage. * Fix code style. * Comment on error suppression. * Add spec for Syntax Error. * Use single-quoted strings. * Fix error message check: language. * Keep parameter assignment DRY. * Rename RecreatingRepository feature to Repository. * Use local_variable_get instead of eval. * Change locid column type to text. * Implement (implicit) down-migration. * Implement (explicit) down migration. * Add migration to create missing locids. * Fix nil error. * Really fix nil error. * Fix migration. * Fix sentence migration accessing association. * Force old Mappings to have a name. * Add missing locids to symbols.

Gemfile Gemfile.lock app/models/loc_id.rb app/models/loc_id_base_model.rb app/models/mapping.rb app/models/ontology.rb app/models/ontology/associations_and_attributes.rb app/models/ontology/class_methods_and_scopes.rb app/models/ontology/mappings.rb app/models/ontology/sentences.rb app/models/ontology/symbols.rb app/models/ontology/validations.rb app/models/ontology_member/symbol.rb app/models/proof_attempt.rb app/models/prover_output.rb app/models/sentence.rb config/locales/en.yml db/data/20160310132620_move_loc_id_to_own_model_data.rb db/migrate/20160110133824_create_loc_ids.rb db/migrate/20160310132618_enter_name_for_mappings.rb db/migrate/20160310132619_create_missing_locids.rb db/migrate/20160310132620_move_loc_id_to_own_model.rb db/seeds/040-git.rb features/LocId.feature features/LocIdRouting.feature features/Repository.feature features/step_definitions/loc_id_routing_steps.rb features/step_definitions/loc_id_steps.rb features/step_definitions/repository_steps.rb features/support/env.rb lib/external_repository.rb lib/hets/dg/node_evaluation_helper.rb lib/hets/dg/node_evaluator.rb lib/hets/errors.rb lib/ontology_saver.rb lib/permissionable.rb lib/router_constraints.rb spec/controllers/api/v1/proof_attempts_controller_spec.rb spec/controllers/api/v1/prover_outputs_controller_spec.rb spec/factories/axiom_factory.rb spec/factories/mapping_factory.rb spec/factories/mapping_version_factory.rb spec/factories/ontology_factory.rb spec/factories/proof_attempt_factory.rb spec/factories/sentence_factory.rb spec/factories/symbol_factory.rb spec/factories/theorem_factory.rb spec/fixtures/ontologies/casl/sentence_and_symbol_with_same_name.casl spec/hets_helper.rb spec/lib/ontology_batch_parse_worker_spec.rb spec/lib/worker_spec.rb spec/models/ontology_spec.rb spec/models/ontology_version/parsing_spec.rb spec/support/common_helper_methods.rb spec/support/fixtures_generation/pipeline_generator.rb
7674953f70faffd8fc2eb431e8ef7d3fd7551777 17-May-2016 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Bundle update.

f1574e9c8462ac75b42c035513754fa4d0b6d1ab 09-May-2016 Tom Gehrke <phyrog@cognitive-coding.com>

Retry ontology parsing when no hets instance available

7288e076da07783d92be83e19341c25f56fcc484 26-Apr-2016 Eileen Bolloff <ebolloff@informatik.uni-bremen.de>

Add test unit to Gemfile.

d8b8f27eb4fbc58fcac3489baec82360682ea502 07-Mar-2016 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Bundle update.

ff957f8983cd287ee7171fb51d1831eba039bdf1 04-Mar-2016 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Bundle update.

45c2ac2932196d075a6ac585eb3ec19fe03172a1 29-Feb-2016 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Security-update Rails to 3.2.22.2 This fixes * CVE-2016-2097 Possible Information Leak Vulnerability in Action View * CVE-2016-2098 Possible remote code execution vulnerability in Action Pack

d763a7b0d7a1a00ed73720c692b89ea8f98264fb 26-Jan-2016 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update rails.

82877c5cb23f1e4480a23c85a2acd94b5a69dbb0 26-Jan-2016 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem nokogiri to 1.6.7.2.

dc6633b502072a4e61a88e3897954bbae34d3f12 26-Jan-2016 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem devise to 3.5.5.

f8a2e1b4ce207aab886ec1a885c7604e80597a6a 17-Jan-2016 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Bundle update.

f0b525b6858bf9e9eba27e47a823eda70d570a94 17-Jan-2016 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Bundle update.

dead98dbd1ce2ca4c395bd75d11986aa043e5cd3 18-Dec-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Bundle update.

4c5d52c5c4bb850a4d55f6f6ce41a01fab9ab633 16-Nov-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Bundle update.

61924d4843347a2f71033443934856b0ee0ccc5d 09-Nov-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Bundle update.

bc771a88eef12736aad8c0367eb7f6997467b88b 09-Nov-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update puma.

8709a5d8039c52e7c96c4600109163bc1e4a0416 06-Nov-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Replace gem god by eye.

b0fe62b8fe39a55fb39e507f6652d5166e97cfd2 06-Nov-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gems: Sidekiq, Sidetiq Celluloid 17.2 is needed for eye.

8eae49ab59cba610dc0068a0cc7dbb8f21a06c31 28-Aug-2015 Sascha Graef <sgraef@informatik.uni-bremen.de>

include rack-mini-profiler

84c38876a8e927d9da87528a37ba1bdc446191a9 28-Aug-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Bundle update.

3962fa67f16b3d4ac10f3ee28e94b13ae9647459 17-Aug-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update Sidekiq Fixes security issues - OSVDB-125678 - SIDEKIQ GEM FOR RUBY WEB/VIEWS/QUEUE.ERB MSG.DISPLAY_CLASS ELEMENT XSS - OSVDB-125676 - SIDEKIQ CROSS-SITE SCRIPTING(XSS) IN QUEUES PAGE - OSVDB-125675 - SIDEKIQ GEM FOR RUBY MULTIPLE UNSPECIFIED CSRF

5ae48bf2cc97a1fced4a67186d280ec7ed0d725d 10-Aug-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Add redis semaphore.

00c5ad5a9b1e402cdb4beedbfbfbd36b60a60520 06-Aug-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Add redis semaphore.

1f7679641dd7de4244482c939c6388814eba86c5 20-Jul-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Overwrite arrays in config The previous rails_config version didn't properly overwrite arrays. This version does overwrite them.

f9328b75002f0a5584b4ec930536fc43e5b56fdc 10-Jul-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Add models: [Manual]AxiomSelection There will be more subclasses of AxiomSelection each with different attributes. To avoid creating many NULL values in the database, we use multiple table inheritance with the gem 'acts_as_relation'. This gem mimicks actual class inheritance of ruby with the method `acts_as`. The migration changes the has_and_belongs_to_many association between Axioms and ProofAttemptConfigurations to be between Axioms and AxiomSelections.

369d4f524f34019798a5fd17cd8ab39f8f1f8101 06-Jul-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Add puma to production gems We don't specify a version because we don't expect any incompatibilities with puma and Ontohub.

36472d7b81aff12a5d50518d6efef80c159a9693 06-Jul-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Bundle update.

cb380f2e4824d8ea389214f60d2214952b777fbe 06-Jul-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Use eugenk's rails_config version It seems like hnakamur's fork has been rebased and does not contain the desired commit any more. Until rails_config fixes the merging issue, we stay on eugenk's fork.

d7080e4344a7381c9b11e3cbdb68905832e59188 06-Jul-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gems: rails-erd, ruby-graphviz.

3294da2a7b33c7d0fd06b9bbacded8ea635b8211 06-Jul-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: secure_headers.

54d512d0e6133c676b5b31adfc4383eb6757cd6e 06-Jul-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: jquery-ui-rails.

8f4173744ead6ead97b95a85935e54cfc96284da 06-Jul-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Security update for redcarpet The new version fixes CVE-2015-5147

ab5f3ea3d2326b607cf0c8e78ea79ead10c3e3ff 06-Jul-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: rugged.

f2ee1ae11d3417150d0639d2ca773b1019a2508b 01-Jul-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Temporarily set libv8 to a previous version The current version is not installable on several Linux clients.

6da224fb6eba026563d9cf011bdb98248b0d2d1f 29-Jun-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update the complete bundle.

ba81c13b8bc4aba9e90aec591a80884819297982 29-Jun-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update the bundle for security fixes. rails 3.2.22 fixes CVE-2015-3227. jquery-rails 3.1.3 fixes CVE-2015-1840.

e730b454155fc9fdf9169b90b11d1cac4ce0490c 19-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Use rails_config fork adding only overwrite_array When loading the hets.yml last, we don't need the patch to prepend sources. The only additional feature we need in rails_config is overwrite_array.

095324d2b8e4551814b6a7c9b24dfb970d211196 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Downgrade gem again: inherited_resources It breaks out combinations feature. See #1340.

9406ea3479f275c95c63582627d2baf105ca2f32 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: capistrano.

35dc5c49bc0919bd2e270dd380365fcf73b15b82 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: webmock.

e1491cbe4bf9495371903c157b3f1a5c57f8e414 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: simplecov.

392405b6199703b0ff280629f8fb894529e5c142 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: secure_headers.

bcd46747b37a33d1908eca5996a2943c2d9585e4 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: rest-client.

e10842fce6f1fd19b6f874882d94f5473f746875 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: pry-byebug.

ff3a2e0cbbe42b02f900c074ccae16173eda2ee6 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: momentjs-rails.

de9becd6f97ea73718bfcc87ecd1e5596641ed1b 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: i18n-tasks.

7f4cdd4215ad289a32c22f12f780e545132ff0fb 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: exception_notification.

91fe31492de05f54af2dc9f533c2ca7a01b46e24 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: yard.

42fc24364914805563cc95f846e83d2b0ae0a229 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: webmock.

74161ff91d105490a06edb03c2212ee47d068d5a 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: vcr.

2989aed6ca6452c9a81d88fc7502bcad64aa54a7 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: underscore-rails.

d62a3a4003cf2bb014023a32b64bef101101c138 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: simplecov.

f155efaec8db9141f181301fd9540c67a7ddd080 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: redcarpet.

5bccdd4a90e8cc426422373293863e241d5ddb8f 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: quiet_assets.

da19a110cdb53d2dc830800e2e9063c73adc5d59 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: pry-byebug.

44336b5981859da2393c14cfdaa053f4e3da7524 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: momentjs-rails.

d47ac9b4544471ebf87d938c8078ed90a843c22c 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: launchy.

de61f09edb47297f979d5d215bd12f056b211703 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: jquery-ui-rails Version 5.0.0 lead to problems with DELETE requests, but this seems to be fixed in 5.0.3. See db8fb18.

de32b1345548751e4c923edd544b09249ff413e0 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: jquery-rails.

727dc989aa80191f57dd5e5bcc2d874e39606940 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: i18n-tasks.

002a011f927494fea859eafbb97eba54a6fe5ab5 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: handlebars_assets As soon as #1253 is fixed, this needs to be tested: Visit an ontology graphs page and click on a node. If the Symbols are displayed correctly, this is okay.

a0e1b3fa74a13220c221aa3b490d4585558f8ab9 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: factory_girl.

fdef93ef15e0b77bfc750d5b1143e0c61117b6a1 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: database_cleaner.

de14dfef9dd3a58ff8e50a3d5d05e758f03eebb6 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: d3_rails.

86e6b0a7ef30409876d3768124b26fb06f78f74b 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: compass Also removes blueprint because it is not used at all.

d0493a6f67ec5b37e50e4e59c52c9ac15a9dfb36 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: capybara.

ccb3ac32fa3dfc64262b8add551e99d5b23eb937 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Replace gem: font_awesome by font-awesome-sass This gives us the current version of font-awesome. There were some breaking changes, but this commit adjusts the views as well.

b53b3019d8fc2fc6aea44b0750213038088ad186 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gems: bootstrap-sass, bootstrap-select-rails.

895d9e8fe1f35e0af5428cc40732c009f0943ef9 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: better_errors.

1cfa9d1f08b0c021b15d75b3dee4a8ded27567fc 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gems: sidekiq, sidetiq.

a209f571b1a33fae93dcdce17a02e3f840d65480 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: secure_headers.

bfb5420c6b2f169aa3c1044d0b3e2b73fe6b2bf3 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: rails-erd The new version only adds functionality according to the project's changelog.

63b62e7a1e753abc4d77720f1bec369226fdc3f5 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gems: rdf, rdf-rdfxml, rdf-n3.

650973634053c43bd4fa5f2cf1ccd86c321625da 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: nokogiri.

74c59067e0ec82c04aaa63cedf23ce4f81e520d5 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: inherited_resources.

709723aac3aa41ba54a12101b7b9c826589f1198 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: pg.

e83c7b6b5bd34f6310d2b9dbf46065c62ff8b881 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: foreigner.

0121868804794c6168d20dc521a884c72370ef9b 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: devise.

406711d22108524dec35ee9ca20941195e66c2d7 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem: acts_as_tree The new version only adds functionality according to the project's commit messages.

9aac2dae4d3cdeffc1ae5dcf1af5e228da32a668 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem (critical): rugged.

bf7856d8bd0c29c3b0757dbf6863bac07d3b24ea 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update gem (critical): rest-client.

df947660ba89fe7e5b8bde99878de350544cbd12 05-May-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update the bundle.

25d3cbdb3f18904808df1a51d98839df01247185 20-Apr-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Remove puma from Gemfile again.

3cbfa20c9915a6424059fb2a61f70f949b7b3c61 20-Apr-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Include Gemfile.lock.

c6f198e0b61dc6b64f4db0d80a6d33a00b8390de 19-Apr-2015 Tim Reddehase <robustus@rightsrestricted.com>

add rspec-its to prevent deprecation.

ababa8c4ed51c46725882e79731e19813f8d0c43 19-Apr-2015 Tim Reddehase <robustus@rightsrestricted.com>

add rspec-activemodel-mocks to prevent deprecation.

c626ae700ae4afb4d001fdfa15ecc680e081a84d 08-Apr-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Load hets.yml before the others This allows to overwrite the hets settings in `*.local.*` files.

addfa8a85f171f7915e2735d36c2323afea07f3d 08-Apr-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Update rails_config to allow overwriting arrays The old rails_config always merged arrays. The new version allows arrays to be overwritten. For example settings.yml could define some_array: - foo - bar and settings.local.yml could define: some_array: - baz The new version reads ['baz'] while the old one reads ['foo', 'bar', 'baz']. We need this new behaviour for a secure production configuration. Also the Rails dependency is removed so that we can use it in our light environment.

9ae5712293e133280b75fead4c7d0685b86fc712 11-Mar-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Add json-stream gem.

bd2d66609427482f28200c5b128cabc5d8688b44 10-Mar-2015 Tim Reddehase <robustus@rightsrestricted.com>

upgrade specroutes This is for the newly implemented reroutes feature, which allows rerouting to a different controller based on mime-type. Additionally this gets us the allstar feature and a breaking reversal of standard allstar handling (it is deactivated by default).

1dd8784dd61eab6f84d921fd06ee0e82efecdcbd 09-Mar-2015 Tim Reddehase <robustus@rightsrestricted.com>

add the json-schema gem to test.

885b1e716c5e5c2f9a3bd3f7ca2289adf10021c3 09-Mar-2015 Tim Reddehase <robustus@rightsrestricted.com>

switch rabl for activemodel serializers ActiveModel::Serializers seems the way to go since it uses POROs instead of its own external language for defining serializations.

63db7a0e27d37cc5e556c6e37f6e284bb89b5c95 09-Mar-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Use gem poltergeist for integration tests.

c3b9bcffe1f3c018fc5c9e269a50762c7b392096 04-Mar-2015 Eileen Bolloff <ebolloff@fb3.uni-bremen.de>

Update invoker.

a9b9ae90318b0e764dca0741bb21115303e45f93 04-Mar-2015 Tim Reddehase <robustus@rightsrestricted.com>

upgrade specroutes to current version.

113cd002139756abd35496a70a5aae2a8dbd4d62 28-Feb-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Add repository undelete functionality.

b61360e4c0d77b6d9e9d46715fddd3b236c21b99 10-Feb-2015 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Add data_migrate gem.

6e3be31373977a6a0eb3b0888e513bb72693d743 02-Feb-2015 Tim Reddehase <robustus@rightsrestricted.com>

add specroutes to Gemfile, upgrade rails to 3.2.21 This also upgrades rails as this is necessary via the dependency entry for specroutes. Additionally it also makes sense to use the latest bugfixes.

492757fbefce7e6aee4a7515983a44d19a542ccc 28-Jan-2015 hardik101 <hardikbalar101@gmail.com>

added indefinite article gem

3d0461df47ec4520928743155453c05d2b88e83b 01-Dec-2014 Eileen Bolloff <ebolloff@fb3.uni-bremen.de>

Fix view for searchbar so it looks equal The searchbar looked weird in firefox, the bootstrap select gem should make it look equal in every browser.

fdb9497aca581a31b915fae739732dfa209e00c0 01-Dec-2014 Eileen Bolloff <ebolloff@fb3.uni-bremen.de>

Deleted leftovers of solr in the Gemfile.

5d420597f395967b663f020bde60cd1699696fbf 24-Sep-2014 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Add pry-byebug gem. This allows us to navigate through the code with the debugger.

5c151d8526633071473e1c93148fefbbd4cf7b44 15-Sep-2014 Sascha Graef <sgraef@informatik.uni-bremen.de>

introduce i18n-tasks gem with thoughtbot config

db8fb18cd95911d04c65319724277de4fb8855db 02-Sep-2014 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

revert jquery-ui-rails gem to version 4 With version 5.0.0, delete links created by link_to did result in a GET request. With version 4.2.1 they correctly created a DELETE request.

1df15ea1b37f426776a51314cfdb04efa48236fa 20-Aug-2014 Tim Reddehase <robustus@rightsrestricted.com>

remove coveralls from project.

a64a8a4c8c8c36e103792a7e86e624f464235b7e 16-Aug-2014 Tim Reddehase <robustus@rightsrestricted.com>

remove unused gems diffy, byebug and pry-byebug were removed as gem-dependencies as we do not currently use them or plan to use them in the near future.

bd5a0b8bfdc6b27ec4dc450941811fe2966fc2bb 08-Aug-2014 Tim Reddehase <robustus@rightsrestricted.com>

be safe through twiddle-wakka version operator The twiddle-wakka version operator in the Gemfile should keep us safe of unexpected major version upgrades. See http://robots.thoughtbot.com/rubys-pessimistic-operator for more twiddle-wakka information.

977cf043d8aaa02b30d3afdf9c62eac26a0ba0eb 07-Aug-2014 Tim Reddehase <robustus@rightsrestricted.com>

Update assorted gems Here is a list produced by bundle update: Updating git://github.com/tristanm/jstree-rails.git Updating git://github.com/digineo/sunspot.git Updating git://github.com/llwt/codemirror-rails.git Updating git://github.com/0robustus1/ontology-united.git Installing coffee-script-source 1.7.1 (was 1.7.0) Installing i18n 0.6.11 (was 0.6.9) Installing tzinfo 0.3.40 (was 0.3.39) Installing execjs 2.2.1 (was 2.2.0) Installing netrc 0.7.7 Installing diffy 3.0.6 (was 3.0.4) Installing ice_cube 0.12.1 (was 0.12.0) Installing slop 3.6.0 (was 3.5.0) Installing rdf 1.1.4.3 (was 1.1.4) Installing redis 3.1.0 (was 3.0.7) Installing rspec-core 2.99.1 (was 2.99.0) Installing rspec-mocks 2.99.2 (was 2.99.1) Installing faker 1.4.2 (was 1.3.0) Installing simplecov 0.9.0 (was 0.8.2) Installing compass 0.12.7 (was 0.12.6) Installing rspec-expectations 2.99.2 (was 2.99.0) Installing coffee-script 2.3.0 (was 2.2.0) Installing uglifier 2.5.3 (was 2.5.1) Installing rubydns 0.8.5 (was 0.8.4) Installing rest-client 1.7.2 (was 1.6.7) Installing redis-namespace 1.5.1 (was 1.4.1) Installing cucumber 1.3.16 (was 1.3.15) Installing shoulda-matchers 2.6.2 (was 2.6.1) Installing pry-byebug 1.3.3 (was 1.3.2) Installing sidekiq 3.2.1 (was 3.1.4) Installing capistrano-bundler 1.1.3 (was 1.1.2) Installing acts_as_tree 2.0.0 (was 1.6.1) Installing sidekiq-failures 0.4.3 (was 0.4.2) Installing d3_rails 3.4.10 (was 3.4.8) Installing jquery-rails 3.1.1 (was 3.1.0) Installing jquery-ui-rails 5.0.0 (was 4.2.1) Installing momentjs-rails 2.8.1 (was 2.7.0) Installing quiet_assets 1.0.3 (was 1.0.2) Installing nokogiri 1.6.3.1 (was 1.6.2.1) Installing capybara 2.4.1 (was 2.3.0) The 'using' lines were removed.

e5fc71a1941c833e676942534582f2adb510660d 07-Aug-2014 Tim Reddehase <robustus@rightsrestricted.com>

update usage of ontology-united with vars.

74564acdd8d22f00b3763c635fd4cee882b09bae 21-Jul-2014 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

bump rugged to 0.21.0

fea0884ec05a4d950097929bafd73a7db63e5fc5 05-Jul-2014 Sascha Graef <sgraef@informatik.uni-bremen.de>

updatet rails to 3.2.19

8de92044876a4e4d746a4b76b215df138163205c 26-Jun-2014 Tim Reddehase <robustus@rightsrestricted.com>

add invoker to Gemfile.

b8de7e0ef90da98f61e2686679d195a5cef3c62f 17-Jun-2014 Tim Reddehase <robustus@rightsrestricted.com>

add new bounds for rails_config Versions greater than 0.3 (0.4 series and up) won't work for us, as they require to be loaded inside a rails environment.

32290d965e4b565e2ca2f254c5297aa0f7cc9255 16-Jun-2014 Tim Reddehase <robustus@rightsrestricted.com>

upgrade every bundled gem in bounds.

6e9dfde1a2b6ed6f97c012cb920b5b648d45ae63 16-Jun-2014 Tim Reddehase <robustus@rightsrestricted.com>

upgrade sidekiq to 3.1 and sidekiq dependents Additionally upgrade sidetiq and sidekiq-failures.

307902584a4a70170eae6dc80e17d87f680fe2b3 30-May-2014 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

bump rugged to current development version

0b21a6362a89708b42df0c03de4cb77a4f91690e 22-May-2014 Sascha Graef <sgraef@informatik.uni-bremen.de>

adding cucumber-rails gem

8570fb0f2396de20946a02ae383389a7276138c7 13-May-2014 Tim Reddehase <robustus@rightsrestricted.com>

add underscore.js dependency.

a92571c36f8f45b6b2ff908de253f163868b5938 06-May-2014 henning mueller <henning@orgizm.net>

Rails update.

b483e4394d081dcdf2e05a273436cfc05ee1c282 25-Apr-2014 Tim Reddehase <robustus@rightsrestricted.com>

require ontology-united This gem should allow us to write ontologies for testing purposes in a small dsl.

831ecf7a8cc6cb0ccd52d09f0786c73a70ab52af 03-Apr-2014 henning mueller <henning@orgizm.net>

Fixed wrong git URL for codemirror.

770dd0419a1afb27b859743e7763a934da7fd0b0 02-Apr-2014 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

use codemirror for displaying file contents

54d3ce5b20b994cb74aa990458d078d02caa551d 24-Mar-2014 Julian Kornberger <juliank@tzi.de>

Gems updated

b9c54924555db8d6973d3de2ac95637434e775a1 07-Mar-2014 Julian Kornberger <juliank@tzi.de>

Gems updated

bbde16e9efe67dc91846233a5964508dd82c83d0 18-Feb-2014 henning mueller <henning@orgizm.net>

Updated rails to 3.2.17.

b698bd23572dfef94d1d6ccd906eb9eca7c0709a 14-Feb-2014 Julian Kornberger <juliank@tzi.de>

Sidekiq and Faker updated

3f4d0b5eb524cbdf9341960fec2155f8be471425 12-Feb-2014 Julian Kornberger <juliank@tzi.de>

Coveralls added

e3ae5c822699ae375f274bec0a24c1a0b36b731f 11-Feb-2014 Julian Kornberger <juliank@tzi.de>

SimpleCov added SimpleCov is a code coverage analysis tool that generates awesome reports after running our test suite.

3f058f7a25a75acdd5aa9e2e97246e678c636455 31-Jan-2014 Julian Kornberger <juliank@tzi.de>

Gems updated

2b87555cc1381f03e469c079c9cdad17b6226dfc 31-Jan-2014 Julian Kornberger <juliank@tzi.de>

Capistrano updated

6b96b2a36109c95d73311203a40e59827399c900 19-Jan-2014 Julian Kornberger <juliank@tzi.de>

Upgrade to Devise 3 solves #564

5b65ce397a9ef60d24ef41624a46a1d78d90d38b 17-Jan-2014 Julian Kornberger <juliank@tzi.de>

Migration to Capistrano 3

7754b3310362a10aa551d66b2049366de7171b41 09-Jan-2014 henning mueller <henning@orgizm.net>

More gem updates.

7aa92d5fa7f2a7531ff8dd70a58488758deee3d7 03-Jan-2014 henning mueller <henning@orgizm.net>

Updated some gems.

998cae6ddeaa16fbf2502653158aa35db24aad8e 09-Dec-2013 Tim Reddehase <robustus@rightsrestricted.com>

add sidekiq-failures for more detailed infos.

b24073f431a28492161493e7db3ee38677044ea9 06-Dec-2013 Julian Kornberger <juliank@tzi.de>

pry-byebug added

bca2b332be8cd46cb2b48ac4e40da49f818643c5 04-Dec-2013 Julian Kornberger <juliank@tzi.de>

Rails updated

f6c7512bebad730bc1a5b7fc36a3990375e66792 29-Nov-2013 Julian Kornberger <juliank@tzi.de>

Sidekiq and Sidetiq updated

9de8a0e869f1e5193dcf99665ad613456e5a1310 08-Nov-2013 Julian Kornberger <juliank@tzi.de>

Tests can be started again.

d1f0cb74e8bc61e9185488a431b86816cb1cc7ed 07-Nov-2013 Sascha Graef <sgraef@informatik.uni-bremen.de>

generating necessarily controllers

Gemfile.lock app/assets/javascripts/categories.js.coffee app/assets/javascripts/license_model.js.coffee app/assets/javascripts/project.js.coffee app/assets/javascripts/tasks.js.coffee app/assets/javascripts/tools.js.coffee app/assets/stylesheets/categories.css.scss app/assets/stylesheets/license_model.css.scss app/assets/stylesheets/project.css.scss app/assets/stylesheets/tasks.css.scss app/assets/stylesheets/tools.css.scss app/controllers/categories_controller.rb app/controllers/license_model_controller.rb app/controllers/project_controller.rb app/controllers/tasks_controller.rb app/controllers/tools_controller.rb app/helpers/categories_helper.rb app/helpers/license_model_helper.rb app/helpers/project_helper.rb app/helpers/tasks_helper.rb app/helpers/tools_helper.rb app/views/license_model/index.html.haml app/views/project/index.html.haml app/views/tasks/index.html.haml app/views/tools/index.html.haml config/routes.rb
9a5360667a7e96650e4f0c7eab49f42d03260bd4 07-Nov-2013 Sascha Graef <sgraef@informatik.uni-bremen.de>

Categories javascript should work now on production too

0f14fd79b8520bef07c7b46eff852fea2de54322 04-Nov-2013 Daniel Couto Vale <danielvale@uni-bremen.de>

New gemfile

184bb45b6cb62422583b634cc27d04fc2ba0e0f6 02-Nov-2013 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

fix text of paths_starting_with

e7082a295257a3be6eccc6a7a001b82dfc748683 01-Nov-2013 Julian Kornberger <juliank@tzi.de>

bootstrap-sass updated

d357427e41c8592db022cff26716526b72de2b54 01-Nov-2013 henning mueller <henning@orgizm.net>

Added better_errors and binding_of_caller.

4b8c0f56a6a49c41dd0e9fdd28a27c4f35e2a208 30-Oct-2013 Julian Kornberger <juliank@tzi.de>

Simple REST API for listing/updating Repositories and Ontologies

99b71dbb35f677b45c11487957a41517aebfb4f8 27-Oct-2013 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

bundle update

5379e11f2c6c49c6df4872d6a55f2ff390969e66 27-Oct-2013 Julian Kornberger <juliank@tzi.de>

Periodic updating of remote repositories implemented.

2af6ca0486fa62b4d9b3c50e7e99ca38a1d19cd2 24-Oct-2013 Julian Kornberger <juliank@tzi.de>

carrierwave removed not used any more

aa995185bb9db58521af11bcfc803b33e01fb55c 22-Oct-2013 Sascha Graef <sgraef@informatik.uni-bremen.de>

Categorys view working with dagnabit

Gemfile.lock app/views/ontologies/_category.html.haml public/repositories/1/HEAD public/repositories/1/config public/repositories/1/description public/repositories/1/hooks/README.sample public/repositories/1/info/exclude public/repositories/1/objects/03/53a3ef2344540642661223b47efac7d87b95a5 public/repositories/1/objects/12/5eff72b08a9a5def568c24925d4cfe6acec15b public/repositories/1/objects/23/5424e4feb534c56914d101b702e1cf4fb59fe9 public/repositories/1/objects/39/adf074cf7d60de368c2cf15da0b6cf7b3611cb public/repositories/1/objects/39/d2f3d204226290dfa806b34883544a901cb337 public/repositories/1/objects/3f/edaf015ca2804d7bb9566e1d9612bcf67f7c89 public/repositories/1/objects/4e/09ac77ac6ab71be8126b1b721fd1c3107855ee public/repositories/1/objects/57/7a7ee8588d39e0add4917bcd2804b0315a8168 public/repositories/1/objects/60/0df865280e0012698ddd43ffcf29e8415d82bd public/repositories/1/objects/7f/58dd2307984eb16ab6981df11171cd331a0437 public/repositories/1/objects/81/69d2fcccc66729954fda560a70366256c13b9e public/repositories/1/objects/92/f8462ec8166112a2adb55ddde1ee28b308d9ff public/repositories/1/objects/95/0bf5f71717b7be005ff4e6c1581eced4e620f6 public/repositories/1/objects/9f/8331b116869cb530ff947c7aa5af608419c3a8 public/repositories/1/objects/aa/9c106a9d215445c3050c5622a007e815034d29 public/repositories/1/objects/d2/8c142666ee82978dd0cde8f113034c1daa2895 public/repositories/1/objects/da/030a100fbdde1cbeaf0ea55dd66bd33cc2dfe2 public/repositories/1/objects/e5/8a78680721cec44d0ac0927e3b3d56945b22a1 public/repositories/1/refs/heads/master test/fixtures/ontologies/owl/Domain_model.owl
3d1a5f4a62807d945149cc4b45a2998f5f46b7ab 18-Oct-2013 Julian Kornberger <juliank@tzi.de>

ExceptionNotification updated

b583a67e7dc9155201f306d0bd28bc60cb096942 18-Oct-2013 Julian Kornberger <juliank@tzi.de>

Rails updated

816bf6f8088b162b681101d93fd450127a0e586f 12-Oct-2013 Julian Kornberger <juliank@tzi.de>

Migrated from resque to sidekiq Sidekiq has some great features and offers multithreading.

285ccefc2d34a47c9b6bc1a8c8b14b5e094af2a6 11-Oct-2013 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

close #281

f4f75435a4d5888a1e6aa3ce01342999f6d10c73 11-Oct-2013 henning mueller <henning@orgizm.net>

Repaired inclusion of bootstrap3.

46dd7ca898be6d5dbdfda64fd90ce01e253c0878 08-Oct-2013 Julian Kornberger <juliank@tzi.de>

Tests fixed

Gemfile Gemfile.lock app/controllers/application_controller.rb app/controllers/commit_references_controller.rb app/controllers/ontologies_controller.rb app/helpers/comments_helper.rb app/helpers/navigation_helper.rb app/models/commit_reference.rb app/models/ontology.rb app/models/ontology_version.rb app/views/comments/_comment.html.haml app/views/comments/_form.html.haml app/views/ontologies/_info.html.haml app/views/ontologies/_menu.html.haml app/views/ontologies/edit.html.haml app/views/shared/_navbar.html.haml config/routes.rb db/migrate/20131003154019_add_repository_source.rb db/migrate/20131004173521_add_base_path_to_ontology.rb db/migrate/20131004173653_remove_path_from_ontology.rb db/migrate/20131004175723_add_file_extension_to_ontology.rb lib/git_repository/history.rb spec/routing/files_routing_spec.rb test/factories/entity.rb test/functional/comments_controller_test.rb test/functional/entities_controller_test.rb test/functional/ontologies_controller_test.rb test/functional/ontology_versions_controller_test.rb test/functional/oops_request_controller_test.rb test/functional/search_controller_test.rb test/functional/sentences_controller_test.rb test/functional/users_controller_test.rb test/integration/comments_test.rb test/unit/ontology_test.rb test/unit/ontology_version_test.rb test/unit/oops_request/responses_test.rb test/unit/oops_request/states_test.rb test/unit/repository_test.rb
e437b19c184243f688c2dd9b3bf083a454c804c7 02-Oct-2013 Julian Kornberger <juliank@tzi.de>

RSpec added Conflicts: Gemfile.lock

bdedecbeaed915cee404b2a109f747fbf546dde9 02-Oct-2013 Timo Kohorst <timo-hb@arcor.de>

dagnabit gem

6b3c78d95e2b48a700837f14a8356bfd7169ee9b 01-Oct-2013 henning mueller <henning@orgizm.net>

Updated gems (and testing github-merge-hook deployment).

802014878b7383de536e4fa0ceced1bce3217ead 01-Oct-2013 Daniel Couto Vale <danielvale@uni-bremen.de>

Add top navbar

1167711784176c2c46f3b69a3530a8aff0d575f7 01-Oct-2013 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

add cloning feature to backend two tests fail because a shallow clone has a faulty parents-reference in the oldest cloned commit

8ec575832389c2588f0b5ca1f1dd2cc42d62eb12 25-Sep-2013 = <=>

Add commit information in files view

ac24fe7991ded663db092bd5480ef9c52c14a86f 24-Sep-2013 = <=>

prepare for codemirror

e6d8eb37dfc7fa3986a96a4a816c3cbf251243d6 19-Sep-2013 Julian Kornberger <juliank@tzi.de>

Gems updated

ada077ce1dfcec649d9a22de00469266741081b0 19-Sep-2013 Julian Kornberger <juliank@tzi.de>

Debugger added

376ab6f897ef4172e51817627dfbef2131add47c 19-Sep-2013 Julian Kornberger <juliank@tzi.de>

Debugger added

96c21cbd124e8e16bb6adf48461d832a3e0f4b9c 18-Sep-2013 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

new Gemfile.lock

42b7f70407e08b17a183ab78dfee7e009ca1d022 11-Sep-2013 Tim Reddehase <robustus@rightsrestricted.com>

use pry instead of irb for rails console.

b80d6b084bb6e6d36f5048ea9621263e719534fc 26-Aug-2013 Tim Reddehase <robustus@rightsrestricted.com>

add hamlbars gem for 'hb'-helper support.

1bbf499b79722b08da1cd2cc81322b699d2d5016 19-Aug-2013 Tim Reddehase <robustus@rightsrestricted.com>

add handlebars as gem dependency.

3dfed882bc023e0f36563bdb5d72f8a46fb68d69 09-Aug-2013 Sascha Graef <snow-wolf@luna-wolf.de>

Parser EntityMapping in Links

1e7c695e279d63345316a6dc51419c9bbee2e5d2 08-Aug-2013 Sascha Graef <snow-wolf@luna-wolf.de>

Bundle Update

83bc41aa953af5e8e57de2e5349e2caad2e6acb2 07-Aug-2013 Tim Reddehase <robustus@rightsrestricted.com>

update bundled gems.

45a9a8fd098ade2a0ab37761f64d406f709b41b6 06-Aug-2013 Tim Reddehase <robustus@rightsrestricted.com>

remove jit from application.

8d0fb4fb93788e195e8fc2a48b243b3e53e6bd45 31-Jul-2013 Timo Kohorst <timo-hb@arcor.de>

add category framework

f458e516c452c779efc7fc8949edfc2092d3fb82 31-Jul-2013 Julian Kornberger <juliank@tzi.de>

Updated rugged

78bebcc170ccfa470d0f5c16e87ce06ec40c5f4a 29-Jul-2013 Julian Kornberger <juliank@tzi.de>

Gems updated

b7a6487ca7ef9877d7a3e6e51f3de76818af3526 10-Jul-2013 Tim Reddehase <robustus@rightsrestricted.com>

add necessary hets paths - also remove mysql - and remove some mocha deprecation warnings.

e4272567925f1a8db5d57228d8b8ec7e233b0caf 09-Jul-2013 Tim Reddehase <robustus@rightsrestricted.com>

add d3 support via Gemfile.

a84f52e26a45bc0abd52d56e44a17dd352a333ca 08-Jul-2013 Tim Reddehase <robustus@rightsrestricted.com>

remove mysql-gem from Gemfile - We actually use PostgreSQL now, so we don't need the mysql-gem anymore.

8441cc0be003fcd6294a1b5b93e1143b5bb82cea 03-Jul-2013 Julian Kornberger <juliank@tzi.de>

secure_headers added

aead985e48027c9df1ef553b17df29dd378757aa 27-Jun-2013 Julian Kornberger <juliank@tzi.de>

Attachments with carrier_wave removed, commit_oid for Git commits added.

8daef289578f6f18f67c069bd38c209e1e96c432 19-Jun-2013 Julian Kornberger <juliank@tzi.de>

font_awesome and bootstrap-sass updated

a2b3d5bb602a9a0d970b6640948f1d7d75ce78bf 19-Jun-2013 Eugen Kuksa <eugenk@informatik.uni-bremen.de>

Create (untested) git lib

01c96f4143b5cdda0d62a8ca63ed730d0b58de24 22-Apr-2013 Daniel Couto Vale <danielvale@uni-bremen.de>

Add gemfile lock

3759e03932ce4717d77be85e08895003f0e351b3 23-Apr-2013 Christian Clausen <cclausen@tzi.de>

localice supports, fixes #123

c7984062f37d03ce63f7f50184a0e91055dea7ff 13-Apr-2013 Christian Clausen <cclausen@tzi.de>

shoulda_update

bed075ca5886f9d5a0010cd6da54c6f3b839ea09 13-Apr-2013 Julian Kornberger <juliank@tzi.de>

Ooops parser is able to parse responses.

43a0f914166a28a9d7f75ab10673dce129cb38a9 13-Apr-2013 Julian Kornberger <juliank@tzi.de>

OOPS client and tests added.

c8ac140d8a43e6c768e137864face694c693b733 13-Apr-2013 Julian Kornberger <juliank@tzi.de>

font_awesome added

e8733cf1d351aadced3f2e2b7b6473c869bb1544 12-Apr-2013 Julian Kornberger <juliank@tzi.de>

Switched to a bootstrap fork with javascript fixes.

a3c52b145290f82936e3a4bf0e96fd40c0bf095f 10-Apr-2013 Christian Clausen <cclausen@tzi.de>

use thejit as gem and add context-menu

234a52ce997ea67bbf347044e7c4e9c0f5317b34 10-Apr-2013 Julian Kornberger <juliank@tzi.de>

Revert "Capistrano removed, will be restored in the deployment branch." This reverts commit 53cacd694ed31d42ea292fffef8cbf3c56eeb2ba.

53cacd694ed31d42ea292fffef8cbf3c56eeb2ba 10-Apr-2013 Julian Kornberger <juliank@tzi.de>

Capistrano removed, will be restored in the deployment branch.

736e78aff9e67436c35d4835c24fca667f3cadf3 10-Apr-2013 Julian Kornberger <juliank@tzi.de>

rails_config and exception_notification added

19c3961e0a134d969c247cc6b9f9263d17184d09 27-Mar-2013 Julian Kornberger <juliank@tzi.de>

Gems updated

ed6afa990b801584714a4606a28e40718acaa3bd 25-Mar-2013 Julian Kornberger <juliank@tzi.de>

Using latest version of inherited_resources

fb342beb64488b4cc685c9f3886d08d112a4ac9d 20-Mar-2013 henning mueller <henning@orgizm.net>

Had to add rack-protections manually.

76a514a12a3a91f4c009946f2d6ecacac9ed2980 19-Mar-2013 Julian Kornberger <juliank@tzi.de>

Other gems updated

b105daac84a2aecf264dabebba83a86facc9e723 19-Mar-2013 Julian Kornberger <juliank@tzi.de>

Rails updated

2761c5c85b743a876ddf50169b3ec11e25485d07 18-Mar-2013 Christian Clausen <cclausen@tzi.de>

fix registry-import if iris are already existing

7c5e9db9a07461d92c007563a2a27ca42ce93bae 14-Mar-2013 Christian Clausen <cclausen@tzi.de>

add serializations Bug #83

45182598742230da206d428a5ac8bcad6520d224 28-Feb-2013 Julian Kornberger <juliank@tzi.de>

Using inherited_resources from Git to get compatibility with Ruby 2.0.

a0626d70adc75093ce97fced77d2c1feac68a54b 23-Feb-2013 Julian Kornberger <juliank@tzi.de>

Gems updated

2a3937729c5967d9ec8827df78b60820a90975ed 23-Feb-2013 henning mueller <henning@orgizm.net>

Ruby p392. Updated gems capybara and capybara-webkit.

40538f8b3af5a0f23baf731faf39f4abf6b78176 22-Feb-2013 Julian Kornberger <juliank@tzi.de>

Migrated from formtastic to simple_form, it has great bootstrap support.

Gemfile Gemfile.lock app/assets/stylesheets/_global.css.sass app/assets/stylesheets/application.css.sass app/assets/stylesheets/filter.css.sass app/views/admin/logics/_form.html.haml app/views/admin/users/_filter.html.haml app/views/admin/users/_form.html.haml app/views/admin/users/show.html.haml app/views/comments/_form.html.haml app/views/devise/confirmations/new.html.haml app/views/devise/passwords/edit.html.haml app/views/devise/passwords/new.html.haml app/views/devise/registrations/edit.html.haml app/views/devise/registrations/new.html.haml app/views/devise/sessions/new.html.haml app/views/metadata/_form.html.haml app/views/ontologies/_filter.html.haml app/views/ontologies/edit.html.haml app/views/ontologies/new.html.haml app/views/ontology_versions/new.html.haml app/views/search/index.html.haml app/views/shared/_header.html.haml app/views/teams/_form.html.haml config/initializers/formtastic.rb config/initializers/simple_form.rb config/initializers/simple_form_bootstrap.rb config/locales/en.yml config/locales/simple_form.en.yml test/integration/comments_test.rb
50415552581c79eebe941a271bd98f8d51818b68 13-Feb-2013 Julian Kornberger <juliank@tzi.de>

jQuery updated

40263d893a8e99cb6746e6b7d9a8bcb2e433583b 13-Feb-2013 Julian Kornberger <juliank@tzi.de>

Bootstrap updated

f1d69272eefe67fbc2a47e7016840f67b75be0b9 13-Feb-2013 Julian Kornberger <juliank@tzi.de>

Capistrano updated

5f579ebe7d026ae54bdfe295bb38e91a099b879d 13-Feb-2013 Julian Kornberger <juliank@tzi.de>

Integration test written with capybara-webkit to test adding permissions.

7af876105d967545bff4b869b5e1dce6c000f857 11-Feb-2013 Julian Kornberger <juliank@tzi.de>

Rails updated

33123ad53b415b0c7a222457cff47fb36aba4c52 06-Feb-2013 Julian Kornberger <juliank@tzi.de>

Some gems updated

74a4aa07a26149a7c289da4e5d9e5157559dc6d9 06-Feb-2013 Julian Kornberger <juliank@tzi.de>

Devise updated

8e9749fa7f715b073417d5629d4a14135369d297 29-Jan-2013 Daniel Couto Vale <danielvale@uni-bremen.de>

Read logics from registry ontology WARNING: there are logic iris which are malformed iris

a9a676bc6cf2220330b5538924cf8f09900ca905 29-Jan-2013 henning mueller <henning@orgizm.net>

p374 as default, documentation dependencies and link in README.md, therubyracer update.

292febcfcc167ee9ed41d6f8e6ffca8f51642ae3 16-Jan-2013 Daniel Couto Vale <danielvale@uni-bremen.de>

Add example languages to the seeds

3dda9a240a61f0015074c5f541071734408c2720 08-Jan-2013 henning mueller <henning@orgizm.net>

Rails updated... again :-(

f02a21e0d35aaac8bc54a8ad45bcb0e3d2d47ed4 03-Jan-2013 Julian Kornberger <juliank@tzi.de>

Rails updated

38dab3b63e2730b443590a53de93e085659efe25 12-Dec-2012 Julian Kornberger <juliank@tzi.de>

gems updated

Gemfile Gemfile.lock test/factories/entity.rb test/factories/logic.rb test/factories/ontology.rb test/factories/sentence.rb test/factories/user.rb test/fixtures/ontologies/clif/cat.xml test/functional/admin/teams_controller_test.rb test/functional/admin/users_controller_test.rb test/functional/autocomplete_controller_test.rb test/functional/comments_controller_test.rb test/functional/entities_controller_test.rb test/functional/home_controller_test.rb test/functional/ontologies_controller_test.rb test/functional/ontology_versions_controller_test.rb test/functional/permissions_controller_test.rb test/functional/sentences_controller_test.rb test/functional/team_users_controller_test.rb test/functional/teams/permissions_controller_test.rb test/functional/teams_controller_test.rb test/functional/users_controller_test.rb test/unit/ability_test.rb test/unit/autocomplete_test.rb test/unit/distributed_ontology_test.rb test/unit/entity_test.rb test/unit/hets_test.rb test/unit/logic_test.rb test/unit/ontology_import_xml_test.rb test/unit/ontology_test.rb test/unit/ontology_version_test.rb test/unit/permission_test.rb test/unit/sentence_test.rb test/unit/team_test.rb test/unit/team_user_test.rb test/unit/user_test.rb
f6df57b1ddb0fc130d9f194228547ca4b1c79da6 13-Nov-2012 Julian Kornberger <juliank@tzi.de>

Capistrano upgraded

728cd190651e0a1735196943639e2a533f0d9c1f 13-Nov-2012 Julian Kornberger <juliank@tzi.de>

Rails upgraded

4f56f6795da8c48f25b34c10ea3bd3b3c7756446 11-Oct-2012 Julian Kornberger <juliank@tzi.de>

Switched to postgresql again

05e05f96d9b75807d81744543c426dd2036c0e62 02-Oct-2012 Daniel Couto Vale <danielvale@uni-bremen.de>

quiet_assets added

ad3d301b618bf0cac4778b967854c50f486b282b 14-Aug-2012 Julian Kornberger <juliank@tzi.de>

Import of distributed ontologies works

c9cf54ba195bbab0d6174287ad65e6c35e7ef390 02-Aug-2012 henning mueller <henning@orgizm.net>

Added rails-erd gem to Gemfile. Use "rake erd" to generate a ERD of the current model.

78616f71683cabf59e522ab3dd0da345d79b7e3a 31-Jul-2012 Julian Kornberger <juliank@tzi.de>

Rails updated

2fa45a4e6ed8bb496cdcc6ba5658f251497ee411 31-Jul-2012 Julian Kornberger <juliank@tzi.de>

Merge branch 'master' into bootstrap Conflicts: Gemfile.lock

ad3b5de4d5ebdd8029bf318e64e0d3d45f724319 31-Jul-2012 Julian Kornberger <juliank@tzi.de>

gems updated

5a57115bbe7d39803b4f2b1f5dbf6f0f760d9169 30-Jul-2012 Daniel Couto Vale <danielvale@uni-bremen.de>

Remove PostgreSQL dependency

a1711a05a256127ea16f605866a795ba8fbd28e0 24-Jul-2012 Julian Kornberger <juliank@tzi.de>

redis namespace added

5a2e1b2fd79e04afada785c8fb581dbef48f87c9 24-Jul-2012 Julian Kornberger <juliank@tzi.de>

deployment to staging.ontohub.org

c050d05a335087b5987ef8966ad5fd98015246ff 03-Jul-2012 Julian Kornberger <juliank@tzi.de>

newrelic removed

a453c01fe53b929f98f8ec363d2ab62425b75695 03-Jul-2012 Julian Kornberger <juliank@tzi.de>

rvm-capistrano added

8b1112c0e5e5453ddc40a2e492269a196778ae26 03-Jul-2012 Julian Kornberger <juliank@tzi.de>

Gems updated

30bc6dc53d8a8b78f446db1df4149bc69629679b 03-Jul-2012 Julian Kornberger <juliank@tzi.de>

formtastic-plus-bootstrap added

dd0f340137b6febe1da16c6302a8da7e0c5cced4 15-Jun-2012 Daniel Vale <danielvale@gmail.com>

Add first integration test

716a6c80b51f867659c14f3db3354daecf9b89b1 05-Jun-2012 Daniel Couto Vale <danielvale@me.com>

Add progress bar

f09f213473bc50378e9630c851e7ab4c1db07d1b 05-Jun-2012 Julian Kornberger <juliank@tzi.de>

Deprecation Warnings removed

2bcf0d46ab6a78642637d8fbcc061e1c5a041bb1 01-Jun-2012 Julian Kornberger <juliank@tzi.de>

Updated Rails to 3.2.5

ff1cb52f98165f66c60e96a21b03ce5d838591d7 30-May-2012 Julian Kornberger <juliank@tzi.de>

Bootstrap Integration improved

8e6356968671dcd9b963687e2b6e2437dae87314 13-May-2012 Julian Kornberger <juliank@tzi.de>

Replaced relatizeDate by moment.js

84502d8379a4d40e9a647be8990402060e85b249 24-Apr-2012 Daniel Vale <DanielVale@eduroam-cart-096.wlan.uni-bremen.de>

Update database Change database system

.DS_Store Gemfile Gemfile.lock app/models/language_adjoint.rb app/models/language_mapping.rb app/models/logic_adjoint.rb app/models/logic_mapping.rb config/database.yml db/.DS_Store db/migrate/.DS_Store db/migrate/20120307143553_create_ontology_versions.rb db/migrate/20120307152347_create_entities.rb db/migrate/20120307152935_create_sentences.rb db/migrate/20120307154214_create_axioms_entities_table.rb db/migrate/20120307154214_create_sentence_has_entities_table.rb db/migrate/20120416191514_create_link_versions.rb db/migrate/20120416192741_create_entity_mappings.rb db/migrate/20120420115159_create_logic_translations.rb db/migrate/20120424155606_create_logic_mappings.rb db/migrate/20120424155621_create_language_mappings.rb db/migrate/20120424162211_create_language_adjoints.rb db/migrate/20120424162227_create_logic_adjoints.rb db/structure.sql test/fixtures/language_adjoints.yml test/fixtures/language_mappings.yml test/fixtures/logic_adjoints.yml test/fixtures/logic_mappings.yml test/unit/language_adjoint_test.rb test/unit/language_mapping_test.rb test/unit/logic_adjoint_test.rb test/unit/logic_mapping_test.rb
860ccc55684a5cbfed050ec17c6d9c145a8a9369 24-Apr-2012 Julian Kornberger <juliank@tzi.de>

Navigation, Tooltips, Pagination and Tables styled

Gemfile Gemfile.lock app/assets/javascripts/application.js app/assets/javascripts/flash.js app/assets/javascripts/ontology-state.js app/assets/javascripts/plugins/jquery.tipsy.js app/assets/javascripts/static_tabs.js app/assets/javascripts/tooltips.js app/assets/stylesheets/application.css.sass app/assets/stylesheets/components/_table.css.sass app/assets/stylesheets/dl.css.sass app/assets/stylesheets/flash_messages.css.sass app/assets/stylesheets/pagination.sass app/assets/stylesheets/plugins/tipsy.css.sass app/assets/stylesheets/session.css.sass app/assets/stylesheets/table.css.sass app/assets/stylesheets/tabs.css.sass app/helpers/flash_helper.rb app/views/kaminari/_first_page.html.haml app/views/kaminari/_gap.html.haml app/views/kaminari/_last_page.html.haml app/views/kaminari/_next_page.html.haml app/views/kaminari/_page.html.haml app/views/kaminari/_paginator.html.haml app/views/kaminari/_prev_page.html.haml app/views/ontologies/_info.html.haml app/views/ontology_versions/_ontology_version.html.haml app/views/shared/_admin_navigation.html.haml app/views/shared/_navigation.html.haml app/views/shared/_subnavigation.html.haml
41cd021461855fbb2f69960dd99e04ecbf0a9d45 16-Apr-2012 Julian Kornberger <juliank@tzi.de>

Migration to Boostrap started

e7a2e0b4b66d9d78fe9338be907d7716be1f4ca8 10-Apr-2012 Julian Kornberger <juliank@tzi.de>

Gemfile updated

3ebd0bd4993997ce7aaeaab8b3d06d1e21ca13f7 17-Mar-2012 Julian Kornberger <juliank@tzi.de>

compass updated

99a9599c4277f8788dfcf3499bd9dc1918539352 17-Mar-2012 Julian Kornberger <juliank@tzi.de>

use my fork of sunspot

0950f09b35238e8282696f3a3b7cb31017088312 17-Mar-2012 henning mueller <henning@orgizm.net>

We don't need no Barbosa..

040c1d8fca47a84f09d96ca3c21caa0a2ed91e05 17-Mar-2012 henning mueller <henning@orgizm.net>

Changes to language model and file name generation for ontologyversion download.

753291f69d3b7016c9a8caab7b08b67f6b66fce0 16-Mar-2012 Julian Kornberger <juliank@tzi.de>

bundle updated

e4efbc496f9c7ae337188776b9ba571ce89984d9 15-Mar-2012 henning mueller <henning@orgizm.net>

Desperate trial of carrierwave from git to validate file upload size correctly with passenger.

be03a075a1ce2db7ea7c0e3562290d3d6d5a0c8a 15-Mar-2012 Julian Kornberger <juliank@tzi.de>

bundle update

2a9b45dd7d8aa23908850179cde8426fbcd3ce60 15-Mar-2012 Julian Kornberger <juliank@tzi.de>

[#26337061] Entity search implemented with sunspot+solr

1d1e50759ebe381f296f9cfbec532aea24af0874 15-Mar-2012 Julian Kornberger <juliank@tzi.de>

newrelic integrated

b22864dfe9852e82d21925c04960a33234bdb521 13-Mar-2012 Julian Kornberger <juliank@tzi.de>

haml replaced by haml-rails

9c9b4f0d0199c3b1dbff564b87435b6693b7e692 13-Mar-2012 Julian Kornberger <juliank@tzi.de>

built in mocha

beee8758c15ffe2c52ee4171ccbfc5ecee2c8534 13-Mar-2012 Julian Kornberger <juliank@tzi.de>

jquery-ui-rails integrated

7b025f9d9726413eb3f50ca2b39826e7eed816fb 12-Mar-2012 Julian Kornberger <juliank@tzi.de>

CanCan integrated

a543dfe944ecddb71e09c6c156afb3e471c78d6e 12-Mar-2012 henning mueller <henning@orgizm.net>

A god to monitor resque.

7ea9649883e1bbe8f2582db1a3c66af8b7206056 12-Mar-2012 henning mueller <henning@orgizm.net>

Asynchronous parsing by hets.

3cd45197413df1ff1401697720f1ac9ccef8f8ee 10-Mar-2012 henning mueller <henning@orgizm.net>

OntologyUploader with carrierwave and OntologyVersion factory.

279dfe8d07ff651880bd08dba5a7c73a95213e5e 10-Mar-2012 Julian Kornberger <juliank@tzi.de>

strip_attributes added

251f13d5930105f1d8bbafc0b15edd13b68740fe 09-Mar-2012 Julian Kornberger <juliank@tzi.de>

#[26147381] Pagination for Ontologies, Entities, Axioms and Users

ee3a5470734fba28bc908e099cdf3a53b232c175 08-Mar-2012 Julian Kornberger <juliank@tzi.de>

more tests

08b16000bc04cebd76e75dcfc2e88231394967f8 08-Mar-2012 Julian Kornberger <juliank@tzi.de>

Written some fancy CSS styles and rewritten the devise views with formtastic.

Gemfile Gemfile.lock app/assets/javascripts/flash.js app/assets/stylesheets/_variables.css.sass app/assets/stylesheets/body.css.sass app/assets/stylesheets/buttons.sass app/assets/stylesheets/flash_messages.css.sass app/assets/stylesheets/forms.css.sass app/assets/stylesheets/header.css.sass app/assets/stylesheets/section.sass app/assets/stylesheets/session.css.sass app/views/devise/_links.html.haml app/views/devise/confirmations/new.html.haml app/views/devise/mailer/confirmation_instructions.html.haml app/views/devise/mailer/reset_password_instructions.html.haml app/views/devise/mailer/unlock_instructions.html.haml app/views/devise/passwords/edit.html.haml app/views/devise/passwords/new.html.haml app/views/devise/registrations/edit.html.haml app/views/devise/registrations/new.html.haml app/views/devise/sessions/new.html.haml app/views/devise/unlocks/new.html.haml app/views/layouts/application.html.haml app/views/shared/_header.html.haml app/views/shared/_session.html.haml config/application.rb config/initializers/formtastic.rb config/locales/en.yml
1e185b8192422bc09cb7f52f80a4c40d9b935535 07-Mar-2012 Julian Kornberger <juliank@tzi.de>

Admin::Users-Controller and Views created

0be38598001e15ea877bf3d4807e941159753df2 07-Mar-2012 Julian Kornberger <juliank@tzi.de>

Session-Views and User tests created.

0075dcb5aeeee4864fe9f64db82c8a8202bbe6d6 07-Mar-2012 henning mueller <henning@orgizm.net>

Models: Logic, Ontology, OntologyVersion

6235ff12be4a2a978e2a2a18eb41eaf62b60dee3 07-Mar-2012 henning mueller <henning@orgizm.net>

capistrano

1360ea51ce88cdc0c46a7c6fd14516837037f6bf 07-Mar-2012 Julian Kornberger <juliank@tzi.de>

Devise integrated

848ee2a2aff32bc2aa170967e43a2d768653b55f 07-Mar-2012 Julian Kornberger <juliank@tzi.de>

SAX Parser for XML including symbols implemented

9f4e199f9ae0b75c01f6a1a3dc49dd137ea16f77 06-Mar-2012 Julian Kornberger <juliank@tzi.de>

rails skeleton

.gitignore Gemfile Gemfile.lock Rakefile app/assets/images/.gitkeep app/assets/javascripts/application.js app/assets/stylesheets/application.css app/controllers/application_controller.rb app/helpers/.gitkeep app/mailers/.gitkeep app/models/.gitkeep app/views/layouts/application.html.haml config.ru config/application.rb config/boot.rb config/database.yml config/environment.rb config/environments/development.rb config/environments/production.rb config/environments/test.rb config/initializers/backtrace_silencers.rb config/initializers/inflections.rb config/initializers/mime_types.rb config/initializers/secret_token.rb config/initializers/session_store.rb config/initializers/wrap_parameters.rb config/locales/en.yml config/routes.rb db/seeds.rb doc/README_FOR_APP lib/assets/.gitkeep lib/tasks/.gitkeep public/404.html public/422.html public/500.html public/favicon.ico public/robots.txt script/rails test/functional/.gitkeep test/integration/.gitkeep test/performance/browsing_test.rb test/test_helper.rb test/unit/.gitkeep vendor/assets/javascripts/.gitkeep vendor/assets/stylesheets/.gitkeep