hydra 9.1.0.rc1 → 9.1.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CONTRIBUTING.md +23 -4
- data/README.md +1 -1
- data/hydra.gemspec +10 -10
- data/lib/generators/hydra/install_generator.rb +6 -4
- data/lib/hydra/version.rb +1 -1
- data/script/grant_revoke_gem_authority.rb +119 -62
- metadata +25 -24
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1f0ef7db5ac29816927f7c025d320d6e48baed46
|
4
|
+
data.tar.gz: 4108a9a10ac2dc8df682e38c1c9072d6b3a1a86c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3cb9547c9700c4be877811e0e3ca8eba89a19586e7c174d06d05206d587f5575dcc4d5af07da31ba7afec5ff3880da4642f705db4738e1dc944af67ac472176c
|
7
|
+
data.tar.gz: c5e88e91f867e6b92966d45401454c87d2ca0fd1def9f8ce7cf80028d3f49ae8b312121bc89207e2e45e6420ea25dd7ea5336967e51ad155cd1e5dbc67d741bf
|
data/CONTRIBUTING.md
CHANGED
@@ -16,6 +16,8 @@ You should also add yourself to the `CONTRIBUTORS.md` file in the root of the pr
|
|
16
16
|
|
17
17
|
* Reporting Issues
|
18
18
|
* Making Changes
|
19
|
+
* Documenting Code
|
20
|
+
* Committing Changes
|
19
21
|
* Submitting Changes
|
20
22
|
* Merging Changes
|
21
23
|
|
@@ -38,6 +40,26 @@ You should also add yourself to the `CONTRIBUTORS.md` file in the root of the pr
|
|
38
40
|
* Then checkout the new branch with `git checkout fix/master/my_contribution`.
|
39
41
|
* Please avoid working directly on the `master` branch.
|
40
42
|
* You may find the [hub suite of commands](https://github.com/defunkt/hub) helpful
|
43
|
+
* Make sure you have added sufficient tests and documentation for your changes.
|
44
|
+
* Test functionality with RSpec; est features / UI with Capybara.
|
45
|
+
* Run _all_ the tests to assure nothing else was accidentally broken.
|
46
|
+
|
47
|
+
### Documenting Code
|
48
|
+
|
49
|
+
* All new public methods, modules, and classes should include inline documentation in [YARD](http://yardoc.org/).
|
50
|
+
* Documentation should seek to answer the question "why does this code exist?"
|
51
|
+
* Document private / protected methods as desired.
|
52
|
+
* If you are working in a file with no prior documentation, do try to document as you gain understanding of the code.
|
53
|
+
* If you don't know exactly what a bit of code does, it is extra likely that it needs to be documented. Take a stab at it and ask for feedback in your pull request. You can use the 'blame' button on GitHub to identify the original developer of the code and @mention them in your comment.
|
54
|
+
* This work greatly increases the usability of the code base and supports the on-ramping of new committers.
|
55
|
+
* We will all be understanding of one another's time constraints in this area.
|
56
|
+
* YARD examples:
|
57
|
+
* [Hydra::Works::RemoveGenericFile](https://github.com/projecthydra-labs/hydra-works/blob/master/lib/hydra/works/services/generic_work/remove_generic_file.rb)
|
58
|
+
* [ActiveTriples::LocalName::Minter](https://github.com/ActiveTriples/active_triples-local_name/blob/master/lib/active_triples/local_name/minter.rb)
|
59
|
+
* [Getting started with YARD](http://www.rubydoc.info/gems/yard/file/docs/GettingStarted.md)
|
60
|
+
|
61
|
+
### Committing changes
|
62
|
+
|
41
63
|
* Make commits of logical units.
|
42
64
|
* Your commit should include a high level description of your work in HISTORY.textile
|
43
65
|
* Check for unnecessary whitespace with `git diff --check` before committing.
|
@@ -72,10 +94,6 @@ You should also add yourself to the `CONTRIBUTORS.md` file in the root of the pr
|
|
72
94
|
long to fit in 72 characters
|
73
95
|
```
|
74
96
|
|
75
|
-
* Make sure you have added the necessary tests for your changes.
|
76
|
-
* Run _all_ the tests to assure nothing else was accidentally broken.
|
77
|
-
* When you are ready to submit a pull request
|
78
|
-
|
79
97
|
### Submitting Changes
|
80
98
|
|
81
99
|
* Read the article ["Using Pull Requests"](https://help.github.com/articles/using-pull-requests) on GitHub.
|
@@ -99,6 +117,7 @@ You should also add yourself to the `CONTRIBUTORS.md` file in the root of the pr
|
|
99
117
|
* Please take the time to review the changes and get a sense of what is being changed. Things to consider:
|
100
118
|
* Does the commit message explain what is going on?
|
101
119
|
* Does the code changes have tests? _Not all changes need new tests, some changes are refactorings_
|
120
|
+
* Do all new methods, modules, and classes have comments? Do changed methods, modules, and classes have comments?
|
102
121
|
* Does the commit contain more than it should? Are two separate concerns being addressed in one commit?
|
103
122
|
* Did the Travis tests complete successfully?
|
104
123
|
* If you are uncertain, bring other contributors into the conversation by creating a comment that includes their @username.
|
data/README.md
CHANGED
@@ -5,7 +5,7 @@ This gem provides a distribution-like snapshot of all dependencies within the co
|
|
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
|
-
* [active-fedora](https://github.com/projecthydra/active_fedora) -
|
8
|
+
* [active-fedora](https://github.com/projecthydra/active_fedora) - a Ruby gem for creating and managing objects in Fedora and Solr
|
9
9
|
* [blacklight](https://github.com/projectblacklight/blacklight) - web front end for Solr document discovery (search)
|
10
10
|
* [hydra-head](https://github.com/projecthydra/hydra-head) - integration between Blacklight and ActiveFedora. Provides access controls and gated searching.
|
11
11
|
* [jettywrapper](https://github.com/projecthydra/jettywrapper) - Utilities for starting up a jetty server with Solr and Fedora useful in development and testing.
|
data/hydra.gemspec
CHANGED
@@ -23,17 +23,17 @@ Gem::Specification.new do |gem|
|
|
23
23
|
gem.require_paths = ["lib"]
|
24
24
|
gem.license = 'APACHE2'
|
25
25
|
|
26
|
-
gem.add_dependency '
|
27
|
-
gem.add_dependency 'active-fedora', '~> 9.
|
28
|
-
gem.add_dependency 'hydra-head', '~> 9.
|
29
|
-
gem.add_dependency 'rails', '~> 4.
|
26
|
+
gem.add_dependency 'fcrepo_wrapper', '~> 0.1.2'
|
27
|
+
gem.add_dependency 'active-fedora', '~> 9.8.0'
|
28
|
+
gem.add_dependency 'hydra-head', '~> 9.6.0'
|
29
|
+
gem.add_dependency 'rails', '~> 4.2'
|
30
30
|
gem.add_dependency 'om', '~> 3.1.0'
|
31
31
|
gem.add_dependency 'solrizer', '~> 3.3.0'
|
32
|
-
gem.add_dependency 'rsolr', '~> 1.0.
|
33
|
-
gem.add_dependency 'blacklight', '~>
|
34
|
-
gem.add_dependency 'nokogiri', '~> 1.6.
|
35
|
-
gem.add_dependency 'ldp', '~> 0.
|
36
|
-
gem.add_dependency 'active-triples', '~> 0.
|
32
|
+
gem.add_dependency 'rsolr', '~> 1.0.13'
|
33
|
+
gem.add_dependency 'blacklight', '~> 6.0.1'
|
34
|
+
gem.add_dependency 'nokogiri', '~> 1.6.7'
|
35
|
+
gem.add_dependency 'ldp', '~> 0.4.1'
|
36
|
+
gem.add_dependency 'active-triples', '~> 0.7.4'
|
37
37
|
gem.add_dependency 'nom-xml', '~> 0.5.1'
|
38
|
-
gem.add_development_dependency 'github_api', '~> 0.
|
38
|
+
gem.add_development_dependency 'github_api', '~> 0.13'
|
39
39
|
end
|
@@ -5,9 +5,11 @@ module Hydra
|
|
5
5
|
desc 'Generate a new hydra project'
|
6
6
|
|
7
7
|
def run_other_generators
|
8
|
-
|
9
|
-
|
10
|
-
|
8
|
+
Bundler.with_clean_env do
|
9
|
+
generate("blacklight:install --devise")
|
10
|
+
generate('hydra:head -f')
|
11
|
+
rake('db:migrate')
|
12
|
+
end
|
11
13
|
end
|
12
14
|
end
|
13
|
-
end
|
15
|
+
end
|
data/lib/hydra/version.rb
CHANGED
@@ -1,82 +1,139 @@
|
|
1
|
-
#
|
2
|
-
#
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
1
|
+
# 1. Get a personal access token from GitHub with the following scopes enabled:
|
2
|
+
# * public_repo
|
3
|
+
# * read:org
|
4
|
+
# * user:email
|
5
|
+
# 2. Set an ENV variable named 'GITHUB_HYDRA_TOKEN' containing your token
|
6
|
+
# 3. Then run this script:
|
7
|
+
# $ ruby ./script/grant_revoke_gem_authority.rb
|
8
|
+
#
|
9
|
+
# To also revoke ownership from users whose email addresses are not in the list:
|
10
|
+
# $ WITH_REVOKE=true ruby ./script/grant_revoke_gem_authority.rb
|
11
|
+
|
12
|
+
require 'github_api'
|
13
|
+
require 'open3'
|
14
|
+
|
15
|
+
AUTHORIZATION_TOKEN = ENV['GITHUB_HYDRA_TOKEN'] || raise("GitHub authorization token was not found in the GITHUB_HYDRA_TOKEN environment variable")
|
16
|
+
ORGANIZATION_NAMES = ['projecthydra', 'projecthydra-labs', 'projecthydra-deprecated']
|
17
|
+
# Some GitHub user instances do not have an email address defined,
|
18
|
+
# so start with the prior list of addresses (registered with Rubygems.org)
|
19
|
+
KNOWN_COMMITTER_EMAIL_ADDRESSES = {
|
20
|
+
'awead' => "amsterdamos@gmail.com",
|
21
|
+
'atz' => 'ohiocore@gmail.com',
|
22
|
+
'barmintor' => "armintor@gmail.com",
|
23
|
+
'bess' => "bess@stanford.edu",
|
24
|
+
'cam156' => "cam156@psu.edu",
|
25
|
+
'cbeer' => "chris@cbeer.info",
|
26
|
+
'cjcolvar' => "cjcolvar@indiana.edu",
|
27
|
+
'DanCoughlin' => "dan.coughlin@gmail.com",
|
28
|
+
'dchandekstark' => "dchandekstark@gmail.com",
|
29
|
+
'elrayle' => 'elrayle@hotmail.com',
|
30
|
+
'escowles' => 'escowles@ticklefish.org',
|
31
|
+
'hackmastera' => 'anna3lc@gmail.com',
|
32
|
+
'jeremyf' => "jeremy.n.friesen@gmail.com",
|
33
|
+
'jkeck' => "jessie.keck@gmail.com",
|
34
|
+
'coblej' => "jim.coble@duke.edu",
|
35
|
+
'jpstroop' => "jpstroop@gmail.com",
|
36
|
+
'jcoyne' => "justin@curationexperts.com",
|
37
|
+
'mjgiarlo' => "leftwing@alumni.rutgers.edu",
|
38
|
+
'mark-dce' => "mark@curationexperts.com",
|
39
|
+
'mbklein' => "mbklein@gmail.com",
|
40
|
+
'mkorcy' => "mkorcy@gmail.com",
|
41
|
+
'ndushay' => "ndushay@stanford.edu",
|
42
|
+
'tpendragon' => "tpendragon@princeton.edu"
|
43
|
+
}
|
44
|
+
# Some GitHub repositories are named differently from their gems
|
45
|
+
KNOWN_MISMATCHED_GEM_NAMES = {
|
46
|
+
'active_fedora' => 'active-fedora',
|
47
|
+
'fcrepo-admin' => 'fcrepo_admin',
|
48
|
+
'questioning_authority' => 'qa'
|
49
|
+
}
|
50
|
+
# GitHub repositories with matching gems that aren't from Hydra
|
51
|
+
FALSE_POSITIVES = [
|
52
|
+
'hypatia',
|
53
|
+
'rdf-vocab'
|
54
|
+
]
|
55
|
+
# Gems that do not have their own GitHub repositories
|
56
|
+
HANGERS_ON = [
|
12
57
|
'hydra-core',
|
13
|
-
'hydra-
|
14
|
-
'
|
15
|
-
'hydra-head',
|
16
|
-
'hydra-ldap',
|
17
|
-
'hydra-migrate',
|
18
|
-
'hydra-mods',
|
19
|
-
'hydra-role-management',
|
20
|
-
'hydra-file_characterization',
|
21
|
-
'jettywrapper',
|
22
|
-
'curate',
|
23
|
-
'om',
|
24
|
-
'qa',
|
25
|
-
'rubydora',
|
26
|
-
'solrizer',
|
27
|
-
'solrizer-fedora',
|
28
|
-
'sufia',
|
29
|
-
'sufia-models',
|
58
|
+
'hydra-access-controls',
|
59
|
+
'sufia-models'
|
30
60
|
]
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
"armintor@gmail.com",
|
35
|
-
"bess@stanford.edu",
|
36
|
-
"cam156@psu.edu",
|
37
|
-
"chris@cbeer.info",
|
38
|
-
"cjcolvar@indiana.edu",
|
39
|
-
"dan.coughlin@gmail.com",
|
40
|
-
"dchandekstark@gmail.com",
|
41
|
-
"edwin.shin@yourmediashelf.com",
|
42
|
-
"jeremy.n.friesen@gmail.com",
|
43
|
-
"jessie.keck@gmail.com",
|
44
|
-
"jim.coble@duke.edu",
|
45
|
-
"jpstroop@gmail.com",
|
46
|
-
"justin@curationexperts.com",
|
47
|
-
"leftwing@alumni.rutgers.edu",
|
48
|
-
"mark@curationexperts.com",
|
49
|
-
"matt@curationexperts.com",
|
50
|
-
"mbklein@gmail.com",
|
51
|
-
"mkorcy@gmail.com",
|
52
|
-
"mstrom81@gmail.com",
|
53
|
-
"ndushay@stanford.edu",
|
61
|
+
# Email addresses that are known not to be registered at rubygems.organization
|
62
|
+
SKIP_EMAILS = [
|
63
|
+
'ggeisler@gmail.com'
|
54
64
|
]
|
55
65
|
|
66
|
+
puts "(Hang in there! This script takes a couple minutes to run.)"
|
67
|
+
|
68
|
+
github = Github.new(oauth_token: AUTHORIZATION_TOKEN, auto_pagination: true)
|
69
|
+
|
70
|
+
# Get the ID of the GitHub-provided "Owners" team from the projecthydra org
|
71
|
+
# We don't currently grant gem ownership to the folks in the other two orgs
|
72
|
+
# (This just preserves the prior behavior.)
|
73
|
+
owner_team_id = github.orgs.teams.list('projecthydra').select { |team| team.name == 'Owners' }.first.id
|
74
|
+
owners = github.orgs.teams.list_members(owner_team_id)
|
75
|
+
# Start with the prior (known to work) list of email addresses
|
76
|
+
committer_map = KNOWN_COMMITTER_EMAIL_ADDRESSES.dup
|
77
|
+
owners.each do |owner|
|
78
|
+
user = github.users.get(user: owner.login)
|
79
|
+
# Move along if the user doesn't have an email addy or if there's already an entry in the map
|
80
|
+
next if !user.respond_to?(:email) || user.email.nil? || user.email.empty? || !committer_map[user.login].nil?
|
81
|
+
committer_map[user.login] = user.email
|
82
|
+
end
|
83
|
+
committer_emails = committer_map.values.sort.uniq
|
84
|
+
|
85
|
+
# Keep track of things
|
56
86
|
@errors = []
|
87
|
+
@bogus_gem_names = []
|
88
|
+
@gem_names = HANGERS_ON
|
57
89
|
|
58
|
-
def
|
59
|
-
|
60
|
-
|
90
|
+
def exists?(name)
|
91
|
+
system("gem owner #{name} > /dev/null 2>&1")
|
92
|
+
end
|
93
|
+
|
94
|
+
def replace_known_mismatch(name)
|
95
|
+
KNOWN_MISMATCHED_GEM_NAMES.fetch(name, name)
|
96
|
+
end
|
97
|
+
|
98
|
+
ORGANIZATION_NAMES.each do |org_name|
|
99
|
+
github.repos.list(org: org_name).each do |repo|
|
100
|
+
name = replace_known_mismatch(repo.name)
|
101
|
+
if exists?(name)
|
102
|
+
@gem_names << name
|
103
|
+
else
|
104
|
+
@bogus_gem_names << repo.full_name
|
105
|
+
end
|
61
106
|
end
|
62
107
|
end
|
63
108
|
|
64
|
-
|
109
|
+
def gem_owner_with_error_check(gemname, params)
|
110
|
+
Open3.popen3("gem owner #{gemname} #{params}") do |stdin, stdout, stderr, wait_thr|
|
111
|
+
stdin.close
|
112
|
+
@errors << "#{gemname} #{params}: #{stdout.read.chomp}" unless wait_thr.value.success?
|
113
|
+
end
|
114
|
+
end
|
115
|
+
|
116
|
+
@gem_names.reject { |gemname| FALSE_POSITIVES.include?(gemname) }.each do |gemname|
|
65
117
|
current_committers = `gem owner #{gemname} | grep -e ^-`.split("\n")
|
66
118
|
current_committers.collect! { |cc| cc.sub(/^.\s+/,'')}
|
67
119
|
|
68
120
|
if ENV.fetch('WITH_REVOKE', false)
|
69
|
-
committers_to_remove = current_committers -
|
70
|
-
remove_params = committers_to_remove.map {|email| "-r #{email}"}.join(' ')
|
71
|
-
|
121
|
+
committers_to_remove = current_committers - committer_emails
|
122
|
+
remove_params = committers_to_remove.map { |email| "-r #{email}" }.join(' ')
|
123
|
+
gem_owner_with_error_check(gemname, remove_params)
|
72
124
|
end
|
73
125
|
|
74
|
-
committers_to_add =
|
75
|
-
add_params = committers_to_add.map {|email| "-a #{email}"}.join(' ')
|
76
|
-
|
126
|
+
committers_to_add = committer_emails - current_committers - SKIP_EMAILS
|
127
|
+
add_params = committers_to_add.map { |email| "-a #{email}" }.join(' ')
|
128
|
+
gem_owner_with_error_check(gemname, add_params)
|
129
|
+
end
|
130
|
+
|
131
|
+
if !@bogus_gem_names.empty?
|
132
|
+
$stderr.puts("WARNING: These Hydra repositories do not have gems: #{@bogus_gem_names.join(', ')}")
|
133
|
+
$stderr.puts("\n")
|
77
134
|
end
|
78
135
|
|
79
|
-
if
|
136
|
+
if !@errors.empty?
|
80
137
|
$stderr.puts("The following errors were encountered:")
|
81
138
|
$stderr.puts(%(#{@errors.join("\n")}))
|
82
139
|
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.
|
4
|
+
version: 9.1.0.rc2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeremy Friesen
|
@@ -9,64 +9,64 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2016-02-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
|
-
name:
|
15
|
+
name: fcrepo_wrapper
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
18
|
- - "~>"
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version:
|
20
|
+
version: 0.1.2
|
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:
|
27
|
+
version: 0.1.2
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: active-fedora
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
31
31
|
requirements:
|
32
32
|
- - "~>"
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version: 9.
|
34
|
+
version: 9.8.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: 9.
|
41
|
+
version: 9.8.0
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
43
|
name: hydra-head
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
45
45
|
requirements:
|
46
46
|
- - "~>"
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version: 9.
|
48
|
+
version: 9.6.0
|
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: 9.
|
55
|
+
version: 9.6.0
|
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
|
-
version: '4.
|
62
|
+
version: '4.2'
|
63
63
|
type: :runtime
|
64
64
|
prerelease: false
|
65
65
|
version_requirements: !ruby/object:Gem::Requirement
|
66
66
|
requirements:
|
67
67
|
- - "~>"
|
68
68
|
- !ruby/object:Gem::Version
|
69
|
-
version: '4.
|
69
|
+
version: '4.2'
|
70
70
|
- !ruby/object:Gem::Dependency
|
71
71
|
name: om
|
72
72
|
requirement: !ruby/object:Gem::Requirement
|
@@ -101,70 +101,70 @@ dependencies:
|
|
101
101
|
requirements:
|
102
102
|
- - "~>"
|
103
103
|
- !ruby/object:Gem::Version
|
104
|
-
version: 1.0.
|
104
|
+
version: 1.0.13
|
105
105
|
type: :runtime
|
106
106
|
prerelease: false
|
107
107
|
version_requirements: !ruby/object:Gem::Requirement
|
108
108
|
requirements:
|
109
109
|
- - "~>"
|
110
110
|
- !ruby/object:Gem::Version
|
111
|
-
version: 1.0.
|
111
|
+
version: 1.0.13
|
112
112
|
- !ruby/object:Gem::Dependency
|
113
113
|
name: blacklight
|
114
114
|
requirement: !ruby/object:Gem::Requirement
|
115
115
|
requirements:
|
116
116
|
- - "~>"
|
117
117
|
- !ruby/object:Gem::Version
|
118
|
-
version:
|
118
|
+
version: 6.0.1
|
119
119
|
type: :runtime
|
120
120
|
prerelease: false
|
121
121
|
version_requirements: !ruby/object:Gem::Requirement
|
122
122
|
requirements:
|
123
123
|
- - "~>"
|
124
124
|
- !ruby/object:Gem::Version
|
125
|
-
version:
|
125
|
+
version: 6.0.1
|
126
126
|
- !ruby/object:Gem::Dependency
|
127
127
|
name: nokogiri
|
128
128
|
requirement: !ruby/object:Gem::Requirement
|
129
129
|
requirements:
|
130
130
|
- - "~>"
|
131
131
|
- !ruby/object:Gem::Version
|
132
|
-
version: 1.6.
|
132
|
+
version: 1.6.7
|
133
133
|
type: :runtime
|
134
134
|
prerelease: false
|
135
135
|
version_requirements: !ruby/object:Gem::Requirement
|
136
136
|
requirements:
|
137
137
|
- - "~>"
|
138
138
|
- !ruby/object:Gem::Version
|
139
|
-
version: 1.6.
|
139
|
+
version: 1.6.7
|
140
140
|
- !ruby/object:Gem::Dependency
|
141
141
|
name: ldp
|
142
142
|
requirement: !ruby/object:Gem::Requirement
|
143
143
|
requirements:
|
144
144
|
- - "~>"
|
145
145
|
- !ruby/object:Gem::Version
|
146
|
-
version: 0.
|
146
|
+
version: 0.4.1
|
147
147
|
type: :runtime
|
148
148
|
prerelease: false
|
149
149
|
version_requirements: !ruby/object:Gem::Requirement
|
150
150
|
requirements:
|
151
151
|
- - "~>"
|
152
152
|
- !ruby/object:Gem::Version
|
153
|
-
version: 0.
|
153
|
+
version: 0.4.1
|
154
154
|
- !ruby/object:Gem::Dependency
|
155
155
|
name: active-triples
|
156
156
|
requirement: !ruby/object:Gem::Requirement
|
157
157
|
requirements:
|
158
158
|
- - "~>"
|
159
159
|
- !ruby/object:Gem::Version
|
160
|
-
version: 0.
|
160
|
+
version: 0.7.4
|
161
161
|
type: :runtime
|
162
162
|
prerelease: false
|
163
163
|
version_requirements: !ruby/object:Gem::Requirement
|
164
164
|
requirements:
|
165
165
|
- - "~>"
|
166
166
|
- !ruby/object:Gem::Version
|
167
|
-
version: 0.
|
167
|
+
version: 0.7.4
|
168
168
|
- !ruby/object:Gem::Dependency
|
169
169
|
name: nom-xml
|
170
170
|
requirement: !ruby/object:Gem::Requirement
|
@@ -185,14 +185,14 @@ dependencies:
|
|
185
185
|
requirements:
|
186
186
|
- - "~>"
|
187
187
|
- !ruby/object:Gem::Version
|
188
|
-
version: 0.
|
188
|
+
version: '0.13'
|
189
189
|
type: :development
|
190
190
|
prerelease: false
|
191
191
|
version_requirements: !ruby/object:Gem::Requirement
|
192
192
|
requirements:
|
193
193
|
- - "~>"
|
194
194
|
- !ruby/object:Gem::Version
|
195
|
-
version: 0.
|
195
|
+
version: '0.13'
|
196
196
|
description: Project Hydra Stack Dependencies
|
197
197
|
email:
|
198
198
|
- jeremy.n.friesen@gmail.com
|
@@ -270,8 +270,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
270
270
|
version: 1.3.1
|
271
271
|
requirements: []
|
272
272
|
rubyforge_project:
|
273
|
-
rubygems_version: 2.
|
273
|
+
rubygems_version: 2.4.5.1
|
274
274
|
signing_key:
|
275
275
|
specification_version: 4
|
276
276
|
summary: Project Hydra Stack Dependencies
|
277
277
|
test_files: []
|
278
|
+
has_rdoc:
|