leap_salesforce 0.1.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 +7 -0
- data/.gitignore +21 -0
- data/.idea/dictionaries/iqa.xml +9 -0
- data/.idea/leap-salesforce.iml +93 -0
- data/.idea/markdown-navigator/profiles_settings.xml +3 -0
- data/.idea/markdown-navigator.xml +86 -0
- data/.idea/misc.xml +12 -0
- data/.idea/modules.xml +8 -0
- data/.idea/vcs.xml +6 -0
- data/.idea/workspace.xml +992 -0
- data/.leap_salesforce.yml +10 -0
- data/.rspec +3 -0
- data/.rubocop.yml +3 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +21 -0
- data/README.md +56 -0
- data/Rakefile +21 -0
- data/bin/console +12 -0
- data/bin/setup +8 -0
- data/exe/leap-salesforce +7 -0
- data/leap_salesforce.gemspec +43 -0
- data/lib/leap_salesforce/ext/string.rb +34 -0
- data/lib/leap_salesforce/ext/time.rb +15 -0
- data/lib/leap_salesforce/generator/default_fields.rb +13 -0
- data/lib/leap_salesforce/generator/soql_enums.rb +46 -0
- data/lib/leap_salesforce/generator/soql_objects.rb +97 -0
- data/lib/leap_salesforce/generator/templates/factory.rb.erb +12 -0
- data/lib/leap_salesforce/generator/templates/picklist.rb.erb +30 -0
- data/lib/leap_salesforce/generator/templates/soql_object.rb.erb +7 -0
- data/lib/leap_salesforce/generator/templates/soql_object_field_names.rb.erb +10 -0
- data/lib/leap_salesforce/limits.rb +13 -0
- data/lib/leap_salesforce/parameters.rb +53 -0
- data/lib/leap_salesforce/rake/setup.rake +25 -0
- data/lib/leap_salesforce/rake.rb +5 -0
- data/lib/leap_salesforce/soql_data/data_relationships.rb +35 -0
- data/lib/leap_salesforce/soql_data/meta_data_handler.rb +11 -0
- data/lib/leap_salesforce/soql_data/soql_data.rb +173 -0
- data/lib/leap_salesforce/soql_data/soql_enum.rb +8 -0
- data/lib/leap_salesforce/soql_data/soql_global_data.rb +26 -0
- data/lib/leap_salesforce/soql_data/soql_global_object_data.rb +225 -0
- data/lib/leap_salesforce/soql_data/soql_handler.rb +39 -0
- data/lib/leap_salesforce/soql_data/soql_object_describe.rb +100 -0
- data/lib/leap_salesforce/soql_data/soql_settings.rb +31 -0
- data/lib/leap_salesforce/users/user.rb +27 -0
- data/lib/leap_salesforce/users/users.rb +25 -0
- data/lib/leap_salesforce/version.rb +5 -0
- data/lib/leap_salesforce.rb +63 -0
- metadata +292 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 17be4541703bda0429f67d00ab49bce675dd5526ca9895c96601be2942f78b96
|
4
|
+
data.tar.gz: 2d23cd6b1a278ec01ae910aba91e52896e35039c594f1f7ffe347596b4086728
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 504b8d68d7788db903c42146210833a7602dc379311556efaae5dbad19bf9b4838f1664bb030a92be53f1bf1036460c395ff01eae9a57d3093044e0350e2cc96
|
7
|
+
data.tar.gz: 57f1388029ea017c795fe21336ef08104733abd9dfa341e13ddca04dd51a84ace43affdab5c9b2ca9184db80cc2f803fb4596d31054a9de8a98fad761a3fe014
|
data/.gitignore
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
/.bundle/
|
2
|
+
/.yardoc
|
3
|
+
/_yardoc/
|
4
|
+
/coverage/
|
5
|
+
/doc/
|
6
|
+
/pkg/
|
7
|
+
/spec/reports/
|
8
|
+
/tmp/
|
9
|
+
Gemfile.lock
|
10
|
+
logs/
|
11
|
+
stub/
|
12
|
+
|
13
|
+
# Generated files for now
|
14
|
+
spec/support/
|
15
|
+
|
16
|
+
# Here are folders related to testing this project in it's own CI
|
17
|
+
config/
|
18
|
+
config/credentials/
|
19
|
+
|
20
|
+
# rspec failure tracking
|
21
|
+
.rspec_status
|
@@ -0,0 +1,93 @@
|
|
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
|
+
<orderEntry type="inheritedJdk" />
|
9
|
+
<orderEntry type="sourceFolder" forTests="false" />
|
10
|
+
<orderEntry type="library" scope="PROVIDED" name="activemodel (v5.2.3, RVM: ruby-2.5.0) [gem]" level="application" />
|
11
|
+
<orderEntry type="library" scope="PROVIDED" name="activerecord (v5.2.3, RVM: ruby-2.5.0) [gem]" level="application" />
|
12
|
+
<orderEntry type="library" scope="PROVIDED" name="activesupport (v5.2.3, RVM: ruby-2.5.0) [gem]" level="application" />
|
13
|
+
<orderEntry type="library" scope="PROVIDED" name="addressable (v2.6.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
14
|
+
<orderEntry type="library" scope="PROVIDED" name="akami (v1.3.1, RVM: ruby-2.5.0) [gem]" level="application" />
|
15
|
+
<orderEntry type="library" scope="PROVIDED" name="arel (v9.0.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
16
|
+
<orderEntry type="library" scope="PROVIDED" name="ast (v2.4.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
17
|
+
<orderEntry type="library" scope="PROVIDED" name="builder (v3.2.3, RVM: ruby-2.5.0) [gem]" level="application" />
|
18
|
+
<orderEntry type="library" scope="PROVIDED" name="bundler (v2.0.1, RVM: ruby-2.5.0) [gem]" level="application" />
|
19
|
+
<orderEntry type="library" scope="PROVIDED" name="coderay (v1.1.2, RVM: ruby-2.5.0) [gem]" level="application" />
|
20
|
+
<orderEntry type="library" scope="PROVIDED" name="colorize (v0.8.1, RVM: ruby-2.5.0) [gem]" level="application" />
|
21
|
+
<orderEntry type="library" scope="PROVIDED" name="concurrent-ruby (v1.1.5, RVM: ruby-2.5.0) [gem]" level="application" />
|
22
|
+
<orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.3, RVM: ruby-2.5.0) [gem]" level="application" />
|
23
|
+
<orderEntry type="library" scope="PROVIDED" name="domain_name (v0.5.20190701, RVM: ruby-2.5.0) [gem]" level="application" />
|
24
|
+
<orderEntry type="library" scope="PROVIDED" name="equatable (v0.6.1, RVM: ruby-2.5.0) [gem]" level="application" />
|
25
|
+
<orderEntry type="library" scope="PROVIDED" name="factory_bot (v5.0.2, RVM: ruby-2.5.0) [gem]" level="application" />
|
26
|
+
<orderEntry type="library" scope="PROVIDED" name="faker (v1.9.4, RVM: ruby-2.5.0) [gem]" level="application" />
|
27
|
+
<orderEntry type="library" scope="PROVIDED" name="gyoku (v1.3.1, RVM: ruby-2.5.0) [gem]" level="application" />
|
28
|
+
<orderEntry type="library" scope="PROVIDED" name="hashie (v3.6.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
29
|
+
<orderEntry type="library" scope="PROVIDED" name="http-cookie (v1.0.3, RVM: ruby-2.5.0) [gem]" level="application" />
|
30
|
+
<orderEntry type="library" scope="PROVIDED" name="httpi (v2.4.4, RVM: ruby-2.5.0) [gem]" level="application" />
|
31
|
+
<orderEntry type="library" scope="PROVIDED" name="i18n (v1.6.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
32
|
+
<orderEntry type="library" scope="PROVIDED" name="jaro_winkler (v1.5.2, RVM: ruby-2.5.0) [gem]" level="application" />
|
33
|
+
<orderEntry type="library" scope="PROVIDED" name="jsonpath (v1.0.4, RVM: ruby-2.5.0) [gem]" level="application" />
|
34
|
+
<orderEntry type="library" scope="PROVIDED" name="kramdown (v2.1.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
35
|
+
<orderEntry type="library" scope="PROVIDED" name="launchy (v2.4.3, RVM: ruby-2.5.0) [gem]" level="application" />
|
36
|
+
<orderEntry type="library" scope="PROVIDED" name="method_source (v0.9.2, RVM: ruby-2.5.0) [gem]" level="application" />
|
37
|
+
<orderEntry type="library" scope="PROVIDED" name="mime-types (v3.2.2, RVM: ruby-2.5.0) [gem]" level="application" />
|
38
|
+
<orderEntry type="library" scope="PROVIDED" name="mime-types-data (v3.2019.0331, RVM: ruby-2.5.0) [gem]" level="application" />
|
39
|
+
<orderEntry type="library" scope="PROVIDED" name="mini_portile2 (v2.4.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
40
|
+
<orderEntry type="library" scope="PROVIDED" name="minitest (v5.11.3, RVM: ruby-2.5.0) [gem]" level="application" />
|
41
|
+
<orderEntry type="library" scope="PROVIDED" name="multi_json (v1.13.1, RVM: ruby-2.5.0) [gem]" level="application" />
|
42
|
+
<orderEntry type="library" scope="PROVIDED" name="mustermann (v1.0.3, RVM: ruby-2.5.0) [gem]" level="application" />
|
43
|
+
<orderEntry type="library" scope="PROVIDED" name="netrc (v0.11.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
44
|
+
<orderEntry type="library" scope="PROVIDED" name="nokogiri (v1.10.3, RVM: ruby-2.5.0) [gem]" level="application" />
|
45
|
+
<orderEntry type="library" scope="PROVIDED" name="nori (v2.6.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
46
|
+
<orderEntry type="library" scope="PROVIDED" name="parallel (v1.17.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
47
|
+
<orderEntry type="library" scope="PROVIDED" name="parser (v2.6.3.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
48
|
+
<orderEntry type="library" scope="PROVIDED" name="pastel (v0.7.3, RVM: ruby-2.5.0) [gem]" level="application" />
|
49
|
+
<orderEntry type="library" scope="PROVIDED" name="pry (v0.12.2, RVM: ruby-2.5.0) [gem]" level="application" />
|
50
|
+
<orderEntry type="library" scope="PROVIDED" name="public_suffix (v3.1.1, RVM: ruby-2.5.0) [gem]" level="application" />
|
51
|
+
<orderEntry type="library" scope="PROVIDED" name="rack (v2.0.7, RVM: ruby-2.5.0) [gem]" level="application" />
|
52
|
+
<orderEntry type="library" scope="PROVIDED" name="rack-protection (v2.0.5, RVM: ruby-2.5.0) [gem]" level="application" />
|
53
|
+
<orderEntry type="library" scope="PROVIDED" name="rainbow (v3.0.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
54
|
+
<orderEntry type="library" scope="PROVIDED" name="rake (v10.5.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
55
|
+
<orderEntry type="library" scope="PROVIDED" name="random-port (v0.3.1, RVM: ruby-2.5.0) [gem]" level="application" />
|
56
|
+
<orderEntry type="library" scope="PROVIDED" name="require_all (v2.0.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
57
|
+
<orderEntry type="library" scope="PROVIDED" name="rest-client (v2.0.2, RVM: ruby-2.5.0) [gem]" level="application" />
|
58
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec (v3.8.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
59
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.8.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
60
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.8.3, RVM: ruby-2.5.0) [gem]" level="application" />
|
61
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-its (v1.3.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
62
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.8.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
63
|
+
<orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.8.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
64
|
+
<orderEntry type="library" scope="PROVIDED" name="rubocop (v0.69.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
65
|
+
<orderEntry type="library" scope="PROVIDED" name="ruby-progressbar (v1.10.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
66
|
+
<orderEntry type="library" scope="PROVIDED" name="rubykeyword (v0.0.4, RVM: ruby-2.5.0) [gem]" level="application" />
|
67
|
+
<orderEntry type="library" scope="PROVIDED" name="savon (v2.12.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
68
|
+
<orderEntry type="library" scope="PROVIDED" name="sinatra (v2.0.5, RVM: ruby-2.5.0) [gem]" level="application" />
|
69
|
+
<orderEntry type="library" scope="PROVIDED" name="sinatra-basic-auth (v0.1.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
70
|
+
<orderEntry type="library" scope="PROVIDED" name="sinatra-docdsl (v0.8.6, RVM: ruby-2.5.0) [gem]" level="application" />
|
71
|
+
<orderEntry type="library" scope="PROVIDED" name="soaspec (v0.2.25, RVM: ruby-2.5.0) [gem]" level="application" />
|
72
|
+
<orderEntry type="library" scope="PROVIDED" name="socksify (v1.7.1, RVM: ruby-2.5.0) [gem]" level="application" />
|
73
|
+
<orderEntry type="library" scope="PROVIDED" name="strings (v0.1.5, RVM: ruby-2.5.0) [gem]" level="application" />
|
74
|
+
<orderEntry type="library" scope="PROVIDED" name="strings-ansi (v0.1.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
75
|
+
<orderEntry type="library" scope="PROVIDED" name="thor (v0.20.3, RVM: ruby-2.5.0) [gem]" level="application" />
|
76
|
+
<orderEntry type="library" scope="PROVIDED" name="thread_safe (v0.3.6, RVM: ruby-2.5.0) [gem]" level="application" />
|
77
|
+
<orderEntry type="library" scope="PROVIDED" name="tilt (v2.0.9, RVM: ruby-2.5.0) [gem]" level="application" />
|
78
|
+
<orderEntry type="library" scope="PROVIDED" name="to_regexp (v0.2.1, RVM: ruby-2.5.0) [gem]" level="application" />
|
79
|
+
<orderEntry type="library" scope="PROVIDED" name="topoisomerase (v0.1.3, RVM: ruby-2.5.0) [gem]" level="application" />
|
80
|
+
<orderEntry type="library" scope="PROVIDED" name="tty-color (v0.5.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
81
|
+
<orderEntry type="library" scope="PROVIDED" name="tty-pager (v0.12.1, RVM: ruby-2.5.0) [gem]" level="application" />
|
82
|
+
<orderEntry type="library" scope="PROVIDED" name="tty-screen (v0.6.5, RVM: ruby-2.5.0) [gem]" level="application" />
|
83
|
+
<orderEntry type="library" scope="PROVIDED" name="tty-tree (v0.3.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
84
|
+
<orderEntry type="library" scope="PROVIDED" name="tty-which (v0.4.1, RVM: ruby-2.5.0) [gem]" level="application" />
|
85
|
+
<orderEntry type="library" scope="PROVIDED" name="tzinfo (v1.2.5, RVM: ruby-2.5.0) [gem]" level="application" />
|
86
|
+
<orderEntry type="library" scope="PROVIDED" name="unf (v0.1.4, RVM: ruby-2.5.0) [gem]" level="application" />
|
87
|
+
<orderEntry type="library" scope="PROVIDED" name="unf_ext (v0.0.7.6, RVM: ruby-2.5.0) [gem]" level="application" />
|
88
|
+
<orderEntry type="library" scope="PROVIDED" name="unicode-display_width (v1.6.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
89
|
+
<orderEntry type="library" scope="PROVIDED" name="unicode_utils (v1.4.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
90
|
+
<orderEntry type="library" scope="PROVIDED" name="wasabi (v3.5.0, RVM: ruby-2.5.0) [gem]" level="application" />
|
91
|
+
<orderEntry type="library" scope="PROVIDED" name="xml-simple (v1.1.5, RVM: ruby-2.5.0) [gem]" level="application" />
|
92
|
+
</component>
|
93
|
+
</module>
|
@@ -0,0 +1,86 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="MarkdownProjectSettings" wasCopied="true">
|
4
|
+
<PreviewSettings splitEditorLayout="SPLIT" splitEditorPreview="PREVIEW" useGrayscaleRendering="false" zoomFactor="1.0" maxImageWidth="0" showGitHubPageIfSynced="false" allowBrowsingInPreview="false" synchronizePreviewPosition="true" highlightPreviewType="NONE" highlightFadeOut="5" highlightOnTyping="true" synchronizeSourcePosition="true" verticallyAlignSourceAndPreviewSyncPosition="true" showSearchHighlightsInPreview="false" showSelectionInPreview="true" openRemoteLinks="true" replaceUnicodeEmoji="false" lastLayoutSetsDefault="false">
|
5
|
+
<PanelProvider>
|
6
|
+
<provider providerId="com.vladsch.idea.multimarkdown.editor.swing.html.panel" providerName="Default - Swing" />
|
7
|
+
</PanelProvider>
|
8
|
+
</PreviewSettings>
|
9
|
+
<ParserSettings gitHubSyntaxChange="false" emojiShortcuts="0" emojiImages="0">
|
10
|
+
<PegdownExtensions>
|
11
|
+
<option name="ABBREVIATIONS" value="false" />
|
12
|
+
<option name="ANCHORLINKS" value="true" />
|
13
|
+
<option name="ASIDE" value="false" />
|
14
|
+
<option name="ATXHEADERSPACE" value="true" />
|
15
|
+
<option name="AUTOLINKS" value="true" />
|
16
|
+
<option name="DEFINITIONS" value="false" />
|
17
|
+
<option name="DEFINITION_BREAK_DOUBLE_BLANK_LINE" value="false" />
|
18
|
+
<option name="FENCED_CODE_BLOCKS" value="true" />
|
19
|
+
<option name="FOOTNOTES" value="false" />
|
20
|
+
<option name="HARDWRAPS" value="false" />
|
21
|
+
<option name="HTML_DEEP_PARSER" value="false" />
|
22
|
+
<option name="INSERTED" value="false" />
|
23
|
+
<option name="QUOTES" value="false" />
|
24
|
+
<option name="RELAXEDHRULES" value="true" />
|
25
|
+
<option name="SMARTS" value="false" />
|
26
|
+
<option name="STRIKETHROUGH" value="true" />
|
27
|
+
<option name="SUBSCRIPT" value="false" />
|
28
|
+
<option name="SUPERSCRIPT" value="false" />
|
29
|
+
<option name="SUPPRESS_HTML_BLOCKS" value="false" />
|
30
|
+
<option name="SUPPRESS_INLINE_HTML" value="false" />
|
31
|
+
<option name="TABLES" value="true" />
|
32
|
+
<option name="TASKLISTITEMS" value="true" />
|
33
|
+
<option name="TOC" value="false" />
|
34
|
+
<option name="WIKILINKS" value="true" />
|
35
|
+
</PegdownExtensions>
|
36
|
+
<ParserOptions>
|
37
|
+
<option name="ADMONITION_EXT" value="false" />
|
38
|
+
<option name="ATTRIBUTES_EXT" value="false" />
|
39
|
+
<option name="COMMONMARK_LISTS" value="true" />
|
40
|
+
<option name="DUMMY" value="false" />
|
41
|
+
<option name="EMOJI_SHORTCUTS" value="true" />
|
42
|
+
<option name="ENUMERATED_REFERENCES_EXT" value="false" />
|
43
|
+
<option name="FLEXMARK_FRONT_MATTER" value="false" />
|
44
|
+
<option name="GFM_LOOSE_BLANK_LINE_AFTER_ITEM_PARA" value="false" />
|
45
|
+
<option name="GFM_TABLE_RENDERING" value="true" />
|
46
|
+
<option name="GITBOOK_URL_ENCODING" value="false" />
|
47
|
+
<option name="GITHUB_LISTS" value="false" />
|
48
|
+
<option name="GITHUB_WIKI_LINKS" value="true" />
|
49
|
+
<option name="GITLAB_EXT" value="false" />
|
50
|
+
<option name="GITLAB_MATH_EXT" value="false" />
|
51
|
+
<option name="GITLAB_MERMAID_EXT" value="false" />
|
52
|
+
<option name="HEADER_ID_NON_ASCII_TO_LOWERCASE" value="false" />
|
53
|
+
<option name="HEADER_ID_NO_DUPED_DASHES" value="false" />
|
54
|
+
<option name="JEKYLL_FRONT_MATTER" value="false" />
|
55
|
+
<option name="MACROS_EXT" value="false" />
|
56
|
+
<option name="NO_TEXT_ATTRIBUTES" value="false" />
|
57
|
+
<option name="PARSE_HTML_ANCHOR_ID" value="false" />
|
58
|
+
<option name="PLANTUML_FENCED_CODE" value="false" />
|
59
|
+
<option name="PUML_FENCED_CODE" value="false" />
|
60
|
+
<option name="SIM_TOC_BLANK_LINE_SPACER" value="true" />
|
61
|
+
</ParserOptions>
|
62
|
+
</ParserSettings>
|
63
|
+
<HtmlSettings headerTopEnabled="false" headerBottomEnabled="false" bodyTopEnabled="false" bodyBottomEnabled="false" embedUrlContent="false" addPageHeader="true" embedImages="false" embedHttpImages="false" imageUriSerials="false" addDocTypeHtml="true" noParaTags="false" plantUmlConversion="0" mathConversion="-1">
|
64
|
+
<GeneratorProvider>
|
65
|
+
<provider providerId="com.vladsch.idea.multimarkdown.editor.swing.html.generator" providerName="Default Swing HTML Generator" />
|
66
|
+
</GeneratorProvider>
|
67
|
+
<headerTop />
|
68
|
+
<headerBottom />
|
69
|
+
<bodyTop />
|
70
|
+
<bodyBottom />
|
71
|
+
</HtmlSettings>
|
72
|
+
<CssSettings previewScheme="UI_SCHEME" cssUri="" isCssUriEnabled="false" isCssUriSerial="true" isCssTextEnabled="false" isDynamicPageWidth="true">
|
73
|
+
<StylesheetProvider>
|
74
|
+
<provider providerId="com.vladsch.idea.multimarkdown.editor.swing.html.css" providerName="Default Swing Stylesheet" />
|
75
|
+
</StylesheetProvider>
|
76
|
+
<ScriptProviders />
|
77
|
+
<cssText />
|
78
|
+
<cssUriHistory />
|
79
|
+
</CssSettings>
|
80
|
+
<AnnotatorSettings targetHasSpaces="true" linkCaseMismatch="true" wikiCaseMismatch="true" wikiLinkHasDashes="true" notUnderWikiHome="true" targetNotWikiPageExt="true" notUnderSourceWikiHome="true" targetNameHasAnchor="true" targetPathHasAnchor="true" wikiLinkHasSlash="true" wikiLinkHasSubdir="true" wikiLinkHasOnlyAnchor="true" linkTargetsWikiHasExt="true" linkTargetsWikiHasBadExt="true" notUnderSameRepo="true" targetNotUnderVcs="false" linkNeedsExt="true" linkHasBadExt="true" linkTargetNeedsExt="true" linkTargetHasBadExt="true" wikiLinkNotInWiki="true" imageTargetNotInRaw="true" repoRelativeAcrossVcsRoots="true" multipleWikiTargetsMatch="true" unresolvedLinkReference="true" linkIsIgnored="true" anchorIsIgnored="true" anchorIsUnresolved="true" anchorLineReferenceIsUnresolved="true" anchorLineReferenceFormat="true" anchorHasDuplicates="true" abbreviationDuplicates="true" abbreviationNotUsed="true" attributeIdDuplicateDefinition="true" attributeIdNotUsed="true" footnoteDuplicateDefinition="true" footnoteUnresolved="true" footnoteDuplicates="true" footnoteNotUsed="true" macroDuplicateDefinition="true" macroUnresolved="true" macroDuplicates="true" macroNotUsed="true" referenceDuplicateDefinition="true" referenceUnresolved="true" referenceDuplicates="true" referenceNotUsed="true" referenceUnresolvedNumericId="true" enumRefDuplicateDefinition="true" enumRefUnresolved="true" enumRefDuplicates="true" enumRefNotUsed="true" enumRefLinkUnresolved="true" enumRefLinkDuplicates="true" simTocUpdateNeeded="true" simTocTitleSpaceNeeded="true" />
|
81
|
+
<HtmlExportSettings updateOnSave="false" parentDir="" targetDir="" cssDir="css" scriptDir="js" plainHtml="false" imageDir="" copyLinkedImages="false" imageUniquifyType="0" targetPathType="2" targetExt="" useTargetExt="false" noCssNoScripts="false" useElementStyleAttribute="false" linkToExportedHtml="true" exportOnSettingsChange="true" regenerateOnProjectOpen="false" linkFormatType="HTTP_ABSOLUTE" />
|
82
|
+
<LinkMapSettings>
|
83
|
+
<textMaps />
|
84
|
+
</LinkMapSettings>
|
85
|
+
</component>
|
86
|
+
</project>
|
data/.idea/misc.xml
ADDED
@@ -0,0 +1,12 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<project version="4">
|
3
|
+
<component name="JavaScriptSettings">
|
4
|
+
<option name="languageLevel" value="ES6" />
|
5
|
+
</component>
|
6
|
+
<component name="ProjectPlainTextFileTypeManager">
|
7
|
+
<file url="file://$PROJECT_DIR$/lib/leap_salesforce/generator/templates/picklist.rb.erb" />
|
8
|
+
<file url="file://$PROJECT_DIR$/lib/leap_salesforce/generator/templates/soql_object.rb.erb" />
|
9
|
+
<file url="file://$PROJECT_DIR$/lib/leap_salesforce/generator/templates/soql_object_field_names.rb.erb" />
|
10
|
+
</component>
|
11
|
+
<component name="ProjectRootManager" version="2" project-jdk-name="RVM: ruby-2.5.0" project-jdk-type="RUBY_SDK" />
|
12
|
+
</project>
|
data/.idea/modules.xml
ADDED
@@ -0,0 +1,8 @@
|
|
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/leap-salesforce.iml" filepath="$PROJECT_DIR$/.idea/leap-salesforce.iml" />
|
6
|
+
</modules>
|
7
|
+
</component>
|
8
|
+
</project>
|