leap_salesforce 0.2.20 → 0.2.21
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 +4 -4
- data/.gitignore +1 -2
- data/.gitlab-ci.yml +23 -25
- data/ChangeLog +4 -0
- data/leap_salesforce.gemspec +2 -1
- data/lib/leap_salesforce/generator/soql_enums.rb +42 -24
- data/lib/leap_salesforce/soql_object.rb +1 -0
- data/lib/leap_salesforce/version.rb +1 -1
- metadata +18 -5
- data/.idea/leap-salesforce.iml +0 -96
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6acf0841e84803228e921e0e119012eb59579b7c94429be48081ae514f14cadd
|
4
|
+
data.tar.gz: 7a78d0e7fcbe4fca41982728df4c5aa3be1ee10a9f29a9ec1a7ffc3fc7e2be15
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6ee717b08825129749332f3b76870391006741d1429bfa929fb457e7f40101e53af9ad523f1c03cde9fbd0a74802284beb52511db7978cd43b98c17a8cfd0c04
|
7
|
+
data.tar.gz: f0be337595c4f16c1d4f8e1a6d11d181d7ef6aea7d223c1da5276841757f48047ee8b490bf7e6245b98006b1f0cdbd5433fd0106f42936e03dede9e449ecc05d
|
data/.gitignore
CHANGED
data/.gitlab-ci.yml
CHANGED
@@ -1,6 +1,5 @@
|
|
1
1
|
include:
|
2
2
|
- template: Code-Quality.gitlab-ci.yml
|
3
|
-
- template: Dependency-Scanning.gitlab-ci.yml
|
4
3
|
|
5
4
|
image: ruby:2.6
|
6
5
|
|
@@ -16,28 +15,6 @@ variables:
|
|
16
15
|
SERVER_KEY_PASSWORD: $SERVER_KEY_PASSWORD
|
17
16
|
LANG: 'UTF-8'
|
18
17
|
|
19
|
-
test:
|
20
|
-
stage: test
|
21
|
-
script:
|
22
|
-
# Decrypt server key
|
23
|
-
- openssl aes-256-cbc -d -md md5 -in assets/server.key.enc -out assets/server.key -k $SERVER_KEY_PASSWORD
|
24
|
-
- ls -la assets
|
25
|
-
- install_jq
|
26
|
-
- install_salesforce_cli
|
27
|
-
# Integrated test
|
28
|
-
- ruby -v
|
29
|
-
- which ruby
|
30
|
-
- gem install bundler rake
|
31
|
-
- bundle install
|
32
|
-
- sfdx force:auth:jwt:grant --clientid "$SF_CONSUMER_KEY" --jwtkeyfile assets/server.key --username "$SF_USERNAME" --setdefaultdevhubusername --setalias HubOrg
|
33
|
-
- bundle exec rake check_oauth # Check OAuth
|
34
|
-
- bundle exec rake leaps:create_soql_objects
|
35
|
-
- bundle exec rake leaps:create_enums
|
36
|
-
- bundle exec rake
|
37
|
-
artifacts:
|
38
|
-
paths:
|
39
|
-
- coverage/
|
40
|
-
|
41
18
|
pages:
|
42
19
|
stage: deploy
|
43
20
|
dependencies:
|
@@ -623,5 +600,26 @@ pages:
|
|
623
600
|
done
|
624
601
|
}
|
625
602
|
|
626
|
-
|
627
|
-
|
603
|
+
test:
|
604
|
+
stage: test
|
605
|
+
parallel: 5
|
606
|
+
script:
|
607
|
+
# Decrypt server key
|
608
|
+
- *sfdx_helpers
|
609
|
+
- openssl aes-256-cbc -d -md md5 -in assets/server.key.enc -out assets/server.key -k $SERVER_KEY_PASSWORD
|
610
|
+
- ls -la assets
|
611
|
+
- install_jq
|
612
|
+
- install_salesforce_cli
|
613
|
+
# Integrated test
|
614
|
+
- ruby -v
|
615
|
+
- which ruby
|
616
|
+
- gem install bundler rake
|
617
|
+
- bundle install
|
618
|
+
- sfdx force:auth:jwt:grant --clientid "$SF_CONSUMER_KEY" --jwtkeyfile assets/server.key --username "$SF_USERNAME" --setdefaultdevhubusername --setalias HubOrg
|
619
|
+
- bundle exec rake check_oauth # Check OAuth
|
620
|
+
- bundle exec rake leaps:create_soql_objects
|
621
|
+
- bundle exec rake leaps:create_enums
|
622
|
+
- bundle exec rspec_booster --job $CI_NODE_INDEX/$CI_NODE_TOTAL
|
623
|
+
artifacts:
|
624
|
+
paths:
|
625
|
+
- coverage/
|
data/ChangeLog
CHANGED
data/leap_salesforce.gemspec
CHANGED
@@ -29,6 +29,7 @@ It reads the Metadata from Salesforce and creates the foundation for API tests.'
|
|
29
29
|
spec.add_development_dependency 'bundler', '~> 2.0'
|
30
30
|
spec.add_development_dependency 'pry'
|
31
31
|
spec.add_development_dependency 'rspec', '~> 3.0'
|
32
|
+
spec.add_development_dependency 'semaphore_test_boosters'
|
32
33
|
spec.add_development_dependency 'topoisomerase'
|
33
34
|
spec.add_development_dependency 'yard-doctest'
|
34
35
|
spec.add_dependency 'activerecord'
|
@@ -41,6 +42,6 @@ It reads the Metadata from Salesforce and creates the foundation for API tests.'
|
|
41
42
|
spec.add_dependency 'require_all'
|
42
43
|
spec.add_dependency 'rubocop'
|
43
44
|
spec.add_dependency 'simplecov'
|
44
|
-
spec.add_dependency 'soaspec', '>= 0.3.
|
45
|
+
spec.add_dependency 'soaspec', '>= 0.3.9' # Version can send payload for :delete method
|
45
46
|
spec.add_dependency 'thor'
|
46
47
|
end
|
@@ -5,10 +5,11 @@ require_relative 'soql_objects'
|
|
5
5
|
module LeapSalesforce
|
6
6
|
# Generators for creating code
|
7
7
|
module Generator
|
8
|
-
# Creates Soql Enumerations / Picklists
|
8
|
+
# Creates Soql Enumerations / Picklists from objects in LeapSalesforce.objects_to_verify
|
9
9
|
class SoqlEnums
|
10
10
|
include Generator
|
11
11
|
|
12
|
+
# @return [String] Folder where enumeration objects are stored
|
12
13
|
ENUM_FOLDER = File.join(LeapSalesforce.lib_folder, 'metadata', 'enum').freeze
|
13
14
|
|
14
15
|
# Create Soql enumerations for all objects specified to verify
|
@@ -18,31 +19,48 @@ module LeapSalesforce
|
|
18
19
|
'Please set the list of objects you want to verify in .leap_salesforce:soql_objects ' \
|
19
20
|
'and then run task "leaps:create_soql_objects" to create objects'
|
20
21
|
end
|
22
|
+
reset_enum_folder
|
23
|
+
LeapSalesforce.objects_to_verify.each { |entity| create_picklists_for entity }
|
24
|
+
cleanup_files_created
|
25
|
+
end
|
26
|
+
|
27
|
+
# Create files for each picklist found for that entity
|
28
|
+
# @param [LeapSalesforce::SoqlData] entity An object representing an object in Salesforce
|
29
|
+
# Object inheriting from SoqlData that has picklists underneath it
|
30
|
+
def create_picklists_for(entity)
|
31
|
+
unless entity.create_enum?
|
32
|
+
puts "Skipping picklists for #{entity}"
|
33
|
+
return
|
34
|
+
end
|
35
|
+
puts "Creating picklists for #{entity}"
|
36
|
+
@entity_name = entity
|
37
|
+
picklists = entity.picklists
|
38
|
+
puts "#{picklists.count} picklists found"
|
39
|
+
picklists.each { |picklist| generate_picklist_file picklist }
|
40
|
+
end
|
21
41
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
puts "#{picklists.count} picklists found"
|
32
|
-
picklists.each do |picklist|
|
33
|
-
@picklist = picklist
|
34
|
-
@enum_name = picklist.to_class_name
|
35
|
-
picklist_name = picklist.to_key_name
|
36
|
-
values = entity.picklist_for(picklist)
|
37
|
-
@enum_values = {}
|
38
|
-
values.each do |value|
|
39
|
-
@enum_values[value.to_key_name_for(@enum_values)] = value
|
40
|
-
end
|
41
|
-
content = read_template 'picklist.rb.erb', binding
|
42
|
-
file = File.join(ENUM_FOLDER, entity.to_s.snakecase, "#{picklist_name}.rb")
|
43
|
-
generate_file file, content
|
44
|
-
end
|
42
|
+
# Generate file for a picklist from it's metadata
|
43
|
+
def generate_picklist_file(picklist)
|
44
|
+
@picklist = picklist
|
45
|
+
@enum_name = picklist.to_class_name
|
46
|
+
picklist_name = picklist.to_key_name
|
47
|
+
values = @entity_name.picklist_for(picklist)
|
48
|
+
@enum_values = {}
|
49
|
+
values.each do |value|
|
50
|
+
@enum_values[value.to_key_name_for(@enum_values)] = value
|
45
51
|
end
|
52
|
+
content = read_template 'picklist.rb.erb', binding
|
53
|
+
file = File.join(ENUM_FOLDER, @entity_name.to_s.snakecase, "#{picklist_name}.rb")
|
54
|
+
generate_file file, content
|
55
|
+
end
|
56
|
+
|
57
|
+
# Reset state of Enum folder so that enums that no longer exist do not persist
|
58
|
+
def reset_enum_folder
|
59
|
+
FileUtils.rm_rf ENUM_FOLDER
|
60
|
+
end
|
61
|
+
|
62
|
+
# Clean up files generated for all picklists
|
63
|
+
def cleanup_files_created
|
46
64
|
`rubocop -a #{ENUM_FOLDER}`
|
47
65
|
end
|
48
66
|
end
|
@@ -15,6 +15,7 @@ module LeapSalesforce
|
|
15
15
|
attr_accessor :create_enum
|
16
16
|
|
17
17
|
# Create a representation of a Soql object from a description (usually in .leap_salesforce.yml)
|
18
|
+
# @param [Hash, String]
|
18
19
|
def initialize(description)
|
19
20
|
self.description = description
|
20
21
|
interpret_description
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: leap_salesforce
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.21
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- IQA
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date: 2020-
|
12
|
+
date: 2020-02-03 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: bundler
|
@@ -53,6 +53,20 @@ dependencies:
|
|
53
53
|
- - "~>"
|
54
54
|
- !ruby/object:Gem::Version
|
55
55
|
version: '3.0'
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: semaphore_test_boosters
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0'
|
63
|
+
type: :development
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - ">="
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
56
70
|
- !ruby/object:Gem::Dependency
|
57
71
|
name: topoisomerase
|
58
72
|
requirement: !ruby/object:Gem::Requirement
|
@@ -227,14 +241,14 @@ dependencies:
|
|
227
241
|
requirements:
|
228
242
|
- - ">="
|
229
243
|
- !ruby/object:Gem::Version
|
230
|
-
version: 0.3.
|
244
|
+
version: 0.3.9
|
231
245
|
type: :runtime
|
232
246
|
prerelease: false
|
233
247
|
version_requirements: !ruby/object:Gem::Requirement
|
234
248
|
requirements:
|
235
249
|
- - ">="
|
236
250
|
- !ruby/object:Gem::Version
|
237
|
-
version: 0.3.
|
251
|
+
version: 0.3.9
|
238
252
|
- !ruby/object:Gem::Dependency
|
239
253
|
name: thor
|
240
254
|
requirement: !ruby/object:Gem::Requirement
|
@@ -264,7 +278,6 @@ files:
|
|
264
278
|
- ".gitlab-ci.yml"
|
265
279
|
- ".idea/dictionaries/iqa.xml"
|
266
280
|
- ".idea/dictionaries/samuelgarratt.xml"
|
267
|
-
- ".idea/leap-salesforce.iml"
|
268
281
|
- ".idea/markdown-exported-files.xml"
|
269
282
|
- ".idea/markdown-navigator.xml"
|
270
283
|
- ".idea/markdown-navigator/profiles_settings.xml"
|
data/.idea/leap-salesforce.iml
DELETED
@@ -1,96 +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
|
-
<excludeFolder url="file://$MODULE_DIR$/doc" />
|
9
|
-
</content>
|
10
|
-
<orderEntry type="jdk" jdkName="RVM: ruby-2.6.3" jdkType="RUBY_SDK" />
|
11
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
12
|
-
<orderEntry type="library" scope="PROVIDED" name="activemodel (v6.0.1, RVM: ruby-2.6.3) [gem]" level="application" />
|
13
|
-
<orderEntry type="library" scope="PROVIDED" name="activerecord (v6.0.1, RVM: ruby-2.6.3) [gem]" level="application" />
|
14
|
-
<orderEntry type="library" scope="PROVIDED" name="activesupport (v6.0.1, RVM: ruby-2.6.3) [gem]" level="application" />
|
15
|
-
<orderEntry type="library" scope="PROVIDED" name="addressable (v2.7.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
16
|
-
<orderEntry type="library" scope="PROVIDED" name="akami (v1.3.1, RVM: ruby-2.6.3) [gem]" level="application" />
|
17
|
-
<orderEntry type="library" scope="PROVIDED" name="ast (v2.4.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
18
|
-
<orderEntry type="library" scope="PROVIDED" name="builder (v3.2.4, RVM: ruby-2.6.3) [gem]" level="application" />
|
19
|
-
<orderEntry type="library" scope="PROVIDED" name="bundler (v2.0.2, RVM: ruby-2.6.3) [gem]" level="application" />
|
20
|
-
<orderEntry type="library" scope="PROVIDED" name="coderay (v1.1.2, RVM: ruby-2.6.3) [gem]" level="application" />
|
21
|
-
<orderEntry type="library" scope="PROVIDED" name="colorize (v0.8.1, RVM: ruby-2.6.3) [gem]" level="application" />
|
22
|
-
<orderEntry type="library" scope="PROVIDED" name="concurrent-ruby (v1.1.5, RVM: ruby-2.6.3) [gem]" level="application" />
|
23
|
-
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.3, RVM: ruby-2.6.3) [gem]" level="application" />
|
24
|
-
<orderEntry type="library" scope="PROVIDED" name="docile (v1.3.2, RVM: ruby-2.6.3) [gem]" level="application" />
|
25
|
-
<orderEntry type="library" scope="PROVIDED" name="domain_name (v0.5.20190701, RVM: ruby-2.6.3) [gem]" level="application" />
|
26
|
-
<orderEntry type="library" scope="PROVIDED" name="factory_bot (v5.1.1, RVM: ruby-2.6.3) [gem]" level="application" />
|
27
|
-
<orderEntry type="library" scope="PROVIDED" name="faker (v2.8.1, RVM: ruby-2.6.3) [gem]" level="application" />
|
28
|
-
<orderEntry type="library" scope="PROVIDED" name="gyoku (v1.3.1, RVM: ruby-2.6.3) [gem]" level="application" />
|
29
|
-
<orderEntry type="library" scope="PROVIDED" name="hashie (v4.0.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
30
|
-
<orderEntry type="library" scope="PROVIDED" name="http-accept (v1.7.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
31
|
-
<orderEntry type="library" scope="PROVIDED" name="http-cookie (v1.0.3, RVM: ruby-2.6.3) [gem]" level="application" />
|
32
|
-
<orderEntry type="library" scope="PROVIDED" name="httpi (v2.4.4, RVM: ruby-2.6.3) [gem]" level="application" />
|
33
|
-
<orderEntry type="library" scope="PROVIDED" name="humanize (v2.4.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
34
|
-
<orderEntry type="library" scope="PROVIDED" name="i18n (v1.7.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
35
|
-
<orderEntry type="library" scope="PROVIDED" name="jaro_winkler (v1.5.4, RVM: ruby-2.6.3) [gem]" level="application" />
|
36
|
-
<orderEntry type="library" scope="PROVIDED" name="json (v2.3.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
37
|
-
<orderEntry type="library" scope="PROVIDED" name="jsonpath (v1.0.5, RVM: ruby-2.6.3) [gem]" level="application" />
|
38
|
-
<orderEntry type="library" scope="PROVIDED" name="kramdown (v2.1.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
39
|
-
<orderEntry type="library" scope="PROVIDED" name="launchy (v2.4.3, RVM: ruby-2.6.3) [gem]" level="application" />
|
40
|
-
<orderEntry type="library" scope="PROVIDED" name="method_source (v0.9.2, RVM: ruby-2.6.3) [gem]" level="application" />
|
41
|
-
<orderEntry type="library" scope="PROVIDED" name="mime-types (v3.3, RVM: ruby-2.6.3) [gem]" level="application" />
|
42
|
-
<orderEntry type="library" scope="PROVIDED" name="mime-types-data (v3.2019.1009, RVM: ruby-2.6.3) [gem]" level="application" />
|
43
|
-
<orderEntry type="library" scope="PROVIDED" name="mini_portile2 (v2.4.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
44
|
-
<orderEntry type="library" scope="PROVIDED" name="minitest (v5.13.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
45
|
-
<orderEntry type="library" scope="PROVIDED" name="multi_json (v1.14.1, RVM: ruby-2.6.3) [gem]" level="application" />
|
46
|
-
<orderEntry type="library" scope="PROVIDED" name="mustermann (v1.0.3, RVM: ruby-2.6.3) [gem]" level="application" />
|
47
|
-
<orderEntry type="library" scope="PROVIDED" name="netrc (v0.11.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
48
|
-
<orderEntry type="library" scope="PROVIDED" name="nokogiri (v1.10.7, RVM: ruby-2.6.3) [gem]" level="application" />
|
49
|
-
<orderEntry type="library" scope="PROVIDED" name="nori (v2.6.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
50
|
-
<orderEntry type="library" scope="PROVIDED" name="parallel (v1.19.1, RVM: ruby-2.6.3) [gem]" level="application" />
|
51
|
-
<orderEntry type="library" scope="PROVIDED" name="parser (v2.6.5.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
52
|
-
<orderEntry type="library" scope="PROVIDED" name="pry (v0.12.2, RVM: ruby-2.6.3) [gem]" level="application" />
|
53
|
-
<orderEntry type="library" scope="PROVIDED" name="public_suffix (v4.0.1, RVM: ruby-2.6.3) [gem]" level="application" />
|
54
|
-
<orderEntry type="library" scope="PROVIDED" name="rack (v2.0.7, RVM: ruby-2.6.3) [gem]" level="application" />
|
55
|
-
<orderEntry type="library" scope="PROVIDED" name="rack-protection (v2.0.4, RVM: ruby-2.6.3) [gem]" level="application" />
|
56
|
-
<orderEntry type="library" scope="PROVIDED" name="rainbow (v3.0.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
57
|
-
<orderEntry type="library" scope="PROVIDED" name="rake (v13.0.1, RVM: ruby-2.6.3) [gem]" level="application" />
|
58
|
-
<orderEntry type="library" scope="PROVIDED" name="random-port (v0.5.1, RVM: ruby-2.6.3) [gem]" level="application" />
|
59
|
-
<orderEntry type="library" scope="PROVIDED" name="require_all (v3.0.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
60
|
-
<orderEntry type="library" scope="PROVIDED" name="rest-client (v2.1.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
61
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec (v3.9.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
62
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.9.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
63
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.9.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
64
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-its (v1.3.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
65
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.9.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
66
|
-
<orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.9.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
67
|
-
<orderEntry type="library" scope="PROVIDED" name="rubocop (v0.77.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
68
|
-
<orderEntry type="library" scope="PROVIDED" name="ruby-progressbar (v1.10.1, RVM: ruby-2.6.3) [gem]" level="application" />
|
69
|
-
<orderEntry type="library" scope="PROVIDED" name="savon (v2.12.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
70
|
-
<orderEntry type="library" scope="PROVIDED" name="simplecov (v0.17.1, RVM: ruby-2.6.3) [gem]" level="application" />
|
71
|
-
<orderEntry type="library" scope="PROVIDED" name="simplecov-html (v0.10.2, RVM: ruby-2.6.3) [gem]" level="application" />
|
72
|
-
<orderEntry type="library" scope="PROVIDED" name="sinatra (v2.0.4, RVM: ruby-2.6.3) [gem]" level="application" />
|
73
|
-
<orderEntry type="library" scope="PROVIDED" name="sinatra-basic-auth (v0.1.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
74
|
-
<orderEntry type="library" scope="PROVIDED" name="sinatra-docdsl (v0.8.6, RVM: ruby-2.6.3) [gem]" level="application" />
|
75
|
-
<orderEntry type="library" scope="PROVIDED" name="soaspec (v0.3.8, RVM: ruby-2.6.3) [gem]" level="application" />
|
76
|
-
<orderEntry type="library" scope="PROVIDED" name="socksify (v1.7.1, RVM: ruby-2.6.3) [gem]" level="application" />
|
77
|
-
<orderEntry type="library" scope="PROVIDED" name="thor (v0.20.3, RVM: ruby-2.6.3) [gem]" level="application" />
|
78
|
-
<orderEntry type="library" scope="PROVIDED" name="thread_safe (v0.3.6, RVM: ruby-2.6.3) [gem]" level="application" />
|
79
|
-
<orderEntry type="library" scope="PROVIDED" name="tilt (v2.0.10, RVM: ruby-2.6.3) [gem]" level="application" />
|
80
|
-
<orderEntry type="library" scope="PROVIDED" name="to_regexp (v0.2.1, RVM: ruby-2.6.3) [gem]" level="application" />
|
81
|
-
<orderEntry type="library" scope="PROVIDED" name="topoisomerase (v0.1.5, RVM: ruby-2.6.3) [gem]" level="application" />
|
82
|
-
<orderEntry type="library" scope="PROVIDED" name="tzinfo (v1.2.5, RVM: ruby-2.6.3) [gem]" level="application" />
|
83
|
-
<orderEntry type="library" scope="PROVIDED" name="unf (v0.1.4, RVM: ruby-2.6.3) [gem]" level="application" />
|
84
|
-
<orderEntry type="library" scope="PROVIDED" name="unf_ext (v0.0.7.6, RVM: ruby-2.6.3) [gem]" level="application" />
|
85
|
-
<orderEntry type="library" scope="PROVIDED" name="unicode-display_width (v1.6.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
86
|
-
<orderEntry type="library" scope="PROVIDED" name="wasabi (v3.5.0, RVM: ruby-2.6.3) [gem]" level="application" />
|
87
|
-
<orderEntry type="library" scope="PROVIDED" name="xml-simple (v1.1.5, RVM: ruby-2.6.3) [gem]" level="application" />
|
88
|
-
<orderEntry type="library" scope="PROVIDED" name="yard (v0.9.20, RVM: ruby-2.6.3) [gem]" level="application" />
|
89
|
-
<orderEntry type="library" scope="PROVIDED" name="yard-doctest (v0.1.17, RVM: ruby-2.6.3) [gem]" level="application" />
|
90
|
-
<orderEntry type="library" scope="PROVIDED" name="zeitwerk (v2.2.2, RVM: ruby-2.6.3) [gem]" level="application" />
|
91
|
-
</component>
|
92
|
-
<component name="RModuleSettingsStorage">
|
93
|
-
<LOAD_PATH number="1" string0="$MODULE_DIR$/spec/support" />
|
94
|
-
<I18N_FOLDERS number="0" />
|
95
|
-
</component>
|
96
|
-
</module>
|