hydra 6.2.0 → 7.0.0.rc1

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: dca5799096f3b249d3855d97f983d82d3682f000
4
- data.tar.gz: e0679fded2bc13b82b274bc955ec42c6529f95c6
3
+ metadata.gz: c68891c5ada06cc1a3c2a3fbb6a82fde59da0ea6
4
+ data.tar.gz: 7c0b8b9ea62a7efe231f3b65d97eea4551195771
5
5
  SHA512:
6
- metadata.gz: 99e85a8b24e88e1e5d4c5862d09bdea440e642d333b55178919591fb019ea050032a93b5a201f801db386064fef28c0ee04998fd15e6e221d3b277a14c183135
7
- data.tar.gz: a2355c729901bd625b5f477d9fc61ddd19e1fa7464d908ddc7b6b37dbe9bc3bc60b4d5acd5285438f1069553f64b5436ae5cdae815b2f5c1e6735ecb2005b5c8
6
+ metadata.gz: 9baebc2136f07907f1d2672a363174a4bd3bb54909cea84d2bf56b489d780f0fb042a47721e5465fb5a78ecce0833139f6d0acda32cfa2ba7b0c5e114887a1ee
7
+ data.tar.gz: 97648dcf5b096a131426d104bab43fe44a20e4079e32fd0cf9c8c49b4d3695d78c3d9bbceeec6132efdf06069a4abbe04374dd511b6eff55ed67c8139f1a135c
data/CONTRIBUTORS.md CHANGED
@@ -1,8 +1,16 @@
1
1
  Contributors to this project:
2
2
 
3
+ * Adam Wead
3
4
  * Andrew Myers
5
+ * Brian Maddy
6
+ * Chris Beer
7
+ * David Chandek-Stark
4
8
  * Jeremy Friesen
5
9
  * Jessie Keck
10
+ * Jon Stroop
6
11
  * Justin Coyne
7
12
  * Mark Bussey
13
+ * Michael B. Klein
14
+ * Michael J. Giarlo
15
+ * Tom Cramer
8
16
 
data/README.md CHANGED
@@ -17,7 +17,6 @@ Additionally, versions are locked to the following transitive dependencies, as t
17
17
 
18
18
  ## Code Status
19
19
  [![Gem Version](https://badge.fury.io/rb/hydra.png)](http://badge.fury.io/rb/hydra)
20
- [![Build Status](https://travis-ci.org/projecthydra/hydra-head.png?branch=master)](https://travis-ci.org/projecthydrahydra/hydra-head)
21
20
 
22
21
  ## For Developers
23
22
 
data/RELEASE-POLICY.md CHANGED
@@ -46,19 +46,18 @@ repositories, so you can treat them like any other.
46
46
  1. Copy the wiki pages to `docs/` directory of `hydra` project.
47
47
 
48
48
  ```
49
- cp -a path/to/hydra.wiki/* path/to/hydra/docs/
49
+ cp -a path/to/hydra.wiki/* path/to/hydra/doc/
50
50
  ```
51
51
 
52
52
  1. Commit the changes.
53
53
 
54
54
  ```
55
55
  cd path/to/hydra
56
- git add docs/.
56
+ git add doc/.
57
57
  git commit -m "Updates the wiki docs"
58
58
  ```
59
59
 
60
60
  This commit should then be included as part of the pull request for the new
61
61
  release. See ["Making Changes"](/CONTRIBUTING.md#making-changes) and
62
62
  ["Submitting Changes"](/CONTRIBUTING.md#submitting-changes) on the preferred
63
- way to submit pull requests.
64
- properly.
63
+ way to submit pull requests.
@@ -12,7 +12,7 @@ The tutorial also mentions using [Ruby Version Manager](http://rvm.io), a.k.a RV
12
12
  # System Requirements
13
13
  Your system should have the following installed before beginning the walkthrough
14
14
  + [ruby](http://www.ruby-lang.org/en/) 1.9.3 or 2.0.0
15
- + [rails](http://rubyonrails.org/) ~>3.2.13 or ~>4.0.0
15
+ + [rails](http://rubyonrails.org/) ~>3.2.15 or ~>4.0.0
16
16
  + [git](http://git-scm.com/)
17
17
  + [java](http://www.java.com/en/) runtime >= 6.0
18
18
 
data/doc/Home.md CHANGED
@@ -24,7 +24,7 @@ This wiki is targeted towards developers who are implementing Hydra Heads. The [
24
24
  - [[Configuring Solr and Fedora]]
25
25
  - [Deployment Hardware](https://wiki.duraspace.org/display/hydra/Deployment+Hardware+Information)
26
26
  - [[Migration Notes]]
27
-
27
+ - [[Hydra Recipes]] - short how-to articles
28
28
 
29
29
  ### Reference for Hydra Contributors/Committers
30
30
 
@@ -0,0 +1 @@
1
+ [[Use HTTP POST for Solr requests]] - This may be necessary if Hydra's Solr requests, due to access control conditions, become too long for the default HTTP GET method.
@@ -1,4 +1,4 @@
1
- This lesson is known to work with hydra version 6.1.0.
1
+ This lesson is known to work with hydra version 6.2.0.
2
2
  _Please update this wiki to reflect any other versions that have been tested._
3
3
 
4
4
  # Goals
@@ -16,15 +16,15 @@ The syntax for declaring relationships between ActiveFedora models is the same s
16
16
 
17
17
  Next we're going to add a Page model. We'll start by creating another simple metadata datastream. This time open ```app/models/datastreams/page_metadata.rb``` and add this content:
18
18
  ```ruby
19
- class PageMetadata < ActiveFedora::OmDatastream
20
-
19
+ class Datastreams::PageMetadata < ActiveFedora::OmDatastream
20
+
21
21
  set_terminology do |t|
22
22
  t.root(path: "fields")
23
23
  t.number index_as: :stored_searchable, type: :integer
24
24
  t.text index_as: :stored_searchable
25
-
25
+
26
26
  end
27
-
27
+
28
28
  def self.xml_template
29
29
  Nokogiri::XML.parse("<fields/>")
30
30
  end
@@ -38,13 +38,13 @@ Then we'll build a Page model that uses the datastream. Open ```app/models/page.
38
38
 
39
39
  ```ruby
40
40
  class Page < ActiveFedora::Base
41
- has_metadata 'descMetadata', type: PageMetadata
42
-
41
+ has_metadata 'descMetadata', type: Datastreams::PageMetadata
42
+
43
43
  belongs_to :book, :property=> :is_part_of
44
-
44
+
45
45
  has_attributes :number, datastream: 'descMetadata', multiple: false
46
46
  has_attributes :text, datastream: 'descMetadata', multiple: false
47
-
47
+
48
48
  end
49
49
  ```
50
50
 
@@ -1,4 +1,4 @@
1
- This Tutorial is known to work with hydra version 6.1.0.
1
+ This Tutorial is known to work with hydra version 6.1.0, 6.2.0.
2
2
  _Please update this wiki to reflect any other versions that have been tested._
3
3
 
4
4
  # Goals
@@ -24,7 +24,7 @@ Tell the generator to build scaffolding for the Book model and make it assume bo
24
24
  rails generate scaffold Book title:string author:string
25
25
  ```
26
26
 
27
- When it asks you whether to overwrite `app/models/book.rb`, enter `n` and hit enter.
27
+ When it asks you whether to overwrite `app/models/book.rb`, enter `n` and hit enter.
28
28
 
29
29
  Depending on the specific version of rails you are running the generator creates a few things that we don't want in the `test` and `db` directories. Delete them with the `git clean` command.
30
30
 
@@ -40,22 +40,37 @@ Removing test/unit/book_test.rb
40
40
  Removing test/unit/helpers/
41
41
  ```
42
42
 
43
- ### Step 2: Commit your work
43
+ ### Step 2: Run the server & Explore
44
44
 
45
- ```text
46
- git add .
47
- git commit -m "Ran scaffold generator"
45
+ Run the `rails server` and visit [[http://localhost:3000/books]]
46
+
47
+ If you see 'uninitialized constant Book::BookMetadata' you'll need to edit `app/models/datastreams/book_metadata.rb`
48
+
49
+ Replace the first line BookMetadata with Datastreams::BookMetadata:
50
+
51
+ ```ruby
52
+ class Datastreams::BookMetadata < ActiveFedora::OmDatastream
48
53
  ```
49
54
 
50
- ### Step 3: Run the server & Explore
55
+ You will also need to edit `app/models/book.rb`
51
56
 
52
- Run the `rails server` and visit [[http://localhost:3000/books]]
57
+ Again, replace BookMetadata with Datastreams::BookMetadata:
53
58
 
59
+ ```ruby
60
+ has_metadata 'descMetadata', type: Datastreams::BookMetadata
61
+ ```
54
62
  Explore the pages for creating, editing and showing Books.
55
63
 
64
+ ### Step 3: Commit your work
65
+
66
+ ```text
67
+ git add .
68
+ git commit -m "Ran scaffold generator"
69
+ ```
70
+
56
71
  ### Step 4: Make the Display view show Authors as a multi-valued field
57
72
 
58
- Open `app/models/book.rb` and edit the unique setting to be 'false':
73
+ Open `app/models/book.rb` and edit the multiple setting to be 'true':
59
74
 
60
75
  ```ruby
61
76
  has_attributes :author, datastream: 'descMetadata', multiple: true
@@ -1,4 +1,4 @@
1
- This lesson is known to work with hydra (gem) version 6.1.0.
1
+ This lesson is known to work with hydra (gem) version 6.1.0, 6.2.0.
2
2
  _Please update this wiki to reflect any other versions that have been tested._
3
3
 
4
4
  # Goals
@@ -14,7 +14,7 @@ In order to take advantage of the Hydra code and features in your application, y
14
14
  Open up ```Gemfile``` in your editor. We're going to add the following lines:
15
15
 
16
16
  ```ruby
17
- gem 'hydra', require: 'hydra6'
17
+ gem 'hydra'
18
18
  ```
19
19
 
20
20
  This declares our application to have a dependency on the hydra6 release version of the hydra-gem and ensures that the hydra-head gem gets included (required) correctly. This includes a dependency for the jettywrapper gem (installed automatically). The jettywrapper gem is used to install and configure a preconfigured instance of jetty that loads and runs local development instances of Fedora and Solr for you to run and test your application against.
@@ -1,4 +1,4 @@
1
- This lesson is known to work with hydra version 6.1.0.
1
+ This lesson is known to work with hydra version 6.1.0, 6.2.0.
2
2
  _Please update this wiki to reflect any other versions that have been tested._
3
3
 
4
4
  # Goals
@@ -1,4 +1,4 @@
1
- This lesson is known to work with hydra release version 6.1.0.
1
+ This lesson is known to work with hydra release version 6.1.0, 6.2.0.
2
2
  _Please update this wiki to reflect any other versions that have been tested._
3
3
 
4
4
  # Goals
@@ -1,6 +1,3 @@
1
- This lesson is known to work with hydra (gem) version 6.1.0.
2
- _Please update this wiki to reflect any other versions that have been tested._
3
-
4
1
  Note: This lesson is basically equivalent to the [Create A New Git Repo](http://curriculum.railsbridge.org/curriculum/create_a_new_git_repo) step in the RailsBridge Curriculum.
5
2
 
6
3
  # Goals
@@ -1,6 +1,3 @@
1
- This lesson is known to work with hydra (gem) version 6.1.0.
2
- _Please update this wiki to reflect any other versions that have been tested._
3
-
4
1
  # Goals
5
2
  * Create your new Ruby on Rails Application
6
3
 
@@ -1,4 +1,4 @@
1
- This lesson is known to work with hydra release version 6.1.0.
1
+ This lesson is known to work with hydra release version 6.1.0, 6.2.0.
2
2
  _Please update this wiki to reflect any other versions that have been tested._
3
3
 
4
4
  # Goals
@@ -31,7 +31,7 @@ This can be very slow (over 100Mb of download). When it's done you'll see the d
31
31
  # jetty/
32
32
  ```
33
33
 
34
- **Windows Tip**: Currently this rake task doesn't work on Windows (see [jettywrapper issue #14](https://github.com/projecthydra/jettywrapper/issues/14) for status). Workaround: Download https://github.com/projecthydra/hydra-jetty/archive/new-solr-schema.zip, unpack it, and move the unpacked 'jetty' directory to the root of your application.
34
+ **Windows Tip**: Currently this rake task doesn't work on Windows (see [jettywrapper issue #14](https://github.com/projecthydra/jettywrapper/issues/14) for status). Workaround: Download https://github.com/projecthydra/hydra-jetty/archive/v7.0.0.zip, unpack it, and move the unpacked 'jetty' directory to the root of your application.
35
35
 
36
36
  ### Step 2: Make git ignore the jetty directory
37
37
 
@@ -1,4 +1,4 @@
1
- This lesson is known to work with hydra version 6.1.0.
1
+ This lesson is known to work with hydra version 6.1.0, 6.2.0.
2
2
  _Please update this wiki to reflect any other versions that have been tested._
3
3
 
4
4
  # Goals
@@ -1,4 +1,4 @@
1
- This lesson is known to work with hydra version 6.1.0.
1
+ This lesson is known to work with hydra version 6.1.0, 6.2.0.
2
2
  _Please update this wiki to reflect any other versions that have been tested._
3
3
 
4
4
  # Goals
@@ -1,4 +1,4 @@
1
- This Tutorial is known to work with hydra version 6.1.0.
1
+ This Tutorial is known to work with hydra version 6.1.0, 6.2.0.
2
2
  _Please update this wiki to reflect any other versions that have been tested._
3
3
 
4
4
  # Goals
@@ -34,7 +34,7 @@ rails generate rspec:install
34
34
 
35
35
  ```text
36
36
  git add .
37
- git commit -m"added rspec"
37
+ git commit -m "added rspec"
38
38
  ```
39
39
 
40
40
  # Next Steps
@@ -1,4 +1,4 @@
1
- This lesson is known to work with hydra release version 6.1.0.
1
+ This lesson is known to work with hydra release version 6.1.0, 6.2.0.
2
2
  _Please update this wiki to reflect any other versions that have been tested._
3
3
 
4
4
  # Goals
@@ -34,7 +34,7 @@ hydra-jetty has a fair amount of stuff in it, so it may take up to a minute to s
34
34
 
35
35
  If Fedora, Solr, or jetty itself are not starting, you'll want to look at the jettywrapper log to diagnose.
36
36
 
37
- **Windows Tip:* This rake task is not currently working on Windows (see [jettywrapper issue #13](https://github.com/projecthydra/jettywrapper/issues/13) for status). In the meantime, start jetty manually
37
+ **Windows Tip:** This rake task is not currently working on Windows (see [jettywrapper issue #13](https://github.com/projecthydra/jettywrapper/issues/13) for status). In the meantime, start jetty manually
38
38
  ```
39
39
  cd jetty
40
40
  java -Djetty.port=8983 -Dsolr.solr.home=/Users/justin/hydra-demo/jetty/solr -Xmx256m -XX:MaxPermSize=128m -jar start.jar
@@ -1,4 +1,4 @@
1
- This lesson is known to work with hydra version 6.1.0.
1
+ This lesson is known to work with hydra version 6.1.0, 6.2.0.
2
2
  _Please update this wiki to reflect any other versions that have been tested._
3
3
 
4
4
  # Goals
@@ -0,0 +1,17 @@
1
+ Requires: Blacklight 4.6.3 or higher
2
+
3
+ To use HTTP POST in a specific controller (e.g., CatalogController):
4
+
5
+ ```ruby
6
+ configure_blacklight do |config|
7
+ config.http_method = :post
8
+ end
9
+ ```
10
+
11
+ To set HTTP POST as the *default* (i.e, for all instances of `Blacklight::Configuration`) add the following to a Rails initializer (or similar mechanism):
12
+
13
+ ```ruby
14
+ Blacklight::Configuration.default_values[:http_method] = :post
15
+ ```
16
+
17
+ NOTE: This solution does *not* change the behavior of `ActiveFedora::SolrService`.
data/hydra.gemspec CHANGED
@@ -23,14 +23,14 @@ Gem::Specification.new do |gem|
23
23
  gem.require_paths = ["lib"]
24
24
  gem.license = 'APACHE2'
25
25
 
26
- gem.add_dependency 'hydra-head', '~> 6.5.0'
27
- gem.add_dependency 'jettywrapper', '~> 1.5.0'
28
- gem.add_dependency 'active-fedora', '~> 6.7.7'
26
+ gem.add_dependency 'hydra-head', '~> 7.0.1'
27
+ gem.add_dependency 'jettywrapper', '~> 1.7.0'
28
+ gem.add_dependency 'active-fedora', '~> 7.0.2'
29
29
  gem.add_dependency 'rails', '>= 3.2.15', '< 5.0'
30
- gem.add_dependency 'om', '~> 3.0.3'
31
- gem.add_dependency 'solrizer', '~> 3.1.0'
32
- gem.add_dependency 'rsolr', '~> 1.0.9'
33
- gem.add_dependency 'blacklight', '~> 4.7.0'
30
+ gem.add_dependency 'om', '~> 3.0.4'
31
+ gem.add_dependency 'solrizer', '~> 3.1.1'
32
+ gem.add_dependency 'rsolr', '~> 1.0.10'
33
+ gem.add_dependency 'blacklight', '~> 5.3.0'
34
34
  gem.add_dependency 'nokogiri', '~> 1.6.0'
35
35
  gem.add_dependency 'rubydora', '~> 1.7.4'
36
36
  gem.add_dependency 'nom-xml', '~> 0.5.1'
data/lib/hydra/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Hydra
2
- VERSION = "6.2.0"
2
+ VERSION = "7.0.0.rc1"
3
3
  end
@@ -4,10 +4,12 @@ RUBYGEM_NAMES = [
4
4
  'active-fedora',
5
5
  'active_fedora-registered_attributes',
6
6
  'active_fedora_relsint',
7
+ 'browse-everything',
7
8
  'fcrepo_admin',
8
9
  'hydra',
9
10
  'hydra-access-controls',
10
11
  'hydra-batch-edit',
12
+ 'hydra-collections',
11
13
  'hydra-core',
12
14
  'hydra-derivatives',
13
15
  'hydra-editor',
@@ -41,6 +43,7 @@ HYDRA_COMMITTER_EMAILS = [
41
43
  "jeremy.n.friesen@gmail.com",
42
44
  "jessie.keck@gmail.com",
43
45
  "jim.coble@duke.edu",
46
+ "jpstroop@gmail.com",
44
47
  "justin@curationexperts.com",
45
48
  "leftwing@alumni.rutgers.edu",
46
49
  "matt@curationexperts.com",
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: 6.2.0
4
+ version: 7.0.0.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Friesen
@@ -9,180 +9,180 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-03-31 00:00:00.000000000 Z
12
+ date: 2014-04-30 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: hydra-head
16
16
  requirement: !ruby/object:Gem::Requirement
17
17
  requirements:
18
- - - ~>
18
+ - - "~>"
19
19
  - !ruby/object:Gem::Version
20
- version: 6.5.0
20
+ version: 7.0.1
21
21
  type: :runtime
22
22
  prerelease: false
23
23
  version_requirements: !ruby/object:Gem::Requirement
24
24
  requirements:
25
- - - ~>
25
+ - - "~>"
26
26
  - !ruby/object:Gem::Version
27
- version: 6.5.0
27
+ version: 7.0.1
28
28
  - !ruby/object:Gem::Dependency
29
29
  name: jettywrapper
30
30
  requirement: !ruby/object:Gem::Requirement
31
31
  requirements:
32
- - - ~>
32
+ - - "~>"
33
33
  - !ruby/object:Gem::Version
34
- version: 1.5.0
34
+ version: 1.7.0
35
35
  type: :runtime
36
36
  prerelease: false
37
37
  version_requirements: !ruby/object:Gem::Requirement
38
38
  requirements:
39
- - - ~>
39
+ - - "~>"
40
40
  - !ruby/object:Gem::Version
41
- version: 1.5.0
41
+ version: 1.7.0
42
42
  - !ruby/object:Gem::Dependency
43
43
  name: active-fedora
44
44
  requirement: !ruby/object:Gem::Requirement
45
45
  requirements:
46
- - - ~>
46
+ - - "~>"
47
47
  - !ruby/object:Gem::Version
48
- version: 6.7.7
48
+ version: 7.0.2
49
49
  type: :runtime
50
50
  prerelease: false
51
51
  version_requirements: !ruby/object:Gem::Requirement
52
52
  requirements:
53
- - - ~>
53
+ - - "~>"
54
54
  - !ruby/object:Gem::Version
55
- version: 6.7.7
55
+ version: 7.0.2
56
56
  - !ruby/object:Gem::Dependency
57
57
  name: rails
58
58
  requirement: !ruby/object:Gem::Requirement
59
59
  requirements:
60
- - - '>='
60
+ - - ">="
61
61
  - !ruby/object:Gem::Version
62
62
  version: 3.2.15
63
- - - <
63
+ - - "<"
64
64
  - !ruby/object:Gem::Version
65
65
  version: '5.0'
66
66
  type: :runtime
67
67
  prerelease: false
68
68
  version_requirements: !ruby/object:Gem::Requirement
69
69
  requirements:
70
- - - '>='
70
+ - - ">="
71
71
  - !ruby/object:Gem::Version
72
72
  version: 3.2.15
73
- - - <
73
+ - - "<"
74
74
  - !ruby/object:Gem::Version
75
75
  version: '5.0'
76
76
  - !ruby/object:Gem::Dependency
77
77
  name: om
78
78
  requirement: !ruby/object:Gem::Requirement
79
79
  requirements:
80
- - - ~>
80
+ - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 3.0.3
82
+ version: 3.0.4
83
83
  type: :runtime
84
84
  prerelease: false
85
85
  version_requirements: !ruby/object:Gem::Requirement
86
86
  requirements:
87
- - - ~>
87
+ - - "~>"
88
88
  - !ruby/object:Gem::Version
89
- version: 3.0.3
89
+ version: 3.0.4
90
90
  - !ruby/object:Gem::Dependency
91
91
  name: solrizer
92
92
  requirement: !ruby/object:Gem::Requirement
93
93
  requirements:
94
- - - ~>
94
+ - - "~>"
95
95
  - !ruby/object:Gem::Version
96
- version: 3.1.0
96
+ version: 3.1.1
97
97
  type: :runtime
98
98
  prerelease: false
99
99
  version_requirements: !ruby/object:Gem::Requirement
100
100
  requirements:
101
- - - ~>
101
+ - - "~>"
102
102
  - !ruby/object:Gem::Version
103
- version: 3.1.0
103
+ version: 3.1.1
104
104
  - !ruby/object:Gem::Dependency
105
105
  name: rsolr
106
106
  requirement: !ruby/object:Gem::Requirement
107
107
  requirements:
108
- - - ~>
108
+ - - "~>"
109
109
  - !ruby/object:Gem::Version
110
- version: 1.0.9
110
+ version: 1.0.10
111
111
  type: :runtime
112
112
  prerelease: false
113
113
  version_requirements: !ruby/object:Gem::Requirement
114
114
  requirements:
115
- - - ~>
115
+ - - "~>"
116
116
  - !ruby/object:Gem::Version
117
- version: 1.0.9
117
+ version: 1.0.10
118
118
  - !ruby/object:Gem::Dependency
119
119
  name: blacklight
120
120
  requirement: !ruby/object:Gem::Requirement
121
121
  requirements:
122
- - - ~>
122
+ - - "~>"
123
123
  - !ruby/object:Gem::Version
124
- version: 4.7.0
124
+ version: 5.3.0
125
125
  type: :runtime
126
126
  prerelease: false
127
127
  version_requirements: !ruby/object:Gem::Requirement
128
128
  requirements:
129
- - - ~>
129
+ - - "~>"
130
130
  - !ruby/object:Gem::Version
131
- version: 4.7.0
131
+ version: 5.3.0
132
132
  - !ruby/object:Gem::Dependency
133
133
  name: nokogiri
134
134
  requirement: !ruby/object:Gem::Requirement
135
135
  requirements:
136
- - - ~>
136
+ - - "~>"
137
137
  - !ruby/object:Gem::Version
138
138
  version: 1.6.0
139
139
  type: :runtime
140
140
  prerelease: false
141
141
  version_requirements: !ruby/object:Gem::Requirement
142
142
  requirements:
143
- - - ~>
143
+ - - "~>"
144
144
  - !ruby/object:Gem::Version
145
145
  version: 1.6.0
146
146
  - !ruby/object:Gem::Dependency
147
147
  name: rubydora
148
148
  requirement: !ruby/object:Gem::Requirement
149
149
  requirements:
150
- - - ~>
150
+ - - "~>"
151
151
  - !ruby/object:Gem::Version
152
152
  version: 1.7.4
153
153
  type: :runtime
154
154
  prerelease: false
155
155
  version_requirements: !ruby/object:Gem::Requirement
156
156
  requirements:
157
- - - ~>
157
+ - - "~>"
158
158
  - !ruby/object:Gem::Version
159
159
  version: 1.7.4
160
160
  - !ruby/object:Gem::Dependency
161
161
  name: nom-xml
162
162
  requirement: !ruby/object:Gem::Requirement
163
163
  requirements:
164
- - - ~>
164
+ - - "~>"
165
165
  - !ruby/object:Gem::Version
166
166
  version: 0.5.1
167
167
  type: :runtime
168
168
  prerelease: false
169
169
  version_requirements: !ruby/object:Gem::Requirement
170
170
  requirements:
171
- - - ~>
171
+ - - "~>"
172
172
  - !ruby/object:Gem::Version
173
173
  version: 0.5.1
174
174
  - !ruby/object:Gem::Dependency
175
175
  name: github_api
176
176
  requirement: !ruby/object:Gem::Requirement
177
177
  requirements:
178
- - - ~>
178
+ - - "~>"
179
179
  - !ruby/object:Gem::Version
180
180
  version: 0.10.1
181
181
  type: :development
182
182
  prerelease: false
183
183
  version_requirements: !ruby/object:Gem::Requirement
184
184
  requirements:
185
- - - ~>
185
+ - - "~>"
186
186
  - !ruby/object:Gem::Version
187
187
  version: 0.10.1
188
188
  description: Project Hydra Stack Dependencies
@@ -193,8 +193,8 @@ executables: []
193
193
  extensions: []
194
194
  extra_rdoc_files: []
195
195
  files:
196
- - .gitignore
197
- - .mailmap
196
+ - ".gitignore"
197
+ - ".mailmap"
198
198
  - CONTRIBUTING.md
199
199
  - CONTRIBUTORS.md
200
200
  - Gemfile
@@ -208,6 +208,7 @@ files:
208
208
  - doc/Filtering-search-results-with-hydra-access-controls.md
209
209
  - doc/For-Developers.md
210
210
  - doc/Home.md
211
+ - doc/Hydra-Recipes.md
211
212
  - doc/Lesson:-Define-Relationships-Between-Objects.md
212
213
  - doc/Lesson:-Generate-Rails-Scaffolding-for-Creating-and-Editing-Books.md
213
214
  - doc/Lesson:-Reading-Hydra-rightsMetadata-XML.md
@@ -232,12 +233,12 @@ files:
232
233
  - doc/Reference.textile
233
234
  - doc/Solr-Schema.rdoc
234
235
  - doc/Tools-for-Developing-and-Testing-your-Application.textile
236
+ - doc/Use-HTTP-POST-for-Solr-requests.md
235
237
  - doc/YOUR-Hydra-Application---Initial-Modifications.textile
236
238
  - hydra.gemspec
237
239
  - lib/generators/hydra/install_generator.rb
238
240
  - lib/hydra.rb
239
241
  - lib/hydra/version.rb
240
- - lib/hydra6.rb
241
242
  - script/changelog.sh
242
243
  - script/contributors.sh
243
244
  - script/grant_revoke_gem_authority.rb
@@ -254,14 +255,14 @@ require_paths:
254
255
  - lib
255
256
  required_ruby_version: !ruby/object:Gem::Requirement
256
257
  requirements:
257
- - - '>='
258
+ - - ">="
258
259
  - !ruby/object:Gem::Version
259
260
  version: '0'
260
261
  required_rubygems_version: !ruby/object:Gem::Requirement
261
262
  requirements:
262
- - - '>='
263
+ - - ">"
263
264
  - !ruby/object:Gem::Version
264
- version: '0'
265
+ version: 1.3.1
265
266
  requirements: []
266
267
  rubyforge_project:
267
268
  rubygems_version: 2.2.2
data/lib/hydra6.rb DELETED
@@ -1,2 +0,0 @@
1
- $stderr.puts "There is no need to have `:require =>\"hydra6\"' in you Gemfile any longer"
2
- require "hydra"