fera-api 0.1.0 → 0.1.1

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: 83807e83ab901ad55674c52bad255fbdd28f3b836d3f0f0cec9e6d89706c7b9a
4
- data.tar.gz: 95ef78772948857fa52d558e2fe41d40d733ebaf98c9758ecb51629526108ef9
3
+ metadata.gz: e29c0c0d0d005fc442519426dfbdf44d7f79188251f2b077a06b98b62d8108b7
4
+ data.tar.gz: 1cbf38f201a769c0f2148363034ab1d91affc2bcffc5778413eb2651276410fc
5
5
  SHA512:
6
- metadata.gz: c3c2d2272a78519eec6fe20f44a34604cbd52de17147f9c1fcd258534e0a852e40be5b454bcfe4c960c818341ceda9083bbd41af0af4e1b74cddc61fc1a4296a
7
- data.tar.gz: d678db7fd72623971f81da4d6a7ce6be13ce46dc486ba061f233008b8cb115360a54dc05bc169b4de3d8f9b20eac1b2106e8833b9d91f624e3b43ab343c5df9d
6
+ metadata.gz: 02f31cc04ea2d869ba3e8531146a1c515469e9ca9178302bc699f43473bb75970a7d0ac92ad98293f298681edac44b546def1cfbd620d68cc05169997c60d31c
7
+ data.tar.gz: 4f3d7ea4e03bccbf0b30da1aa8fa2640de2b8b1fb3486f49b54683f5c291139e25e4350bbd6219a9f3d76630f14054dc1a924405ca4f8a978729524fca5461dc
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- fera-api (0.1.0)
4
+ fera-api (0.1.1)
5
5
  activemodel (>= 4)
6
6
  activeresource (>= 6)
7
7
  activesupport (>= 5.0)
@@ -11,8 +11,8 @@ PATH
11
11
  GEM
12
12
  remote: https://rubygems.org/
13
13
  specs:
14
- activemodel (6.1.6)
15
- activesupport (= 6.1.6)
14
+ activemodel (6.1.6.1)
15
+ activesupport (= 6.1.6.1)
16
16
  activemodel-serializers-xml (1.0.2)
17
17
  activemodel (> 5.x)
18
18
  activesupport (> 5.x)
@@ -21,7 +21,7 @@ GEM
21
21
  activemodel (>= 6.0)
22
22
  activemodel-serializers-xml (~> 1.0)
23
23
  activesupport (>= 6.0)
24
- activesupport (6.1.6)
24
+ activesupport (6.1.6.1)
25
25
  concurrent-ruby (~> 1.0, >= 1.0.2)
26
26
  i18n (>= 1.6, < 2)
27
27
  minitest (>= 5.1)
@@ -33,13 +33,13 @@ GEM
33
33
  builder (3.2.4)
34
34
  concurrent-ruby (1.1.10)
35
35
  diff-lcs (1.5.0)
36
- i18n (1.10.0)
36
+ i18n (1.12.0)
37
37
  concurrent-ruby (~> 1.0)
38
- json-jwt (1.13.0)
38
+ json-jwt (1.14.0)
39
39
  activesupport (>= 4.2)
40
40
  aes_key_wrap
41
41
  bindata
42
- minitest (5.16.0)
42
+ minitest (5.16.2)
43
43
  parallel (1.22.1)
44
44
  parser (3.1.2.0)
45
45
  ast (~> 2.4.1)
@@ -73,10 +73,10 @@ GEM
73
73
  rubocop-ast (1.17.0)
74
74
  parser (>= 3.1.1.0)
75
75
  ruby-progressbar (1.11.0)
76
- tzinfo (2.0.4)
76
+ tzinfo (2.0.5)
77
77
  concurrent-ruby (~> 1.0)
78
78
  unicode-display_width (2.1.0)
79
- zeitwerk (2.5.4)
79
+ zeitwerk (2.6.0)
80
80
 
81
81
  PLATFORMS
82
82
  x86_64-darwin-18
data/README.md CHANGED
@@ -1,4 +1,6 @@
1
- # Introduction
1
+ [![Checks](https://github.com/feracommerce/fera-api-ruby/actions/workflows/checks.yml/badge.svg)](https://github.com/feracommerce/fera-api-ruby/actions/workflows/checks.yml)
2
+
3
+ # Fera API Ruby Client
2
4
 
3
5
  Welcome to the Fera API gem for Ruby. This gem is Fera's official Ruby SDK and make it easy to interact with the Fera API.
4
6
 
@@ -9,7 +11,7 @@ Fera API Developer Docs and API Reference can be found at: [https://developers.f
9
11
  Install the gem and add to the application's Gemfile by executing:
10
12
 
11
13
  ```ruby
12
- gem 'fera', '~> 0.1'
14
+ gem 'fera-api'
13
15
  ```
14
16
 
15
17
  # Configuration
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Fera
4
4
  module API
5
- VERSION = "0.1.0"
5
+ VERSION = "0.1.1"
6
6
  end
7
7
  end
@@ -33,7 +33,7 @@ module Fera
33
33
  elsif superclass != Object && superclass.headers
34
34
  superclass.headers
35
35
  else
36
- _headers ||= {}
36
+ _headers ||= {} # rubocop:disable Lint/UnderscorePrefixedVariableName
37
37
  end
38
38
  end
39
39
 
@@ -108,7 +108,7 @@ module Fera
108
108
 
109
109
  super(dynamic_attributes, persisted)
110
110
 
111
- association_keys.each do |name, opts|
111
+ association_keys.each do |name, _opts|
112
112
  if attributes.key?(name.to_s) || attributes.key?(name.to_sym)
113
113
  val = attributes.to_h[name.to_s] || attributes.to_h[name.to_sym]
114
114
  self.send("#{ name }=", val) if respond_to?("#{ name }=")
@@ -135,18 +135,24 @@ module Fera
135
135
  end
136
136
 
137
137
  def created_at=(new_created_at)
138
- return super(Time.parse(new_created_at)) if new_created_at.is_a?(String)
139
- super
138
+ if new_created_at.is_a?(String)
139
+ super(Time.parse(new_created_at))
140
+ else
141
+ super
142
+ end
140
143
  end
141
144
 
142
145
  def updated_at=(new_updated_at)
143
- return super(Time.parse(new_updated_at)) if new_updated_at.is_a?(String)
144
- super
146
+ if new_updated_at.is_a?(String)
147
+ super(Time.parse(new_updated_at))
148
+ else
149
+ super
150
+ end
145
151
  end
146
152
 
147
153
  def update(changed_attributes, extra_params = {}, raise = false)
148
154
  run_callbacks(:update) do
149
- connection.put(element_path(prefix_options, extra_params), dynamic_changed_attributes.to_json, self.class.headers).tap do |response|
155
+ connection.put(element_path(prefix_options, extra_params), changed_attributes.to_json, self.class.headers).tap do |response|
150
156
  load_attributes_from_response(response)
151
157
  end
152
158
 
@@ -168,7 +174,7 @@ module Fera
168
174
  update(changed_attributes, extra_params, true)
169
175
  end
170
176
 
171
- def valid?(context = nil)
177
+ def valid?(_context = nil)
172
178
  super()
173
179
  end
174
180
 
@@ -178,7 +184,7 @@ module Fera
178
184
  run_callbacks :create do
179
185
 
180
186
  data = as_json
181
- (self.class.belongs_tos.merge(self.class.has_ones)).each do |name, opts|
187
+ (self.class.belongs_tos.merge(self.class.has_ones)).each do |name, _opts|
182
188
  next unless instance_variable_defined?(:"@#{ name }")
183
189
  nested_resource = self.send(name)
184
190
  if nested_resource.present? && !nested_resource.persisted?
@@ -187,7 +193,7 @@ module Fera
187
193
  end
188
194
  end
189
195
 
190
- self.class.has_manys.each do |name, opts|
196
+ self.class.has_manys.each do |name, _opts|
191
197
  next unless instance_variable_defined?(:"@#{ name }")
192
198
  nested_resource = self.send(name)
193
199
 
@@ -5,7 +5,7 @@ module Fera
5
5
  attr_reader :result_count, :total_count, :page, :total_pages, :page_size, :offset, :limit
6
6
 
7
7
  def initialize(parsed = {})
8
- @elements = parsed['data']
8
+ super(parsed['data'])
9
9
  @result_count = parsed['result_count']
10
10
  @total_count = parsed['total_count']
11
11
 
@@ -32,9 +32,6 @@ module Fera
32
32
  @customer = Customer.new(customer, customer_id.present?)
33
33
  self.attributes.delete('customer')
34
34
  end
35
-
36
-
37
- @customer
38
35
  end
39
36
 
40
37
  def customer_id=(new_id)
@@ -27,11 +27,10 @@ module Fera
27
27
  self.attributes['order_id'] = order_id
28
28
  self.attributes['external_order_id'] = external_order_id
29
29
  self.attributes.delete('order')
30
- @order
31
30
  end
32
31
 
33
32
  def order_id=(new_id)
34
- return new_id if order_id == new_id
33
+ return if order_id == new_id
35
34
 
36
35
  if new_id.nil?
37
36
  reset_order_instance_assoc
@@ -41,7 +40,7 @@ module Fera
41
40
  end
42
41
 
43
42
  def external_order_id=(new_id)
44
- return new_id if external_order_id == new_id
43
+ return if external_order_id == new_id
45
44
 
46
45
  if new_id.nil?
47
46
  reset_order_instance_assoc
@@ -27,7 +27,6 @@ module Fera
27
27
  self.attributes['product_id'] = product_id
28
28
  self.attributes['external_product_id'] = external_product_id
29
29
  self.attributes.delete('product')
30
- @product
31
30
  end
32
31
 
33
32
  def product
@@ -21,7 +21,6 @@ module Fera
21
21
  end
22
22
  self.attributes['review_id'] = review_id
23
23
  self.attributes.delete('review')
24
- @review
25
24
  end
26
25
 
27
26
  def review
@@ -21,7 +21,6 @@ module Fera
21
21
  end
22
22
  self.attributes['submission_id'] = submission_id
23
23
  self.attributes.delete('submission')
24
- @submission
25
24
  end
26
25
 
27
26
  def submission
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fera-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fera Commerce Inc
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-07-28 00:00:00.000000000 Z
11
+ date: 2022-07-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activeresource
@@ -102,10 +102,6 @@ executables: []
102
102
  extensions: []
103
103
  extra_rdoc_files: []
104
104
  files:
105
- - ".idea/fera-api.iml"
106
- - ".idea/modules.xml"
107
- - ".idea/vcs.xml"
108
- - ".idea/workspace.xml"
109
105
  - ".rspec"
110
106
  - ".rubocop.yml"
111
107
  - Gemfile
data/.idea/fera-api.iml DELETED
@@ -1,86 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <module type="RUBY_MODULE" version="4">
3
- <component name="ModuleRunConfigurationManager">
4
- <shared />
5
- </component>
6
- <component name="NewModuleRootManager">
7
- <content url="file://$MODULE_DIR$">
8
- <sourceFolder url="file://$MODULE_DIR$/features" isTestSource="true" />
9
- <sourceFolder url="file://$MODULE_DIR$/spec" isTestSource="true" />
10
- <sourceFolder url="file://$MODULE_DIR$/test" isTestSource="true" />
11
- </content>
12
- <orderEntry type="jdk" jdkName="rbenv: 2.7.6" jdkType="RUBY_SDK" />
13
- <orderEntry type="sourceFolder" forTests="false" />
14
- <orderEntry type="library" scope="PROVIDED" name="activemodel (v6.1.6, rbenv: 2.7.6) [gem]" level="application" />
15
- <orderEntry type="library" scope="PROVIDED" name="activemodel-serializers-xml (v1.0.2, rbenv: 2.7.6) [gem]" level="application" />
16
- <orderEntry type="library" scope="PROVIDED" name="activeresource (v6.0.0, rbenv: 2.7.6) [gem]" level="application" />
17
- <orderEntry type="library" scope="PROVIDED" name="activesupport (v6.1.6, rbenv: 2.7.6) [gem]" level="application" />
18
- <orderEntry type="library" scope="PROVIDED" name="aes_key_wrap (v1.1.0, rbenv: 2.7.6) [gem]" level="application" />
19
- <orderEntry type="library" scope="PROVIDED" name="ast (v2.4.2, rbenv: 2.7.6) [gem]" level="application" />
20
- <orderEntry type="library" scope="PROVIDED" name="bindata (v2.4.10, rbenv: 2.7.6) [gem]" level="application" />
21
- <orderEntry type="library" scope="PROVIDED" name="builder (v3.2.4, rbenv: 2.7.6) [gem]" level="application" />
22
- <orderEntry type="library" scope="PROVIDED" name="bundler (v2.3.13, rbenv: 2.7.6) [gem]" level="application" />
23
- <orderEntry type="library" scope="PROVIDED" name="concurrent-ruby (v1.1.10, rbenv: 2.7.6) [gem]" level="application" />
24
- <orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.5.0, rbenv: 2.7.6) [gem]" level="application" />
25
- <orderEntry type="library" scope="PROVIDED" name="i18n (v1.10.0, rbenv: 2.7.6) [gem]" level="application" />
26
- <orderEntry type="library" scope="PROVIDED" name="json-jwt (v1.13.0, rbenv: 2.7.6) [gem]" level="application" />
27
- <orderEntry type="library" scope="PROVIDED" name="minitest (v5.16.0, rbenv: 2.7.6) [gem]" level="application" />
28
- <orderEntry type="library" scope="PROVIDED" name="parallel (v1.22.1, rbenv: 2.7.6) [gem]" level="application" />
29
- <orderEntry type="library" scope="PROVIDED" name="parser (v3.1.2.0, rbenv: 2.7.6) [gem]" level="application" />
30
- <orderEntry type="library" scope="PROVIDED" name="rainbow (v3.1.1, rbenv: 2.7.6) [gem]" level="application" />
31
- <orderEntry type="library" scope="PROVIDED" name="rake (v13.0.6, rbenv: 2.7.6) [gem]" level="application" />
32
- <orderEntry type="library" scope="PROVIDED" name="regexp_parser (v2.4.0, rbenv: 2.7.6) [gem]" level="application" />
33
- <orderEntry type="library" scope="PROVIDED" name="require_all (v3.0.0, rbenv: 2.7.6) [gem]" level="application" />
34
- <orderEntry type="library" scope="PROVIDED" name="rexml (v3.2.5, rbenv: 2.7.6) [gem]" level="application" />
35
- <orderEntry type="library" scope="PROVIDED" name="rspec (v3.11.0, rbenv: 2.7.6) [gem]" level="application" />
36
- <orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.11.0, rbenv: 2.7.6) [gem]" level="application" />
37
- <orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.11.0, rbenv: 2.7.6) [gem]" level="application" />
38
- <orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.11.1, rbenv: 2.7.6) [gem]" level="application" />
39
- <orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.11.0, rbenv: 2.7.6) [gem]" level="application" />
40
- <orderEntry type="library" scope="PROVIDED" name="rubocop (v1.29.0, rbenv: 2.7.6) [gem]" level="application" />
41
- <orderEntry type="library" scope="PROVIDED" name="rubocop-ast (v1.17.0, rbenv: 2.7.6) [gem]" level="application" />
42
- <orderEntry type="library" scope="PROVIDED" name="ruby-progressbar (v1.11.0, rbenv: 2.7.6) [gem]" level="application" />
43
- <orderEntry type="library" scope="PROVIDED" name="tzinfo (v2.0.4, rbenv: 2.7.6) [gem]" level="application" />
44
- <orderEntry type="library" scope="PROVIDED" name="unicode-display_width (v2.1.0, rbenv: 2.7.6) [gem]" level="application" />
45
- <orderEntry type="library" scope="PROVIDED" name="zeitwerk (v2.5.4, rbenv: 2.7.6) [gem]" level="application" />
46
- </component>
47
- <component name="RakeTasksCache">
48
- <option name="myRootTask">
49
- <RakeTaskImpl id="rake">
50
- <subtasks>
51
- <RakeTaskImpl description="Build fera-api-0.1.0.gem into the pkg directory" fullCommand="build" id="build" />
52
- <RakeTaskImpl id="build">
53
- <subtasks>
54
- <RakeTaskImpl description="Generate SHA512 checksum if fera-api-0.1.0.gem into the checksums directory" fullCommand="build:checksum" id="checksum" />
55
- </subtasks>
56
- </RakeTaskImpl>
57
- <RakeTaskImpl description="Remove any temporary products" fullCommand="clean" id="clean" />
58
- <RakeTaskImpl description="Remove any generated files" fullCommand="clobber" id="clobber" />
59
- <RakeTaskImpl description="Build and install fera-api-0.1.0.gem into system gems" fullCommand="install" id="install" />
60
- <RakeTaskImpl id="install">
61
- <subtasks>
62
- <RakeTaskImpl description="Build and install fera-api-0.1.0.gem into system gems without network access" fullCommand="install:local" id="local" />
63
- </subtasks>
64
- </RakeTaskImpl>
65
- <RakeTaskImpl description="Create tag v0.1.0 and build and push fera-api-0.1.0.gem to rubygems.org" fullCommand="release[remote]" id="release[remote]" />
66
- <RakeTaskImpl description="Run RuboCop" fullCommand="rubocop" id="rubocop" />
67
- <RakeTaskImpl id="rubocop">
68
- <subtasks>
69
- <RakeTaskImpl description="Auto-correct RuboCop offenses" fullCommand="rubocop:auto_correct" id="auto_correct" />
70
- </subtasks>
71
- </RakeTaskImpl>
72
- <RakeTaskImpl description="Run RSpec code examples" fullCommand="spec" id="spec" />
73
- <RakeTaskImpl description="" fullCommand="default" id="default" />
74
- <RakeTaskImpl description="" fullCommand="release" id="release" />
75
- <RakeTaskImpl id="release">
76
- <subtasks>
77
- <RakeTaskImpl description="" fullCommand="release:guard_clean" id="guard_clean" />
78
- <RakeTaskImpl description="" fullCommand="release:rubygem_push" id="rubygem_push" />
79
- <RakeTaskImpl description="" fullCommand="release:source_control_push" id="source_control_push" />
80
- </subtasks>
81
- </RakeTaskImpl>
82
- </subtasks>
83
- </RakeTaskImpl>
84
- </option>
85
- </component>
86
- </module>
data/.idea/modules.xml DELETED
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectModuleManager">
4
- <modules>
5
- <module fileurl="file://$PROJECT_DIR$/.idea/fera-api.iml" filepath="$PROJECT_DIR$/.idea/fera-api.iml" />
6
- </modules>
7
- </component>
8
- </project>
data/.idea/vcs.xml DELETED
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="VcsDirectoryMappings">
4
- <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
- </component>
6
- </project>
data/.idea/workspace.xml DELETED
@@ -1,91 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ChangeListManager">
4
- <list default="true" id="009b0e7e-780b-4a53-b5af-225beb092db6" name="Changes" comment="">
5
- <change afterPath="$PROJECT_DIR$/.github/workflows/checks.yml" afterDir="false" />
6
- <change afterPath="$PROJECT_DIR$/lib/fera/models/concerns/has_subject.rb" afterDir="false" />
7
- <change beforePath="$PROJECT_DIR$/.github/workflows/main.yml" beforeDir="false" />
8
- <change beforePath="$PROJECT_DIR$/.gitignore" beforeDir="false" afterPath="$PROJECT_DIR$/.gitignore" afterDir="false" />
9
- <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
10
- <change beforePath="$PROJECT_DIR$/.rubocop.yml" beforeDir="false" afterPath="$PROJECT_DIR$/.rubocop.yml" afterDir="false" />
11
- <change beforePath="$PROJECT_DIR$/README.md" beforeDir="false" afterPath="$PROJECT_DIR$/README.md" afterDir="false" />
12
- <change beforePath="$PROJECT_DIR$/fera-api.gemspec" beforeDir="false" afterPath="$PROJECT_DIR$/fera-api.gemspec" afterDir="false" />
13
- <change beforePath="$PROJECT_DIR$/lib/fera/api.rb" beforeDir="false" afterPath="$PROJECT_DIR$/lib/fera/api.rb" afterDir="false" />
14
- <change beforePath="$PROJECT_DIR$/lib/fera/models/base.rb" beforeDir="false" afterPath="$PROJECT_DIR$/lib/fera/models/base.rb" afterDir="false" />
15
- <change beforePath="$PROJECT_DIR$/lib/fera/models/media.rb" beforeDir="false" afterPath="$PROJECT_DIR$/lib/fera/models/media.rb" afterDir="false" />
16
- <change beforePath="$PROJECT_DIR$/lib/fera/models/product_rating.rb" beforeDir="false" />
17
- <change beforePath="$PROJECT_DIR$/lib/fera/models/rating.rb" beforeDir="false" afterPath="$PROJECT_DIR$/lib/fera/models/rating.rb" afterDir="false" />
18
- <change beforePath="$PROJECT_DIR$/lib/fera/models/review.rb" beforeDir="false" afterPath="$PROJECT_DIR$/lib/fera/models/review.rb" afterDir="false" />
19
- </list>
20
- <option name="SHOW_DIALOG" value="false" />
21
- <option name="HIGHLIGHT_CONFLICTS" value="true" />
22
- <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
23
- <option name="LAST_RESOLUTION" value="IGNORE" />
24
- </component>
25
- <component name="Git.Settings">
26
- <option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
27
- </component>
28
- <component name="MarkdownSettingsMigration">
29
- <option name="stateVersion" value="1" />
30
- </component>
31
- <component name="ProjectId" id="2CUN8QyrfMp0BzU6I2ao6g1dJ5J" />
32
- <component name="ProjectLevelVcsManager">
33
- <ConfirmationsSetting value="1" id="Add" />
34
- </component>
35
- <component name="ProjectViewState">
36
- <option name="autoscrollFromSource" value="true" />
37
- <option name="autoscrollToSource" value="true" />
38
- <option name="hideEmptyMiddlePackages" value="true" />
39
- <option name="showLibraryContents" value="true" />
40
- </component>
41
- <component name="PropertiesComponent"><![CDATA[{
42
- "keyToString": {
43
- "ASKED_SHARE_PROJECT_CONFIGURATION_FILES": "true",
44
- "RunOnceActivity.OpenProjectViewOnStart": "true",
45
- "RunOnceActivity.ShowReadmeOnStart": "true",
46
- "last_opened_file_path": "/Users/jay.el-kaake/Sites/wf/bananastand/sdks/ruby/fera-api/.github",
47
- "nodejs_package_manager_path": "npm",
48
- "ruby.rails.projectView.checked": "true"
49
- }
50
- }]]></component>
51
- <component name="RecentsManager">
52
- <key name="CopyFile.RECENT_KEYS">
53
- <recent name="$PROJECT_DIR$/.github" />
54
- <recent name="$PROJECT_DIR$/lib/fera/models/concerns" />
55
- </key>
56
- <key name="MoveFile.RECENT_KEYS">
57
- <recent name="$PROJECT_DIR$/lib/fera/models" />
58
- <recent name="$PROJECT_DIR$/lib/fera/api" />
59
- <recent name="$PROJECT_DIR$/lib/fera/models/concerns" />
60
- <recent name="$PROJECT_DIR$/lib/fera" />
61
- </key>
62
- </component>
63
- <component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
64
- <component name="SpringUtil" SPRING_PRE_LOADER_OPTION="true" RAKE_SPRING_PRE_LOADER_OPTION="true" RAILS_SPRING_PRE_LOADER_OPTION="true" />
65
- <component name="TaskManager">
66
- <task active="true" id="Default" summary="Default task">
67
- <changelist id="009b0e7e-780b-4a53-b5af-225beb092db6" name="Changes" comment="" />
68
- <created>1658853043250</created>
69
- <option name="number" value="Default" />
70
- <option name="presentableId" value="Default" />
71
- <updated>1658853043250</updated>
72
- <workItem from="1658853044517" duration="2379000" />
73
- <workItem from="1658882747177" duration="20940000" />
74
- </task>
75
- <servers />
76
- </component>
77
- <component name="TypeScriptGeneratedFilesManager">
78
- <option name="version" value="3" />
79
- </component>
80
- <component name="Vcs.Log.Tabs.Properties">
81
- <option name="TAB_STATES">
82
- <map>
83
- <entry key="MAIN">
84
- <value>
85
- <State />
86
- </value>
87
- </entry>
88
- </map>
89
- </option>
90
- </component>
91
- </project>