hydra 9.1.0.rc5 → 9.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 73b8f30616d7447908f1d1a61bed284cad187b70
4
- data.tar.gz: a0b2cf68b57cc0dc0490ba70cbe28a3114e59b2b
3
+ metadata.gz: 765d32b113dd652f40498f7a91b627ee92b59d0f
4
+ data.tar.gz: 0cb6f730aabf5e4b2d3de79b39b8c70dfd2adea5
5
5
  SHA512:
6
- metadata.gz: f43eb534768081b240d56a672ba7d4bfe9f94fc61be7166be250f527cd5b680c8e1a68a045c462c1e88d4d19c602e74bb41177371ca38f197c4d4ca3722d5bb9
7
- data.tar.gz: 8fe8999e0b435c1af73727a9ce8781cef8039e355294951defef9c62469c972db007102be16630b704d4e8925e2e7c710ebbfb8637eb3d3f1e799109331b583b
6
+ metadata.gz: 79d75438f3b5ca5185b7d67a8cbd57b6878956ae80349a738f3b6b453ef2293fa86fae6c995afdb0ebc6c2b6019de0becb8db7cc04ef04386339683230081a05
7
+ data.tar.gz: 9138df55434db609954b4633da4f554db44f6896f637f7dd8a15916057a6788f288ec7e72b601b1b30531e3841b99296ad8f178bee323c470b8a6fe57ad6a8af
@@ -82,7 +82,9 @@ You should also add yourself to the `CONTRIBUTORS.md` file in the root of the pr
82
82
 
83
83
  class PostsController
84
84
  def index
85
- respond_with Post.limit(10)
85
+ respond_to do |wants|
86
+ wants.html { render 'index' }
87
+ end
86
88
  end
87
89
  end
88
90
 
@@ -102,7 +104,7 @@ You should also add yourself to the `CONTRIBUTORS.md` file in the root of the pr
102
104
  * `git pull --rebase`
103
105
  * `git checkout <your-branch>`
104
106
  * `git rebase master`
105
- * It is likely a good idea to run your tests again.
107
+ * It is a good idea to run your tests again.
106
108
  * If you've made more than one commit take a moment to consider whether squashing commits together would help improve their logical grouping.
107
109
  * [Detailed Walkthrough of One Pull Request per Commit](http://ndlib.github.io/practices/one-commit-per-pull-request/)
108
110
  * `git rebase --interactive HEAD~<number-of-commits>` ([See Github help](https://help.github.com/articles/interactive-rebase))
@@ -123,9 +125,6 @@ You should also add yourself to the `CONTRIBUTORS.md` file in the root of the pr
123
125
  * If you are uncertain, bring other contributors into the conversation by creating a comment that includes their @username.
124
126
  * If you like the pull request, but want others to chime in, create a +1 comment and tag a user.
125
127
 
126
- ## New Developers
127
- A great way to get new developers involved and to learn the process is to have them go through the Hierarchy of Promises and create a pull request to improve it.
128
-
129
128
  # Additional Resources
130
129
 
131
130
  * [General GitHub documentation](http://help.github.com/)
data/README.md CHANGED
@@ -1,14 +1,16 @@
1
1
  # Hydra
2
2
  This gem provides a distribution-like snapshot of all dependencies within the core Hydra technology stack. The components of the stack are as follows:
3
3
 
4
- * [rubydora](https://github.com/projecthydra/rubydora) - a REST client for Fedora Commons Repository
4
+ * [ldp](https://github.com/projecthydra/ldp) - Linked Data Platform client library for Ruby
5
5
  * [solrizer](https://github.com/projecthydra/solrizer) - translates indexing directives into Solr field names
6
6
  * [om](https://github.com/projecthydra/om) - a library for defining templates for xml metadata formats
7
7
  * [nom-xml](https://github.com/cbeer/nom-xml) - an alternative to om
8
8
  * [active-fedora](https://github.com/projecthydra/active_fedora) - a Ruby gem for creating and managing objects in Fedora and Solr
9
+ * [active-triples](https://github.com/ActiveTriples/ActiveTriples) - a Ruby gem that provides an ActiveFedora-like interface for RDF data.
9
10
  * [blacklight](https://github.com/projectblacklight/blacklight) - web front end for Solr document discovery (search)
10
11
  * [hydra-head](https://github.com/projecthydra/hydra-head) - integration between Blacklight and ActiveFedora. Provides access controls and gated searching.
11
- * [jettywrapper](https://github.com/projecthydra/jettywrapper) - Utilities for starting up a jetty server with Solr and Fedora useful in development and testing.
12
+ * [Fcrepo Wrapper](https://github.com/cbeer/fcrepo_wrapper) - Utility for wrapping tasks with a Fedora instance, for use in development and testing. Replaces role of [hydra-jetty](https://github.com/projecthydra/hydra-jetty)
13
+ * [Solr Wrapper](https://github.com/cbeer/solr_wrapper) - Utility for wrapping tasks with a Solr instance, for use in development and testing. Replaces role of [hydra-jetty](https://github.com/projecthydra/hydra-jetty)
12
14
 
13
15
  Additionally, versions are locked to the following transitive dependencies, as they are critial to the stack:
14
16
  * [Nokogiri](http://nokogiri.org/)
@@ -1,3 +1,3 @@
1
1
  module Hydra
2
- VERSION = "9.1.0.rc5".freeze
2
+ VERSION = "9.1.0".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hydra
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.1.0.rc5
4
+ version: 9.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Friesen
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2016-02-15 00:00:00.000000000 Z
12
+ date: 2016-02-22 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: fcrepo_wrapper
@@ -279,12 +279,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
279
279
  version: '0'
280
280
  required_rubygems_version: !ruby/object:Gem::Requirement
281
281
  requirements:
282
- - - ">"
282
+ - - ">="
283
283
  - !ruby/object:Gem::Version
284
- version: 1.3.1
284
+ version: '0'
285
285
  requirements: []
286
286
  rubyforge_project:
287
- rubygems_version: 2.4.5.1
287
+ rubygems_version: 2.5.1
288
288
  signing_key:
289
289
  specification_version: 4
290
290
  summary: Project Hydra Stack Dependencies