moj_tribunals_config 1.4.0 → 1.5.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: b8d4138f25d9a830b1e57e1edf3ad5cfbfc71c14
4
- data.tar.gz: 82d5d199aa8530eaf1288fa2e7e9e69522d4538a
3
+ metadata.gz: 8d7ce7e762a178f7fa766f0609f246d711094f0c
4
+ data.tar.gz: a258c9911d8b7191a79a6db889b086ee8b25a759
5
5
  SHA512:
6
- metadata.gz: 2e5b3555b5f951e090ac7864302a0970219e80d79fec6543046a3daba3a9b6d9da82e78c60c78347b91ccdcfdf5b81f142a8ee5415050d38e3f0532f43503422
7
- data.tar.gz: 42e8211147bdb0f58eb955ac104e40704a9c9d04096d53260f06d324762e1b076162d115560d4b32cf8453647d46d291f71a8e238f32e7c57d90654c6982560c
6
+ metadata.gz: 8af7f90a3aafc109ff2cac471de7095eb3435dc1a4ec536ccbf48bb3ceb58dd9861ee3d902fb3c1bd973bc1f54917e138b38d57f6912edec6d34441ee47fb376
7
+ data.tar.gz: 552eea828dd7da3aa8138d0ca0124c56ac69b1a273c26ebd84dc8d4d207b32d01ff58c882fffa8b5bb0bf671cb5908c15b743625de073e76bbb9d130434cc17d
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.4.0
1
+ 1.5.0
@@ -1,6 +1,26 @@
1
1
  tribunal:
2
2
  name: care-standards
3
3
  title: Care Standards Tribunal
4
+ form_sections:
5
+ availability:
6
+ - available_to_public
7
+ - publication_date
8
+ case_title:
9
+ - appellants
10
+ - respondents
11
+ - promulgated_on
12
+ references:
13
+ - ncn
14
+ - file_number
15
+ description:
16
+ - categories
17
+ - notes
18
+ judges:
19
+ - judges
20
+ dates:
21
+ - hearing_date
22
+ documents:
23
+ - documents
4
24
  optional_metadata:
5
25
  categories:
6
26
  text: categories
@@ -1,6 +1,27 @@
1
1
  tribunal:
2
2
  name: eat
3
3
  title: Employment Access Tribunal
4
+ form_sections:
5
+ availability:
6
+ - available_to_public
7
+ - publication_date
8
+ case_title:
9
+ - appellants
10
+ - respondents
11
+ - promulgated_on
12
+ references:
13
+ - ncn
14
+ - file_number
15
+ - appeal_number
16
+ description:
17
+ - categories
18
+ - notes
19
+ judges:
20
+ - judges
21
+ dates:
22
+ - hearing_date
23
+ documents:
24
+ - documents
4
25
  optional_metadata:
5
26
  categories:
6
27
  text: categories
@@ -1,6 +1,27 @@
1
1
  tribunal:
2
2
  name: ftt-tax
3
3
  title: Finance and Tax Tribunals
4
+ form_sections:
5
+ availability:
6
+ - available_to_public
7
+ - publication_date
8
+ case_title:
9
+ - appellants
10
+ - respondents
11
+ - promulgated_on
12
+ references:
13
+ - ncn
14
+ - file_number
15
+ - appeal_number
16
+ description:
17
+ - categories
18
+ - notes
19
+ judges:
20
+ - judges
21
+ dates:
22
+ - hearing_date
23
+ documents:
24
+ - documents
4
25
  optional_metadata:
5
26
  categories:
6
27
  text: categories
@@ -1,6 +1,29 @@
1
1
  tribunal:
2
2
  name: utiac
3
3
  title: Upper Tribunal Immigration and Asylum Chamber
4
+ form_sections:
5
+ availability:
6
+ - available_to_public
7
+ - publication_date
8
+ status:
9
+ - country_guidance
10
+ - reported
11
+ case_title:
12
+ - appellants
13
+ - respondents
14
+ - promulgated_on
15
+ references:
16
+ - ncn
17
+ - reference
18
+ description:
19
+ - country
20
+ - keywords
21
+ judges:
22
+ - judges
23
+ dates:
24
+ - hearing_date
25
+ documents:
26
+ - documents
4
27
  optional_metadata:
5
28
  reported_count:
6
29
  text: reported_count
@@ -2,16 +2,16 @@
2
2
  # DO NOT EDIT THIS FILE DIRECTLY
3
3
  # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
4
  # -*- encoding: utf-8 -*-
5
- # stub: moj_tribunals_config 1.4.0 ruby lib
5
+ # stub: moj_tribunals_config 1.5.0 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "moj_tribunals_config"
9
- s.version = "1.4.0"
9
+ s.version = "1.5.0"
10
10
 
11
11
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
12
12
  s.require_paths = ["lib"]
13
13
  s.authors = ["Al Davidson"]
14
- s.date = "2015-02-06"
14
+ s.date = "2015-02-10"
15
15
  s.description = "Used by tribunals_frontend and tribunals_api to share configuration.\n To use:\n\n 1) add \"gem 'moj_tribunals_config'\" to your Gemfile\n 2) in an initializer, add the following code:\n\n require 'moj_tribunals_config'\n\n my_config = Moj::Tribunals::ConfigLoader.new.load\n\n This will load the default config files from the gem.\n\n\n To load different files, you can provide an alternative path\n to the ConfigLoader.new method, e.g.\n\n my_config = Moj::Tribunals::ConfigLoader.new('/my/alternative/config/path').load\n\n To just load config for a specific tribunal, you can do:\n\n config_loader = Moj::Tribunals::ConfigLoader.new\n config_file = config_loader.config_file_for('utiac')\n config_loader.load_file( config_file )\n\n RailsConfig integration\n =======================\n\n If you're using the RailsConfig gem, your intializer can just do something like:\n\n files = Moj::Tribunals::ConfigLoader.new.config_files\n files.each{ |f| Settings.add_source!( f ) }\n Settings.reload!\n "
16
16
  s.email = "apdavidson@gmail.com"
17
17
  s.extra_rdoc_files = [
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: moj_tribunals_config
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Al Davidson
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-06 00:00:00.000000000 Z
11
+ date: 2015-02-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: shoulda