hyrax 3.0.0.pre.beta3 → 3.0.0.pre.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
  SHA256:
3
- metadata.gz: b731a39b621101c817e7f42e64698267274fd77331d2c121b9ac9a08260c50f1
4
- data.tar.gz: d10cebe341c9acc25e99f1c41c4114aab2e2538270683ce926a8f55112cfaeda
3
+ metadata.gz: 9f60bf7bd0b24dc4049c89ebe11ae7f4668c96b2304ab9f343eb75e58f901930
4
+ data.tar.gz: fbfba032d127f29c9aa7b1362d3a51eac3149c8e0873d1b02df90109d5d40e68
5
5
  SHA512:
6
- metadata.gz: 77dd20a9f9ded4e4d8dd1ae72b97f757a24a4a30b9a0f8ca5b2439f9d2d97e8c56685bad7aed892d48785cce0a72b9291d979f7009187a08b6578500ff357876
7
- data.tar.gz: 48addfcb3e6657c6835c9f5ac215f8fd7164573334159e564a6689cb2adadd002ecb0418d391ca990df0b41d6588be3b1def3cf2163f54477c28d5ef88ac0be1
6
+ metadata.gz: '059c9ec53cc94d1d0d4a161c100e82767be637fb0170999fef3c69adde24ec949f58c06327d46c341925da7544d418b56b4c2a8f4848203db1e3ea1fc20e4f54'
7
+ data.tar.gz: f5aa2a6b3576f3948d5702a634c2896785d216c671490ae56550ebc61c7af78feff275263c79981ddd1b120d08370b69678a26110d088554f8ad06e4a54e7bfa
data/.circleci/config.yml CHANGED
@@ -113,15 +113,31 @@ jobs:
113
113
 
114
114
  workflows:
115
115
  version: 2
116
- ruby2-5-5:
116
+ ruby2-4-7:
117
117
  jobs:
118
118
  - bundle:
119
- ruby_version: "2.5.5"
119
+ ruby_version: "2.4.7"
120
120
  rails_version: "5.2.3"
121
121
  - lint:
122
- ruby_version: "2.5.5"
122
+ ruby_version: "2.4.7"
123
123
  requires:
124
124
  - bundle
125
+ - build:
126
+ ruby_version: "2.4.7"
127
+ rails_version: "5.2.3"
128
+ requires:
129
+ - bundle
130
+ - test:
131
+ name: "ruby2-4-7"
132
+ ruby_version: "2.4.7"
133
+ requires:
134
+ - build
135
+ - lint
136
+ ruby2-5-5:
137
+ jobs:
138
+ - bundle:
139
+ ruby_version: "2.5.5"
140
+ rails_version: "5.2.3"
125
141
  - build:
126
142
  ruby_version: "2.5.5"
127
143
  rails_version: "5.2.3"
@@ -132,7 +148,6 @@ workflows:
132
148
  ruby_version: "2.5.5"
133
149
  requires:
134
150
  - build
135
- - lint
136
151
  ruby2-6-2:
137
152
  jobs:
138
153
  - bundle:
data/README.md CHANGED
@@ -64,7 +64,7 @@ The Samvera community is here to help. Please see our [support guide](./.github/
64
64
  # Getting started
65
65
 
66
66
  This document contains instructions specific to setting up an app with __Hyrax
67
- v3.0.0-beta3__. If you are looking for instructions on installing a different
67
+ v3.0.0-rc1__. If you are looking for instructions on installing a different
68
68
  version, be sure to select the appropriate branch or tag from the drop-down
69
69
  menu above.
70
70
 
@@ -159,7 +159,7 @@ NOTE: The steps need to be done in order to create a new Hyrax based app.
159
159
  Generate a new Rails application using the template.
160
160
 
161
161
  ```
162
- rails _5.2.3_ new my_app -m https://raw.githubusercontent.com/samvera/hyrax/v3.0.0.pre.beta3/template.rb
162
+ rails _5.2.3_ new my_app -m https://raw.githubusercontent.com/samvera/hyrax/v3.0.0.pre.rc1/template.rb
163
163
  ```
164
164
 
165
165
  Generating a new Rails application using Hyrax's template above takes cares of a number of steps for you, including:
data/hyrax.gemspec CHANGED
@@ -24,7 +24,7 @@ SUMMARY
24
24
  spec.version = Hyrax::VERSION
25
25
  spec.license = 'Apache-2.0'
26
26
 
27
- spec.required_ruby_version = '>= 2.3'
27
+ spec.required_ruby_version = '>= 2.4'
28
28
 
29
29
  # Note: rails does not follow sem-ver conventions, it's
30
30
  # minor version releases can include breaking changes; see
data/lib/hyrax/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Hyrax
2
- VERSION = '3.0.0-beta3'.freeze
2
+ VERSION = '3.0.0-rc1'.freeze
3
3
  end
data/template.rb CHANGED
@@ -1,6 +1,6 @@
1
1
  # Hack for https://github.com/rails/rails/issues/35153
2
2
  gsub_file 'Gemfile', /^gem ["']sqlite3["']$/, 'gem "sqlite3", "~> 1.3.0"'
3
- gem 'hyrax', '3.0.0-beta3'
3
+ gem 'hyrax', '3.0.0-rc1'
4
4
  run 'bundle install'
5
5
  generate 'hyrax:install', '-f'
6
6
  rails_command 'db:migrate'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hyrax
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0.pre.beta3
4
+ version: 3.0.0.pre.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Justin Coyne
@@ -14,7 +14,7 @@ authors:
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
- date: 2019-09-10 00:00:00.000000000 Z
17
+ date: 2019-09-12 00:00:00.000000000 Z
18
18
  dependencies:
19
19
  - !ruby/object:Gem::Dependency
20
20
  name: rails
@@ -3212,7 +3212,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
3212
3212
  requirements:
3213
3213
  - - ">="
3214
3214
  - !ruby/object:Gem::Version
3215
- version: '2.3'
3215
+ version: '2.4'
3216
3216
  required_rubygems_version: !ruby/object:Gem::Requirement
3217
3217
  requirements:
3218
3218
  - - ">"