angellist-style 1.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: d780349c7e13b288d3e8fa5610080618c6cc9286e57a59095e00d8b19fed9e2d
4
+ data.tar.gz: d214f4f207090fcaf2e358fc361de022e65ace677df6d06d604d2717e5f2e497
5
+ SHA512:
6
+ metadata.gz: c098cb6324f1cbccb6f98b761d8f587e58753bf606e9eaaf0259438e19e919f8818c08cdfed18f1c9a6f4bdbae243273ae994a4c3a948073295d044a2ac15869
7
+ data.tar.gz: 9f67f91a10a2f899557ebbd28c25f30271d6a63f49bfd9150d13913ce7bb9fbfe682f778797587c23d8613c1ca9a5216ebd447dc68d5d62248ec6d0bb3f028fe
data/.envrc ADDED
@@ -0,0 +1,68 @@
1
+ #!/usr/bin/env bash
2
+ #
3
+ # THIS FILE IS IGNORED UNLESS YOU ARE USING *direnv*.
4
+ #
5
+ # * This file is only used in development and currently may
6
+ # contain Mac-OS specific settings.
7
+ #
8
+ # * This file sets shell environment that will be activated when
9
+ # running shell commands from within the project directory, or any
10
+ # sub-directories. The act of changing into any of these folder
11
+ # also invokes direnv.
12
+ #
13
+ # * See the actual code for comments on what each does and why.
14
+ #
15
+ # In order for this file to be used, you must install `direnv`. To
16
+ # install direnv:
17
+ #
18
+ # brew install direnv
19
+ # echo 'eval "$(direnv hook bash)"' >> ~/.bash_profile
20
+ #
21
+ # when you CD into the project folder subseqently you may see a warning.
22
+ # Direnv generally requires you to approve each version of .envrc file
23
+ # before it is enabled, so you must run the following command every time
24
+ # .envrc file changes and you get a warning that it's not allowed:
25
+ #
26
+ # direnv allow .
27
+ #
28
+ # Optionally, you might consider adding a shell alias so that you can
29
+ # just type 'dada' instead of the above command:
30
+ #
31
+ # echo "alias dada='direnv allow .'" >> ~/.bash_profile
32
+ # source ~/.bash_profile
33
+ #
34
+ # Of course feel free to change 'dada', although considering "Da" means "Yes"
35
+ # in Russian while also abbreviating into "Direnv Allow", you'd be pressed hard
36
+ # to find a better alias.
37
+
38
+ if [[ $(ruby --version) =~ "2.7" ]]; then
39
+ # Ruby 2.7 deprecated many features and so the warnings from all of the popular
40
+ # gems are through the roof. It's overwhelming, so turn them down using these
41
+ # warnings specications that only apply to Ruby 2.7.
42
+ export RUBYOPT='-W:no-deprecated -W:no-experimental -W0'
43
+ else
44
+ # Otherwise we just set W0 which still generates warnings, but not as much.
45
+ export RUBYOPT='W0'
46
+ fi
47
+ # We set this variable to be able to build mysql2 gem against openssl.
48
+ export LIBRARY_PATH=$(brew --prefix openssl)/lib
49
+ # This was required to support building on OS-X Catalina.
50
+ export CXX=clang++
51
+ # Also Catalina. Below command grabs OS-X version without the minor version,
52
+ # so eg. "10.15.1" it will return "10.15"
53
+ export OSX_VERSION=$(sw_vers -productVersion | sed -E 's/\.[0-9]+$//g')
54
+ export GYPFLAGS=-Dmac_deployment_target=${OSX_VERSION}
55
+ export CODECOV_TOKEN="4b9f9704-0cee-42f9-a4b1-a7334f905fe1"
56
+ # Finally, add bin/ to the PATH when in the project folder
57
+ # so that you can use `bin/rails` and `bin/rake` etc. without typing
58
+ # `bin/`.
59
+ PATH_add bin
60
+
61
+ export DISABLE_SPRING=1
62
+ export COVERBAND=true
63
+ export COVERAGE=true
64
+
65
+ export PUMA_THREADS=4
66
+ export PUMA_WORKERS=6
67
+
68
+
@@ -0,0 +1,26 @@
1
+ name: Run RSpecs
2
+
3
+ on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
+ branches: [ master ]
8
+
9
+ jobs:
10
+ test:
11
+
12
+ runs-on: ubuntu-latest
13
+
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: Set up Ruby
17
+ # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
18
+ # change this to (see https://github.com/ruby/setup-ruby#versioning):
19
+ # uses: ruby/setup-ruby@v1
20
+ uses: ruby/setup-ruby@ec106b438a1ff6ff109590de34ddc62c540232e0
21
+ with:
22
+ ruby-version: 2.6
23
+ - name: Install dependencies
24
+ run: bundle install
25
+ - name: Run tests
26
+ run: bundle exec rake
@@ -0,0 +1,82 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
12
+
13
+ # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
14
+ # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
15
+
16
+ # User-specific stuff
17
+ .idea/**/workspace.xml
18
+ .idea/**/tasks.xml
19
+ .idea/**/usage.statistics.xml
20
+ .idea/**/shelf
21
+
22
+ # Generated files
23
+ .idea/**/contentModel.xml
24
+
25
+ # Sensitive or high-churn files
26
+ .idea/**/dataSources/
27
+ .idea/**/dataSources.ids
28
+ .idea/**/dataSources.local.xml
29
+ .idea/**/sqlDataSources.xml
30
+ .idea/**/dynamic.xml
31
+ .idea/**/uiDesigner.xml
32
+ .idea/**/dbnavigator.xml
33
+
34
+ # Gradle
35
+ .idea/**/gradle.xml
36
+ .idea/**/libraries
37
+
38
+ # Gradle and Maven with auto-import
39
+ # When using Gradle or Maven with auto-import, you should exclude module files,
40
+ # since they will be recreated, and may cause churn. Uncomment if using
41
+ # auto-import.
42
+ # .idea/artifacts
43
+ # .idea/compiler.xml
44
+ # .idea/jarRepositories.xml
45
+ # .idea/modules.xml
46
+ # .idea/*.iml
47
+ # .idea/modules
48
+ # *.iml
49
+ # *.ipr
50
+
51
+ # CMake
52
+ cmake-build-*/
53
+
54
+ # Mongo Explorer plugin
55
+ .idea/**/mongoSettings.xml
56
+
57
+ # File-based project format
58
+ *.iws
59
+
60
+ # IntelliJ
61
+ out/
62
+
63
+ # mpeltonen/sbt-idea plugin
64
+ .idea_modules/
65
+
66
+ # JIRA plugin
67
+ atlassian-ide-plugin.xml
68
+
69
+ # Cursive Clojure plugin
70
+ .idea/replstate.xml
71
+
72
+ # Crashlytics plugin (for Android Studio and IntelliJ)
73
+ com_crashlytics_export_strings.xml
74
+ crashlytics.properties
75
+ crashlytics-build.properties
76
+ fabric.properties
77
+
78
+ # Editor-based Rest Client
79
+ .idea/httpRequests
80
+
81
+ # Android studio 3.1+ serialized cache file
82
+ .idea/caches/build_file_checksums.ser
@@ -0,0 +1,8 @@
1
+ # Default ignored files
2
+ /shelf/
3
+ /workspace.xml
4
+ # Datasource local storage ignored files
5
+ /dataSources/
6
+ /dataSources.local.xml
7
+ # Editor-based HTTP Client requests
8
+ /httpRequests/
@@ -0,0 +1,7 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <Settings><!--This file was automatically generated by Ruby plugin.
3
+ You are allowed to:
4
+ 1. Remove rake task
5
+ 2. Add existing rake tasks
6
+ To add existing rake tasks automatically delete this file and reload the project.
7
+ --><RakeGroup description="" fullCmd="" taksId="rake"><RakeTask description="Build angellist-style-1.0.0.gem into the pkg directory" fullCmd="build" taksId="build" /><RakeTask description="Remove any temporary products" fullCmd="clean" taksId="clean" /><RakeTask description="Remove any generated files" fullCmd="clobber" taksId="clobber" /><RakeTask description="Build and install angellist-style-1.0.0.gem into system gems" fullCmd="install" taksId="install" /><RakeGroup description="" fullCmd="" taksId="install"><RakeTask description="Build and install angellist-style-1.0.0.gem into system gems without network access" fullCmd="install:local" taksId="local" /></RakeGroup><RakeTask description="Create tag v1.0.0 and build and push angellist-style-1.0.0.gem to https://@gem.fury.io/angellist/" fullCmd="release[remote]" taksId="release[remote]" /><RakeTask description="Run RSpec code examples" fullCmd="spec" taksId="spec" /><RakeTask description="" fullCmd="default" taksId="default" /><RakeTask description="" fullCmd="release" taksId="release" /><RakeGroup description="" fullCmd="" taksId="release"><RakeTask description="" fullCmd="release:guard_clean" taksId="guard_clean" /><RakeTask description="" fullCmd="release:rubygem_push" taksId="rubygem_push" /><RakeTask description="" fullCmd="release:source_control_push" taksId="source_control_push" /></RakeGroup></RakeGroup></Settings>
@@ -0,0 +1,43 @@
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.4.5" jdkType="RUBY_SDK" />
13
+ <orderEntry type="sourceFolder" forTests="false" />
14
+ <orderEntry type="library" scope="PROVIDED" name="activesupport (v5.1.7, rbenv: 2.4.5) [gem]" level="application" />
15
+ <orderEntry type="library" scope="PROVIDED" name="ast (v2.4.0, rbenv: 2.4.5) [gem]" level="application" />
16
+ <orderEntry type="library" scope="PROVIDED" name="bundler (v2.1.4, rbenv: 2.4.5) [gem]" level="application" />
17
+ <orderEntry type="library" scope="PROVIDED" name="concurrent-ruby (v1.1.6, rbenv: 2.4.5) [gem]" level="application" />
18
+ <orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.3, rbenv: 2.4.5) [gem]" level="application" />
19
+ <orderEntry type="library" scope="PROVIDED" name="i18n (v1.8.2, rbenv: 2.4.5) [gem]" level="application" />
20
+ <orderEntry type="library" scope="PROVIDED" name="jaro_winkler (v1.5.4, rbenv: 2.4.5) [gem]" level="application" />
21
+ <orderEntry type="library" scope="PROVIDED" name="minitest (v5.14.0, rbenv: 2.4.5) [gem]" level="application" />
22
+ <orderEntry type="library" scope="PROVIDED" name="parallel (v1.19.1, rbenv: 2.4.5) [gem]" level="application" />
23
+ <orderEntry type="library" scope="PROVIDED" name="parser (v2.7.1.2, rbenv: 2.4.5) [gem]" level="application" />
24
+ <orderEntry type="library" scope="PROVIDED" name="rack (v2.2.2, rbenv: 2.4.5) [gem]" level="application" />
25
+ <orderEntry type="library" scope="PROVIDED" name="rainbow (v3.0.0, rbenv: 2.4.5) [gem]" level="application" />
26
+ <orderEntry type="library" scope="PROVIDED" name="rake (v13.0.1, rbenv: 2.4.5) [gem]" level="application" />
27
+ <orderEntry type="library" scope="PROVIDED" name="rexml (v3.2.4, rbenv: 2.4.5) [gem]" level="application" />
28
+ <orderEntry type="library" scope="PROVIDED" name="rspec (v3.9.0, rbenv: 2.4.5) [gem]" level="application" />
29
+ <orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.9.2, rbenv: 2.4.5) [gem]" level="application" />
30
+ <orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.9.1, rbenv: 2.4.5) [gem]" level="application" />
31
+ <orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.9.1, rbenv: 2.4.5) [gem]" level="application" />
32
+ <orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.9.3, rbenv: 2.4.5) [gem]" level="application" />
33
+ <orderEntry type="library" scope="PROVIDED" name="rubocop (v0.82.0, rbenv: 2.4.5) [gem]" level="application" />
34
+ <orderEntry type="library" scope="PROVIDED" name="rubocop-performance (v1.5.2, rbenv: 2.4.5) [gem]" level="application" />
35
+ <orderEntry type="library" scope="PROVIDED" name="rubocop-rails (v2.5.2, rbenv: 2.4.5) [gem]" level="application" />
36
+ <orderEntry type="library" scope="PROVIDED" name="rubocop-rspec (v1.39.0, rbenv: 2.4.5) [gem]" level="application" />
37
+ <orderEntry type="library" scope="PROVIDED" name="rubocop-thread_safety (v0.3.4, rbenv: 2.4.5) [gem]" level="application" />
38
+ <orderEntry type="library" scope="PROVIDED" name="ruby-progressbar (v1.10.1, rbenv: 2.4.5) [gem]" level="application" />
39
+ <orderEntry type="library" scope="PROVIDED" name="thread_safe (v0.3.6, rbenv: 2.4.5) [gem]" level="application" />
40
+ <orderEntry type="library" scope="PROVIDED" name="tzinfo (v1.2.7, rbenv: 2.4.5) [gem]" level="application" />
41
+ <orderEntry type="library" scope="PROVIDED" name="unicode-display_width (v1.7.0, rbenv: 2.4.5) [gem]" level="application" />
42
+ </component>
43
+ </module>
@@ -0,0 +1,5 @@
1
+ <component name="ProjectCodeStyleConfiguration">
2
+ <state>
3
+ <option name="PREFERRED_PROJECT_CODE_STYLE" value="Aligned" />
4
+ </state>
5
+ </component>
@@ -0,0 +1,7 @@
1
+ <component name="ProjectDictionaryState">
2
+ <dictionary name="kig">
3
+ <words>
4
+ <w>andreasklinger</w>
5
+ </words>
6
+ </dictionary>
7
+ </component>
@@ -0,0 +1,29 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="MarkdownEnhProjectSettings">
4
+ <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" />
5
+ <HtmlExportSettings updateOnSave="false" parentDir="" targetDir="" cssDir="css" scriptDir="js" plainHtml="false" imageDir="" copyLinkedImages="false" imagePathType="0" targetPathType="2" targetExt="" useTargetExt="false" noCssNoScripts="false" useElementStyleAttribute="false" linkToExportedHtml="true" exportOnSettingsChange="true" regenerateOnProjectOpen="false" linkFormatType="HTTP_ABSOLUTE" />
6
+ <LinkMapSettings>
7
+ <textMaps />
8
+ </LinkMapSettings>
9
+ </component>
10
+ <component name="MarkdownNavigatorHistory">
11
+ <PasteImageHistory checkeredTransparentBackground="false" filename="image" directory="" onPasteImageTargetRef="3" onPasteLinkText="0" onPasteImageElement="1" onPasteLinkElement="1" onPasteReferenceElement="2" cornerRadius="20" borderColor="0" transparentColor="16777215" borderWidth="1" trimTop="0" trimBottom="0" trimLeft="0" trimRight="0" transparent="false" roundCorners="false" showPreview="true" bordered="false" scaled="false" cropped="false" hideInapplicableOperations="false" preserveLinkFormat="false" scale="50" scalingInterpolation="1" transparentTolerance="0" saveAsDefaultOnOK="false" linkFormat="0" addHighlights="false" showHighlightCoordinates="true" showHighlights="false" mouseSelectionAddsHighlight="false" outerFilled="false" outerFillColor="0" outerFillTransparent="true" outerFillAlpha="30">
12
+ <highlightList />
13
+ <directories />
14
+ <filenames />
15
+ </PasteImageHistory>
16
+ <CopyImageHistory checkeredTransparentBackground="false" filename="image" directory="" onPasteImageTargetRef="3" onPasteLinkText="0" onPasteImageElement="1" onPasteLinkElement="1" onPasteReferenceElement="2" cornerRadius="20" borderColor="0" transparentColor="16777215" borderWidth="1" trimTop="0" trimBottom="0" trimLeft="0" trimRight="0" transparent="false" roundCorners="false" showPreview="true" bordered="false" scaled="false" cropped="false" hideInapplicableOperations="false" preserveLinkFormat="false" scale="50" scalingInterpolation="1" transparentTolerance="0" saveAsDefaultOnOK="false" linkFormat="0" addHighlights="false" showHighlightCoordinates="true" showHighlights="false" mouseSelectionAddsHighlight="false" outerFilled="false" outerFillColor="0" outerFillTransparent="true" outerFillAlpha="30">
17
+ <highlightList />
18
+ <directories />
19
+ <filenames />
20
+ </CopyImageHistory>
21
+ <PasteLinkHistory onPasteImageTargetRef="3" onPasteTargetRef="1" onPasteLinkText="0" onPasteImageElement="1" onPasteLinkElement="1" onPasteWikiElement="2" onPasteReferenceElement="2" hideInapplicableOperations="false" preserveLinkFormat="false" useHeadingForLinkText="false" linkFormat="0" saveAsDefaultOnOK="false" />
22
+ <TableToJsonHistory>
23
+ <entries />
24
+ </TableToJsonHistory>
25
+ <TableSortHistory>
26
+ <entries />
27
+ </TableSortHistory>
28
+ </component>
29
+ </project>
@@ -0,0 +1,55 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="FlexmarkProjectSettings">
4
+ <FlexmarkHtmlSettings flexmarkSpecExampleRendering="0" flexmarkSpecExampleRenderHtml="false">
5
+ <flexmarkSectionLanguages>
6
+ <option name="1" value="Markdown" />
7
+ <option name="2" value="HTML" />
8
+ <option name="3" value="flexmark-ast:1" />
9
+ </flexmarkSectionLanguages>
10
+ </FlexmarkHtmlSettings>
11
+ </component>
12
+ <component name="MarkdownProjectSettings">
13
+ <PreviewSettings splitEditorLayout="SPLIT" splitEditorPreview="PREVIEW" useGrayscaleRendering="false" zoomFactor="1.0" maxImageWidth="0" synchronizePreviewPosition="true" highlightPreviewType="LINE" highlightFadeOut="5" highlightOnTyping="true" synchronizeSourcePosition="true" verticallyAlignSourceAndPreviewSyncPosition="true" showSearchHighlightsInPreview="true" showSelectionInPreview="true" lastLayoutSetsDefault="false">
14
+ <PanelProvider>
15
+ <provider providerId="com.vladsch.md.nav.editor.swing.html.panel" providerName="Default - Swing" />
16
+ </PanelProvider>
17
+ </PreviewSettings>
18
+ <ParserSettings gitHubSyntaxChange="false" correctedInvalidSettings="false" emojiShortcuts="1" emojiImages="0">
19
+ <PegdownExtensions>
20
+ <option name="ANCHORLINKS" value="true" />
21
+ <option name="ATXHEADERSPACE" value="true" />
22
+ <option name="FENCED_CODE_BLOCKS" value="true" />
23
+ <option name="INTELLIJ_DUMMY_IDENTIFIER" value="true" />
24
+ <option name="RELAXEDHRULES" value="true" />
25
+ <option name="STRIKETHROUGH" value="true" />
26
+ <option name="TABLES" value="true" />
27
+ <option name="TASKLISTITEMS" value="true" />
28
+ </PegdownExtensions>
29
+ <ParserOptions>
30
+ <option name="COMMONMARK_LISTS" value="true" />
31
+ <option name="EMOJI_SHORTCUTS" value="true" />
32
+ <option name="GFM_TABLE_RENDERING" value="true" />
33
+ <option name="PRODUCTION_SPEC_PARSER" value="true" />
34
+ <option name="SIM_TOC_BLANK_LINE_SPACER" value="true" />
35
+ </ParserOptions>
36
+ </ParserSettings>
37
+ <HtmlSettings headerTopEnabled="false" headerBottomEnabled="false" bodyTopEnabled="false" bodyBottomEnabled="false" addPageHeader="false" imageUriSerials="false" addDocTypeHtml="true" noParaTags="false" plantUmlConversion="0">
38
+ <GeneratorProvider>
39
+ <provider providerId="com.vladsch.md.nav.editor.text.html.generator" providerName="Unmodified HTML Generator" />
40
+ </GeneratorProvider>
41
+ <headerTop />
42
+ <headerBottom />
43
+ <bodyTop />
44
+ <bodyBottom />
45
+ </HtmlSettings>
46
+ <CssSettings previewScheme="UI_SCHEME" cssUri="" isCssUriEnabled="false" isCssUriSerial="true" isCssTextEnabled="false" isDynamicPageWidth="true">
47
+ <StylesheetProvider>
48
+ <provider providerId="com.vladsch.md.nav.editor.text.html.css" providerName="No Stylesheet" />
49
+ </StylesheetProvider>
50
+ <ScriptProviders />
51
+ <cssText />
52
+ <cssUriHistory />
53
+ </CssSettings>
54
+ </component>
55
+ </project>
@@ -0,0 +1,7 @@
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="ProjectRootManager" version="2" project-jdk-name="rbenv: 2.7.0" project-jdk-type="RUBY_SDK" />
7
+ </project>
@@ -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/angellist-style.iml" filepath="$PROJECT_DIR$/.idea/angellist-style.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
@@ -0,0 +1,6 @@
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/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,2 @@
1
+ inherit_from:
2
+ - .rubocop_angellist.yml
@@ -0,0 +1,12 @@
1
+ inherit_from:
2
+ - .rubocop_relaxed.yml
3
+ - config/require.yml
4
+ - config/all_cops.yml
5
+ - config/layout.yml
6
+ - config/lint.yml
7
+ - config/metrics.yml
8
+ - config/naming.yml
9
+ - config/rails.yml
10
+ - config/rspec.yml
11
+ - config/security.yml
12
+ - config/style.yml
@@ -0,0 +1,153 @@
1
+ # Relaxed.Ruby.Style — See: https://relaxed.ruby.style/
2
+ ## Version 2.5
3
+
4
+ Style/Alias:
5
+ Enabled: false
6
+ StyleGuide: https://relaxed.ruby.style/#stylealias
7
+
8
+ Style/AsciiComments:
9
+ Enabled: false
10
+ StyleGuide: https://relaxed.ruby.style/#styleasciicomments
11
+
12
+ Style/BeginBlock:
13
+ Enabled: false
14
+ StyleGuide: https://relaxed.ruby.style/#stylebeginblock
15
+
16
+ Style/BlockDelimiters:
17
+ Enabled: false
18
+ StyleGuide: https://relaxed.ruby.style/#styleblockdelimiters
19
+
20
+ Style/CommentAnnotation:
21
+ Enabled: false
22
+ StyleGuide: https://relaxed.ruby.style/#stylecommentannotation
23
+
24
+ Style/Documentation:
25
+ Enabled: false
26
+ StyleGuide: https://relaxed.ruby.style/#styledocumentation
27
+
28
+ Layout/DotPosition:
29
+ Enabled: false
30
+ StyleGuide: https://relaxed.ruby.style/#layoutdotposition
31
+
32
+ Style/DoubleNegation:
33
+ Enabled: false
34
+ StyleGuide: https://relaxed.ruby.style/#styledoublenegation
35
+
36
+ Style/EndBlock:
37
+ Enabled: false
38
+ StyleGuide: https://relaxed.ruby.style/#styleendblock
39
+
40
+ Style/FormatString:
41
+ Enabled: false
42
+ StyleGuide: https://relaxed.ruby.style/#styleformatstring
43
+
44
+ Style/IfUnlessModifier:
45
+ Enabled: false
46
+ StyleGuide: https://relaxed.ruby.style/#styleifunlessmodifier
47
+
48
+ Style/Lambda:
49
+ Enabled: false
50
+ StyleGuide: https://relaxed.ruby.style/#stylelambda
51
+
52
+ Style/ModuleFunction:
53
+ Enabled: false
54
+ StyleGuide: https://relaxed.ruby.style/#stylemodulefunction
55
+
56
+ Style/MultilineBlockChain:
57
+ Enabled: false
58
+ StyleGuide: https://relaxed.ruby.style/#stylemultilineblockchain
59
+
60
+ Style/NegatedIf:
61
+ Enabled: false
62
+ StyleGuide: https://relaxed.ruby.style/#stylenegatedif
63
+
64
+ Style/NegatedWhile:
65
+ Enabled: false
66
+ StyleGuide: https://relaxed.ruby.style/#stylenegatedwhile
67
+
68
+ Style/NumericPredicate:
69
+ Enabled: false
70
+ StyleGuide: https://relaxed.ruby.style/#stylenumericpredicate
71
+
72
+ Style/ParallelAssignment:
73
+ Enabled: false
74
+ StyleGuide: https://relaxed.ruby.style/#styleparallelassignment
75
+
76
+ Style/PercentLiteralDelimiters:
77
+ Enabled: false
78
+ StyleGuide: https://relaxed.ruby.style/#stylepercentliteraldelimiters
79
+
80
+ Style/PerlBackrefs:
81
+ Enabled: false
82
+ StyleGuide: https://relaxed.ruby.style/#styleperlbackrefs
83
+
84
+ Style/Semicolon:
85
+ Enabled: false
86
+ StyleGuide: https://relaxed.ruby.style/#stylesemicolon
87
+
88
+ Style/SignalException:
89
+ Enabled: false
90
+ StyleGuide: https://relaxed.ruby.style/#stylesignalexception
91
+
92
+ Style/SingleLineBlockParams:
93
+ Enabled: false
94
+ StyleGuide: https://relaxed.ruby.style/#stylesinglelineblockparams
95
+
96
+ Style/SingleLineMethods:
97
+ Enabled: false
98
+ StyleGuide: https://relaxed.ruby.style/#stylesinglelinemethods
99
+
100
+ Layout/SpaceBeforeBlockBraces:
101
+ Enabled: false
102
+ StyleGuide: https://relaxed.ruby.style/#layoutspacebeforeblockbraces
103
+
104
+ Layout/SpaceInsideParens:
105
+ Enabled: false
106
+ StyleGuide: https://relaxed.ruby.style/#layoutspaceinsideparens
107
+
108
+ Style/SpecialGlobalVars:
109
+ Enabled: false
110
+ StyleGuide: https://relaxed.ruby.style/#stylespecialglobalvars
111
+
112
+ Style/StringLiterals:
113
+ Enabled: false
114
+ StyleGuide: https://relaxed.ruby.style/#stylestringliterals
115
+
116
+ Style/TrailingCommaInArguments:
117
+ Enabled: false
118
+ StyleGuide: https://relaxed.ruby.style/#styletrailingcommainarguments
119
+
120
+ Style/TrailingCommaInArrayLiteral:
121
+ Enabled: false
122
+ StyleGuide: https://relaxed.ruby.style/#styletrailingcommainarrayliteral
123
+
124
+ Style/TrailingCommaInHashLiteral:
125
+ Enabled: false
126
+ StyleGuide: https://relaxed.ruby.style/#styletrailingcommainhashliteral
127
+
128
+ Style/SymbolArray:
129
+ Enabled: false
130
+ StyleGuide: http://relaxed.ruby.style/#stylesymbolarray
131
+
132
+ Style/WhileUntilModifier:
133
+ Enabled: false
134
+ StyleGuide: https://relaxed.ruby.style/#stylewhileuntilmodifier
135
+
136
+ Style/WordArray:
137
+ Enabled: false
138
+ StyleGuide: https://relaxed.ruby.style/#stylewordarray
139
+
140
+ Lint/AmbiguousRegexpLiteral:
141
+ Enabled: false
142
+ StyleGuide: https://relaxed.ruby.style/#lintambiguousregexpliteral
143
+
144
+ Lint/AssignmentInCondition:
145
+ Enabled: false
146
+ StyleGuide: https://relaxed.ruby.style/#lintassignmentincondition
147
+
148
+ Layout/LineLength:
149
+ Enabled: false
150
+
151
+ Metrics:
152
+ Enabled: false
153
+