meibo 0.8.0 → 0.9.0

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
  SHA256:
3
- metadata.gz: b342bc5a71980840d6d1b16fd577bffee878f5634d62d99c82aae88cd42859c3
4
- data.tar.gz: c0c3797d09a169ecf009eea37bbb5307e5b94a2114bc7968ea10111c590a7d13
3
+ metadata.gz: 0ae56245ed5c00c8542a7d497a8180a1c6966b3d3591e8a84c244eacbcde28a3
4
+ data.tar.gz: a53953525d4b043bf49328bbc63194e17fd56064a69b2271d0b5842143ec0b72
5
5
  SHA512:
6
- metadata.gz: d7f337dc13a4066e864d0a82c3645bacf75119a9bf3f3c32ae4a7842e20ddd59b7eee0c4bcbdfc2dc9938f709a13d41d177a012ac9a750766ae6882fde542229
7
- data.tar.gz: d60c367c23060d54e98a205281fb7b419d59eb7a8768b49f3fe7474396bb0485564352092fd40a4f2971192be48441db9b8fc2bb42d9a5bc2e80abc03544f5a7
6
+ metadata.gz: 71944143746b3134ffc1eafe8a7f3a867a649cdfdd1eb183d49bb01bbe21862b953d996db5f611b9f0f3f661ca3fc07e3d21227c089e292e7d7e76d5758d1eff
7
+ data.tar.gz: da22ce6f5136370a0085eb2ef6409689ae2fe32fb67d292ba80c9051bbfd5f9d0b99176b6a74592eb92d25724260e33b9e0238e857eb86838aef3180ffbcd93e
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- meibo (0.8.0)
4
+ meibo (0.9.0)
5
5
  rubyzip
6
6
  zeitwerk
7
7
 
@@ -19,5 +19,9 @@ FactoryBot.define do
19
19
  end_date { Date.new(school_year + 1, 3, 31).iso8601 }
20
20
  parent_sourced_id { parent&.sourced_id }
21
21
  school_year { today.year }
22
+
23
+ trait :jp do
24
+ initialize_with { Meibo::JapanProfile::AcademicSession.new(**attributes) }
25
+ end
22
26
  end
23
27
  end
@@ -19,10 +19,17 @@ FactoryBot.define do
19
19
  class_type { Meibo::Classroom::TYPES[:homeroom] }
20
20
  school_sourced_id { school&.sourced_id }
21
21
  term_sourced_ids { terms.map(&:sourced_id) }
22
- special_needs { false }
22
+
23
+ trait :jp do
24
+ initialize_with { Meibo::JapanProfile::Classroom.new(**attributes) }
25
+ end
23
26
 
24
27
  trait :special_needs do
25
28
  special_needs { true }
26
29
  end
30
+
31
+ trait :no_special_needs do
32
+ special_needs { false }
33
+ end
27
34
  end
28
35
  end
@@ -17,5 +17,9 @@ FactoryBot.define do
17
17
  title { "#{school_year&.title}ホームルーム" }
18
18
  course_code { '' }
19
19
  org_sourced_id { organization&.sourced_id }
20
+
21
+ trait :jp do
22
+ initialize_with { Meibo::JapanProfile::Course.new(**attributes) }
23
+ end
20
24
  end
21
25
  end
@@ -12,5 +12,9 @@ FactoryBot.define do
12
12
  end
13
13
 
14
14
  sourced_id { user&.sourced_id || SecureRandom.uuid }
15
+
16
+ trait :jp do
17
+ initialize_with { Meibo::JapanProfile::Demographic.new(**attributes) }
18
+ end
15
19
  end
16
20
  end
@@ -33,5 +33,17 @@ FactoryBot.define do
33
33
  trait :guardian do
34
34
  role { Meibo::Enrollment::ROLES[:guardian] }
35
35
  end
36
+
37
+ trait :jp do
38
+ initialize_with { Meibo::JapanProfile::Classroom.new(**attributes) }
39
+ end
40
+
41
+ trait :public do
42
+ public_flg { true }
43
+ end
44
+
45
+ trait :private do
46
+ public_flg { false }
47
+ end
36
48
  end
37
49
  end
@@ -43,5 +43,9 @@ FactoryBot.define do
43
43
  sequence(:name) {|n| "第#{n}小学校" }
44
44
  school_type { 'B1' }
45
45
  end
46
+
47
+ trait :jp do
48
+ initialize_with { Meibo::JapanProfile::Organization.new(**attributes) }
49
+ end
46
50
  end
47
51
  end
@@ -37,5 +37,9 @@ FactoryBot.define do
37
37
  trait :guardian do
38
38
  role { Meibo::Role::ROLES[:guardian] }
39
39
  end
40
+
41
+ trait :jp do
42
+ initialize_with { Meibo::JapanProfile::Role.new(**attributes) }
43
+ end
40
44
  end
41
45
  end
@@ -18,13 +18,15 @@ FactoryBot.define do
18
18
  sequence(:family_name) {|n| "Doe#{n}" }
19
19
  agent_sourced_ids { agents&.map(&:sourced_id) }
20
20
  primary_org_sourced_id { primary_organization&.sourced_id }
21
- end
22
21
 
23
- factory :meibo_jp_user, class: 'Meibo::JapanProfile::User', parent: :meibo_user do
24
- transient do
25
- homeroom { nil }
26
- end
22
+ trait :jp do
23
+ initialize_with { Meibo::JapanProfile::User.new(**attributes) }
27
24
 
28
- home_class { homeroom&.sourced_id }
25
+ transient do
26
+ homeroom { nil }
27
+ end
28
+
29
+ home_class { homeroom&.sourced_id }
30
+ end
29
31
  end
30
32
  end
@@ -17,5 +17,9 @@ FactoryBot.define do
17
17
  vendor_id { 'meibo' }
18
18
  credential_type { 'plain' }
19
19
  sequence(:username) {|n| "user#{n}"}
20
+
21
+ trait :jp do
22
+ initialize_with { Meibo::JapanProfile::UserProfile.new(**attributes) }
23
+ end
20
24
  end
21
25
  end
data/lib/meibo/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Meibo
4
- VERSION = "0.8.0"
4
+ VERSION = "0.9.0"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meibo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Seiei Miyagi
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-11-07 00:00:00.000000000 Z
11
+ date: 2022-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubyzip
@@ -125,7 +125,7 @@ metadata:
125
125
  allowed_push_host: https://rubygems.org/
126
126
  homepage_uri: https://github.com/hanachin/meibo
127
127
  source_code_uri: https://github.com/hanachin/meibo
128
- changelog_uri: https://github.com/hanachin/meibo/blob/meibo/v0.8.0/CHANGELOG.md
128
+ changelog_uri: https://github.com/hanachin/meibo/blob/meibo/v0.9.0/CHANGELOG.md
129
129
  post_install_message:
130
130
  rdoc_options: []
131
131
  require_paths: