locabulary 0.1.6 → 0.1.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7632b865a9740b714e628d59c6a2d390617c2b9e
4
- data.tar.gz: 1e5d7f02c21ea168edcca0d9a9307ad438929a71
3
+ metadata.gz: a6fb207738449f68d719c732ec175174e341ed2c
4
+ data.tar.gz: 9d11cc28581509623b355b1cd9f0b60ed1eedd4e
5
5
  SHA512:
6
- metadata.gz: 548e1a199ba83126720b1f855c1c179f5dc08afe1d6235d4f7ffef433909e9b29b8f5f501448fef529a8c13671ff73095074942df0a7b9699d122c9b66671539
7
- data.tar.gz: 0ea450a796bc9c99e6701fb7658745bdb2943fb580d2823a9e35482b2af54db7382bdbdfb647d55360e48fd7fd8298af3c8ad0a5b068d47f7c657547047baf38
6
+ metadata.gz: a9ee1e4c92e5430ef93ce212c7c19a0240b5d83768a3f4a81ee876d0a748ea6d16f5a6c366d74c9be90dc95131f167126dbc94d25d8aeac78c46c7c699c15ac4
7
+ data.tar.gz: 9f0489ba2df7bf3ffa93899c4f6d00a2f9baa6bb28fc1dc9218b85483eb3bf38827f8379bd945fdeb1692de6b17255ac659a2d17563df27bbbafcb339b57b716
@@ -1,26 +1,42 @@
1
1
  [
2
2
  {
3
3
  "predicate_name": "award_category",
4
- "term_label": "10000 Level Papers",
4
+ "term_label": "10000 Level",
5
5
  "term_uri": null,
6
- "default_presentation_sequence": null,
6
+ "default_presentation_sequence": 10,
7
7
  "activated_on": "2015-01-01",
8
8
  "deactivated_on": null
9
9
  },
10
10
  {
11
11
  "predicate_name": "award_category",
12
- "term_label": "20004000 Level Papers",
12
+ "term_label": "2000040000 Level",
13
13
  "term_uri": null,
14
- "default_presentation_sequence": null,
14
+ "default_presentation_sequence": 20,
15
15
  "activated_on": "2015-01-01",
16
16
  "deactivated_on": null
17
17
  },
18
18
  {
19
19
  "predicate_name": "award_category",
20
- "term_label": "Senior/Honors Thesis",
20
+ "term_label": "Senior Thesis",
21
21
  "term_uri": null,
22
- "default_presentation_sequence": null,
22
+ "default_presentation_sequence": 50,
23
+ "activated_on": "2015-01-01",
24
+ "deactivated_on": null
25
+ },
26
+ {
27
+ "predicate_name": "award_category",
28
+ "term_label": "Honors Thesis",
29
+ "term_uri": null,
30
+ "default_presentation_sequence": 40,
31
+ "activated_on": "2015-01-01",
32
+ "deactivated_on": null
33
+ },
34
+ {
35
+ "predicate_name": "award_category",
36
+ "term_label": "Capstone Project",
37
+ "term_uri": null,
38
+ "default_presentation_sequence": 30,
23
39
  "activated_on": "2015-01-01",
24
40
  "deactivated_on": null
25
41
  }
26
- ]
42
+ ]
@@ -0,0 +1,31 @@
1
+ [
2
+ {
3
+ "predicate_name": "underclass_level",
4
+ "term_label": "First Year",
5
+ "term_uri": null,
6
+ "default_presentation_sequence": 1,
7
+ "activated_on": "2015-01-01",
8
+ "deactivated_on": null
9
+ },{
10
+ "predicate_name": "underclass_level",
11
+ "term_label": "Sophomore",
12
+ "term_uri": null,
13
+ "default_presentation_sequence": 2,
14
+ "activated_on": "2015-01-01",
15
+ "deactivated_on": null
16
+ },{
17
+ "predicate_name": "underclass_level",
18
+ "term_label": "Junior",
19
+ "term_uri": null,
20
+ "default_presentation_sequence": 3,
21
+ "activated_on": "2015-01-01",
22
+ "deactivated_on": null
23
+ },{
24
+ "predicate_name": "underclass_level",
25
+ "term_label": "5th Year",
26
+ "term_uri": null,
27
+ "default_presentation_sequence": 5,
28
+ "activated_on": "2015-01-01",
29
+ "deactivated_on": null
30
+ }
31
+ ]
data/lib/locabulary.rb CHANGED
@@ -3,7 +3,7 @@ require 'json'
3
3
 
4
4
  # @since 0.1.0
5
5
  module Locabulary
6
- VERSION='0.1.6'.freeze
6
+ VERSION='0.1.7'.freeze
7
7
  DATA_DIRECTORY = File.expand_path("../../data/", __FILE__).freeze
8
8
 
9
9
  class RuntimeError < ::RuntimeError
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: locabulary
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.6
4
+ version: 0.1.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jeremy Friesen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2015-12-14 00:00:00.000000000 Z
11
+ date: 2016-01-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -120,6 +120,7 @@ files:
120
120
  - data/organization.json
121
121
  - data/program_name.json
122
122
  - data/resource_consulted.json
123
+ - data/underclass_level.json
123
124
  - data/work_patent_strategy.json
124
125
  - data/work_publication_strategy.json
125
126
  - lib/locabulary.rb