featurehub-sdk 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 8a918d4c2cd828f070ede69b41bccaef489154f189bc93b497256f3589abec7f
4
+ data.tar.gz: 320522f90925794e6a12df0e3a034ddb46b81a69445d201447bc1bd51743d4e6
5
+ SHA512:
6
+ metadata.gz: 5ab24c0101cf91b2a0be85a92e5665d21397a7733be165c2c718208887b1060e29c621e12595ff4b2bbbf4f502fd40a6f1da89b62e147d77f2e9a4c9bd981f15
7
+ data.tar.gz: 00ee27a652e9c85cabed5e331c18d4bfb68ee32e625e513f330f8534a89cc191c63f1320ce466d80807cf7a0d7518950da78b005e3c759d0e76791a060757607
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,154 @@
1
+ AllCops:
2
+ TargetRubyVersion: 2.6
3
+
4
+ Style/StringLiterals:
5
+ Enabled: true
6
+ EnforcedStyle: double_quotes
7
+
8
+ Style/StringLiteralsInInterpolation:
9
+ Enabled: true
10
+ EnforcedStyle: double_quotes
11
+
12
+ Metrics/BlockLength:
13
+ Enabled: false
14
+
15
+ # affects similarity to other SDKs + pointless
16
+ Metrics/MethodLength:
17
+ Enabled: false
18
+
19
+ Layout/LineLength:
20
+ Max: 120
21
+
22
+ # affects similarity to other SDKs
23
+ Metrics/AbcSize:
24
+ Enabled: false
25
+
26
+ Metrics/PerceivedComplexity:
27
+ Enabled: false
28
+
29
+ Metrics/CyclomaticComplexity:
30
+ Enabled: false
31
+
32
+ Naming/FileName:
33
+ Enabled: false
34
+
35
+ Gemspec/DateAssignment: # new in 1.10
36
+ Enabled: true
37
+ Gemspec/DeprecatedAttributeAssignment: # new in 1.30
38
+ Enabled: true
39
+ Gemspec/RequireMFA: # new in 1.23
40
+ Enabled: true
41
+ Layout/LineEndStringConcatenationIndentation: # new in 1.18
42
+ Enabled: true
43
+ Layout/SpaceBeforeBrackets: # new in 1.7
44
+ Enabled: true
45
+ Lint/AmbiguousAssignment: # new in 1.7
46
+ Enabled: true
47
+ Lint/AmbiguousOperatorPrecedence: # new in 1.21
48
+ Enabled: true
49
+ Lint/AmbiguousRange: # new in 1.19
50
+ Enabled: true
51
+ Lint/DeprecatedConstants: # new in 1.8
52
+ Enabled: true
53
+ Lint/DuplicateBranch: # new in 1.3
54
+ Enabled: true
55
+ Lint/DuplicateRegexpCharacterClassElement: # new in 1.1
56
+ Enabled: true
57
+ Lint/EmptyBlock: # new in 1.1
58
+ Enabled: true
59
+ Lint/EmptyClass: # new in 1.3
60
+ Enabled: true
61
+ Lint/EmptyInPattern: # new in 1.16
62
+ Enabled: true
63
+ Lint/IncompatibleIoSelectWithFiberScheduler: # new in 1.21
64
+ Enabled: true
65
+ Lint/LambdaWithoutLiteralBlock: # new in 1.8
66
+ Enabled: true
67
+ Lint/NoReturnInBeginEndBlocks: # new in 1.2
68
+ Enabled: true
69
+ Lint/NumberedParameterAssignment: # new in 1.9
70
+ Enabled: true
71
+ Lint/OrAssignmentToConstant: # new in 1.9
72
+ Enabled: true
73
+ Lint/RedundantDirGlobSort: # new in 1.8
74
+ Enabled: true
75
+ Lint/RefinementImportMethods: # new in 1.27
76
+ Enabled: true
77
+ Lint/RequireRelativeSelfPath: # new in 1.22
78
+ Enabled: true
79
+ Lint/SymbolConversion: # new in 1.9
80
+ Enabled: true
81
+ Lint/ToEnumArguments: # new in 1.1
82
+ Enabled: true
83
+ Lint/TripleQuotes: # new in 1.9
84
+ Enabled: true
85
+ Lint/UnexpectedBlockArity: # new in 1.5
86
+ Enabled: true
87
+ Lint/UnmodifiedReduceAccumulator: # new in 1.1
88
+ Enabled: true
89
+ Lint/UselessRuby2Keywords: # new in 1.23
90
+ Enabled: true
91
+ Naming/BlockForwarding: # new in 1.24
92
+ Enabled: true
93
+ Security/CompoundHash: # new in 1.28
94
+ Enabled: true
95
+ Security/IoMethods: # new in 1.22
96
+ Enabled: true
97
+ Style/ArgumentsForwarding: # new in 1.1
98
+ Enabled: true
99
+ Style/CollectionCompact: # new in 1.2
100
+ Enabled: true
101
+ Style/DocumentDynamicEvalDefinition: # new in 1.1
102
+ Enabled: true
103
+ Style/EndlessMethod: # new in 1.8
104
+ Enabled: true
105
+ Style/EnvHome: # new in 1.29
106
+ Enabled: true
107
+ Style/FetchEnvVar: # new in 1.28
108
+ Enabled: true
109
+ Style/FileRead: # new in 1.24
110
+ Enabled: true
111
+ Style/FileWrite: # new in 1.24
112
+ Enabled: true
113
+ Style/HashConversion: # new in 1.10
114
+ Enabled: true
115
+ Style/HashExcept: # new in 1.7
116
+ Enabled: true
117
+ Style/IfWithBooleanLiteralBranches: # new in 1.9
118
+ Enabled: true
119
+ Style/InPatternThen: # new in 1.16
120
+ Enabled: true
121
+ Style/MapCompactWithConditionalBlock: # new in 1.30
122
+ Enabled: true
123
+ Style/MapToHash: # new in 1.24
124
+ Enabled: true
125
+ Style/MultilineInPatternThen: # new in 1.16
126
+ Enabled: true
127
+ Style/NegatedIfElseCondition: # new in 1.2
128
+ Enabled: true
129
+ Style/NestedFileDirname: # new in 1.26
130
+ Enabled: true
131
+ Style/NilLambda: # new in 1.3
132
+ Enabled: true
133
+ Style/NumberedParameters: # new in 1.22
134
+ Enabled: true
135
+ Style/NumberedParametersLimit: # new in 1.22
136
+ Enabled: true
137
+ Style/ObjectThen: # new in 1.28
138
+ Enabled: true
139
+ Style/OpenStructUse: # new in 1.23
140
+ Enabled: true
141
+ Style/QuotedSymbols: # new in 1.16
142
+ Enabled: true
143
+ Style/RedundantArgument: # new in 1.4
144
+ Enabled: true
145
+ Style/RedundantInitialize: # new in 1.27
146
+ Enabled: true
147
+ Style/RedundantSelfAssignmentBranch: # new in 1.19
148
+ Enabled: true
149
+ Style/SelectByRegexp: # new in 1.22
150
+ Enabled: true
151
+ Style/StringChars: # new in 1.12
152
+ Enabled: true
153
+ Style/SwapValues: # new in 1.1
154
+ Enabled: true
data/CHANGELOG.md ADDED
@@ -0,0 +1,3 @@
1
+ ## [1.0.0] - 2022-06-06
2
+
3
+ - Initial release, feature complete
@@ -0,0 +1,84 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
8
+
9
+ ## Our Standards
10
+
11
+ Examples of behavior that contributes to a positive environment for our community include:
12
+
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
18
+
19
+ Examples of unacceptable behavior include:
20
+
21
+ * The use of sexualized language or imagery, and sexual attention or
22
+ advances of any kind
23
+ * Trolling, insulting or derogatory comments, and personal or political attacks
24
+ * Public or private harassment
25
+ * Publishing others' private information, such as a physical or email
26
+ address, without their explicit permission
27
+ * Other conduct which could reasonably be considered inappropriate in a
28
+ professional setting
29
+
30
+ ## Enforcement Responsibilities
31
+
32
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
33
+
34
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
35
+
36
+ ## Scope
37
+
38
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
39
+
40
+ ## Enforcement
41
+
42
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at richard@bluetrainsoftware.com. All complaints will be reviewed and investigated promptly and fairly.
43
+
44
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
45
+
46
+ ## Enforcement Guidelines
47
+
48
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
49
+
50
+ ### 1. Correction
51
+
52
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
53
+
54
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
55
+
56
+ ### 2. Warning
57
+
58
+ **Community Impact**: A violation through a single incident or series of actions.
59
+
60
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
61
+
62
+ ### 3. Temporary Ban
63
+
64
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
65
+
66
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
67
+
68
+ ### 4. Permanent Ban
69
+
70
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
71
+
72
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
73
+
74
+ ## Attribution
75
+
76
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
77
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
78
+
79
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
80
+
81
+ [homepage]: https://www.contributor-covenant.org
82
+
83
+ For answers to common questions about this code of conduct, see the FAQ at
84
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
data/Gemfile ADDED
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ # Specify your gem's dependencies in featurehub-sdk.gemspec
6
+ gemspec
7
+
8
+ gem "rake", "~> 13.0"
9
+
10
+ gem "rspec", "~> 3.0"
11
+
12
+ gem "rubocop", "~> 1.21"
13
+
14
+ gem "simplecov", "~> 0.21"
15
+
16
+ gem "concurrent-ruby", "~> 1.1.10"
17
+
18
+ gem "faraday", "~> 2.3"
19
+
20
+ gem "murmurhash3", "~> 0.1.6"
21
+
22
+ gem "sem_version", "~> 2.0.0"
23
+
24
+ gem "ld-eventsource", "~> 2.2.0"
data/Gemfile.lock ADDED
@@ -0,0 +1,107 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ featurehub-sdk (1.0.0)
5
+ concurrent-ruby (~> 1.1.10)
6
+ faraday (~> 2.3)
7
+ ld-eventsource (~> 2.2.0)
8
+ murmurhash3 (~> 0.1.6)
9
+ sem_version (~> 2.0.0)
10
+
11
+ GEM
12
+ remote: https://rubygems.org/
13
+ specs:
14
+ addressable (2.8.0)
15
+ public_suffix (>= 2.0.2, < 5.0)
16
+ ast (2.4.2)
17
+ concurrent-ruby (1.1.10)
18
+ diff-lcs (1.5.0)
19
+ docile (1.4.0)
20
+ domain_name (0.5.20190701)
21
+ unf (>= 0.0.5, < 1.0.0)
22
+ faraday (2.3.0)
23
+ faraday-net_http (~> 2.0)
24
+ ruby2_keywords (>= 0.0.4)
25
+ faraday-net_http (2.0.3)
26
+ ffi (1.15.5)
27
+ ffi-compiler (1.0.1)
28
+ ffi (>= 1.0.0)
29
+ rake
30
+ http (5.0.4)
31
+ addressable (~> 2.8)
32
+ http-cookie (~> 1.0)
33
+ http-form_data (~> 2.2)
34
+ llhttp-ffi (~> 0.4.0)
35
+ http-cookie (1.0.5)
36
+ domain_name (~> 0.5)
37
+ http-form_data (2.3.0)
38
+ ld-eventsource (2.2.0)
39
+ concurrent-ruby (~> 1.0)
40
+ http (>= 4.4.1, < 6.0.0)
41
+ llhttp-ffi (0.4.0)
42
+ ffi-compiler (~> 1.0)
43
+ rake (~> 13.0)
44
+ murmurhash3 (0.1.6)
45
+ parallel (1.22.1)
46
+ parser (3.1.2.0)
47
+ ast (~> 2.4.1)
48
+ public_suffix (4.0.7)
49
+ rainbow (3.1.1)
50
+ rake (13.0.6)
51
+ regexp_parser (2.5.0)
52
+ rexml (3.2.5)
53
+ rspec (3.11.0)
54
+ rspec-core (~> 3.11.0)
55
+ rspec-expectations (~> 3.11.0)
56
+ rspec-mocks (~> 3.11.0)
57
+ rspec-core (3.11.0)
58
+ rspec-support (~> 3.11.0)
59
+ rspec-expectations (3.11.0)
60
+ diff-lcs (>= 1.2.0, < 2.0)
61
+ rspec-support (~> 3.11.0)
62
+ rspec-mocks (3.11.1)
63
+ diff-lcs (>= 1.2.0, < 2.0)
64
+ rspec-support (~> 3.11.0)
65
+ rspec-support (3.11.0)
66
+ rubocop (1.30.1)
67
+ parallel (~> 1.10)
68
+ parser (>= 3.1.0.0)
69
+ rainbow (>= 2.2.2, < 4.0)
70
+ regexp_parser (>= 1.8, < 3.0)
71
+ rexml (>= 3.2.5, < 4.0)
72
+ rubocop-ast (>= 1.18.0, < 2.0)
73
+ ruby-progressbar (~> 1.7)
74
+ unicode-display_width (>= 1.4.0, < 3.0)
75
+ rubocop-ast (1.18.0)
76
+ parser (>= 3.1.1.0)
77
+ ruby-progressbar (1.11.0)
78
+ ruby2_keywords (0.0.5)
79
+ sem_version (2.0.1)
80
+ simplecov (0.21.2)
81
+ docile (~> 1.1)
82
+ simplecov-html (~> 0.11)
83
+ simplecov_json_formatter (~> 0.1)
84
+ simplecov-html (0.12.3)
85
+ simplecov_json_formatter (0.1.4)
86
+ unf (0.1.4)
87
+ unf_ext
88
+ unf_ext (0.0.8.2)
89
+ unicode-display_width (2.1.0)
90
+
91
+ PLATFORMS
92
+ ruby
93
+
94
+ DEPENDENCIES
95
+ concurrent-ruby (~> 1.1.10)
96
+ faraday (~> 2.3)
97
+ featurehub-sdk!
98
+ ld-eventsource (~> 2.2.0)
99
+ murmurhash3 (~> 0.1.6)
100
+ rake (~> 13.0)
101
+ rspec (~> 3.0)
102
+ rubocop (~> 1.21)
103
+ sem_version (~> 2.0.0)
104
+ simplecov (~> 0.21)
105
+
106
+ BUNDLED WITH
107
+ 2.1.4
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2022 Richard Vowles
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/Rakefile ADDED
@@ -0,0 +1,12 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ require "rubocop/rake_task"
9
+
10
+ RuboCop::RakeTask.new
11
+
12
+ task default: %i[spec rubocop]
@@ -0,0 +1,45 @@
1
+ # frozen_string_literal: true
2
+
3
+ lib = File.expand_path("lib", __dir__)
4
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
+ require "feature_hub/sdk/version"
6
+
7
+ Gem::Specification.new do |spec|
8
+ spec.name = "featurehub-sdk"
9
+ spec.version = FeatureHub::Sdk::VERSION
10
+ spec.authors = ["Richard Vowles", "Irina Southwell"]
11
+ spec.email = ["richard@bluetrainsoftware.com"]
12
+
13
+ spec.summary = "FeatureHub Ruby SDK"
14
+ spec.description = "FeatureHub Ruby SDK"
15
+ spec.homepage = "https://www.featurehub.io"
16
+ spec.license = "MIT"
17
+ spec.required_ruby_version = ">= 2.6.0"
18
+
19
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
20
+
21
+ spec.metadata["homepage_uri"] = spec.homepage
22
+ spec.metadata["source_code_uri"] = "https://github.com/featurehub-io/featurehub-ruby-sdk"
23
+ spec.metadata["changelog_uri"] = "https://github.com/featurehub-io/featurehub-ruby-sdk/featurehub-sdk/CHANGELOG.md"
24
+ spec.metadata["rubygems_mfa_required"] = "true"
25
+
26
+ # Specify which files should be added to the gem when it is released.
27
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
28
+ spec.files = Dir.chdir(File.expand_path(__dir__)) do
29
+ `git ls-files -z`.split("\x0").reject do |f|
30
+ (f == __FILE__) || f.match(%r{\A(?:(?:bin|test|spec|features)/|\.(?:git|travis|circleci)|appveyor)})
31
+ end
32
+ end
33
+ spec.bindir = "exe"
34
+ spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
35
+ spec.require_paths = ["lib"]
36
+
37
+ spec.add_dependency "concurrent-ruby", "~> 1.1.10"
38
+ spec.add_dependency "faraday", "~> 2.3"
39
+ spec.add_dependency "ld-eventsource", "~> 2.2.0"
40
+ spec.add_dependency "murmurhash3", "~> 0.1.6"
41
+ spec.add_dependency "sem_version", "~> 2.0.0"
42
+
43
+ # For more information and examples about making a new gem, check out our
44
+ # guide at: https://bundler.io/guides/creating_gem.html
45
+ end
@@ -0,0 +1,83 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="RUBY_MODULE" version="4">
3
+ <component name="NewModuleRootManager" inherit-compiler-output="true">
4
+ <exclude-output />
5
+ <content url="file://$MODULE_DIR$" />
6
+ <orderEntry type="jdk" jdkName="rbenv: 2.7.6" jdkType="RUBY_SDK" />
7
+ <orderEntry type="sourceFolder" forTests="false" />
8
+ <orderEntry type="library" scope="PROVIDED" name="addressable (v2.8.0, rbenv: 2.7.6) [gem]" level="application" />
9
+ <orderEntry type="library" scope="PROVIDED" name="ast (v2.4.2, rbenv: 2.7.6) [gem]" level="application" />
10
+ <orderEntry type="library" scope="PROVIDED" name="bundler (v2.1.4, rbenv: 2.7.6) [gem]" level="application" />
11
+ <orderEntry type="library" scope="PROVIDED" name="concurrent-ruby (v1.1.10, rbenv: 2.7.6) [gem]" level="application" />
12
+ <orderEntry type="library" scope="PROVIDED" name="diff-lcs (v1.5.0, rbenv: 2.7.6) [gem]" level="application" />
13
+ <orderEntry type="library" scope="PROVIDED" name="docile (v1.4.0, rbenv: 2.7.6) [gem]" level="application" />
14
+ <orderEntry type="library" scope="PROVIDED" name="domain_name (v0.5.20190701, rbenv: 2.7.6) [gem]" level="application" />
15
+ <orderEntry type="library" scope="PROVIDED" name="faraday (v2.3.0, rbenv: 2.7.6) [gem]" level="application" />
16
+ <orderEntry type="library" scope="PROVIDED" name="faraday-net_http (v2.0.3, rbenv: 2.7.6) [gem]" level="application" />
17
+ <orderEntry type="library" scope="PROVIDED" name="ffi (v1.15.5, rbenv: 2.7.6) [gem]" level="application" />
18
+ <orderEntry type="library" scope="PROVIDED" name="ffi-compiler (v1.0.1, rbenv: 2.7.6) [gem]" level="application" />
19
+ <orderEntry type="library" scope="PROVIDED" name="http (v5.0.4, rbenv: 2.7.6) [gem]" level="application" />
20
+ <orderEntry type="library" scope="PROVIDED" name="http-cookie (v1.0.5, rbenv: 2.7.6) [gem]" level="application" />
21
+ <orderEntry type="library" scope="PROVIDED" name="http-form_data (v2.3.0, rbenv: 2.7.6) [gem]" level="application" />
22
+ <orderEntry type="library" scope="PROVIDED" name="ld-eventsource (v2.2.0, rbenv: 2.7.6) [gem]" level="application" />
23
+ <orderEntry type="library" scope="PROVIDED" name="llhttp-ffi (v0.4.0, rbenv: 2.7.6) [gem]" level="application" />
24
+ <orderEntry type="library" scope="PROVIDED" name="murmurhash3 (v0.1.6, rbenv: 2.7.6) [gem]" level="application" />
25
+ <orderEntry type="library" scope="PROVIDED" name="parallel (v1.22.1, rbenv: 2.7.6) [gem]" level="application" />
26
+ <orderEntry type="library" scope="PROVIDED" name="parser (v3.1.2.0, rbenv: 2.7.6) [gem]" level="application" />
27
+ <orderEntry type="library" scope="PROVIDED" name="public_suffix (v4.0.7, rbenv: 2.7.6) [gem]" level="application" />
28
+ <orderEntry type="library" scope="PROVIDED" name="rainbow (v3.1.1, rbenv: 2.7.6) [gem]" level="application" />
29
+ <orderEntry type="library" scope="PROVIDED" name="rake (v13.0.6, rbenv: 2.7.6) [gem]" level="application" />
30
+ <orderEntry type="library" scope="PROVIDED" name="regexp_parser (v2.5.0, rbenv: 2.7.6) [gem]" level="application" />
31
+ <orderEntry type="library" scope="PROVIDED" name="rexml (v3.2.5, rbenv: 2.7.6) [gem]" level="application" />
32
+ <orderEntry type="library" scope="PROVIDED" name="rspec (v3.11.0, rbenv: 2.7.6) [gem]" level="application" />
33
+ <orderEntry type="library" scope="PROVIDED" name="rspec-core (v3.11.0, rbenv: 2.7.6) [gem]" level="application" />
34
+ <orderEntry type="library" scope="PROVIDED" name="rspec-expectations (v3.11.0, rbenv: 2.7.6) [gem]" level="application" />
35
+ <orderEntry type="library" scope="PROVIDED" name="rspec-mocks (v3.11.1, rbenv: 2.7.6) [gem]" level="application" />
36
+ <orderEntry type="library" scope="PROVIDED" name="rspec-support (v3.11.0, rbenv: 2.7.6) [gem]" level="application" />
37
+ <orderEntry type="library" scope="PROVIDED" name="rubocop (v1.30.1, rbenv: 2.7.6) [gem]" level="application" />
38
+ <orderEntry type="library" scope="PROVIDED" name="rubocop-ast (v1.18.0, rbenv: 2.7.6) [gem]" level="application" />
39
+ <orderEntry type="library" scope="PROVIDED" name="ruby-progressbar (v1.11.0, rbenv: 2.7.6) [gem]" level="application" />
40
+ <orderEntry type="library" scope="PROVIDED" name="ruby2_keywords (v0.0.5, rbenv: 2.7.6) [gem]" level="application" />
41
+ <orderEntry type="library" scope="PROVIDED" name="sem_version (v2.0.1, rbenv: 2.7.6) [gem]" level="application" />
42
+ <orderEntry type="library" scope="PROVIDED" name="simplecov (v0.21.2, rbenv: 2.7.6) [gem]" level="application" />
43
+ <orderEntry type="library" scope="PROVIDED" name="simplecov-html (v0.12.3, rbenv: 2.7.6) [gem]" level="application" />
44
+ <orderEntry type="library" scope="PROVIDED" name="simplecov_json_formatter (v0.1.4, rbenv: 2.7.6) [gem]" level="application" />
45
+ <orderEntry type="library" scope="PROVIDED" name="unf (v0.1.4, rbenv: 2.7.6) [gem]" level="application" />
46
+ <orderEntry type="library" scope="PROVIDED" name="unf_ext (v0.0.8.2, rbenv: 2.7.6) [gem]" level="application" />
47
+ <orderEntry type="library" scope="PROVIDED" name="unicode-display_width (v2.1.0, rbenv: 2.7.6) [gem]" level="application" />
48
+ </component>
49
+ <component name="RakeTasksCache">
50
+ <option name="myRootTask">
51
+ <RakeTaskImpl id="rake">
52
+ <subtasks>
53
+ <RakeTaskImpl description="Build featurehub-sdk-0.0.1.gem into the pkg directory" fullCommand="build" id="build" />
54
+ <RakeTaskImpl description="Remove any temporary products" fullCommand="clean" id="clean" />
55
+ <RakeTaskImpl description="Remove any generated files" fullCommand="clobber" id="clobber" />
56
+ <RakeTaskImpl description="Build and install featurehub-sdk-0.0.1.gem into system gems" fullCommand="install" id="install" />
57
+ <RakeTaskImpl id="install">
58
+ <subtasks>
59
+ <RakeTaskImpl description="Build and install featurehub-sdk-0.0.1.gem into system gems without network access" fullCommand="install:local" id="local" />
60
+ </subtasks>
61
+ </RakeTaskImpl>
62
+ <RakeTaskImpl description="Create tag v0.0.1 and build and push featurehub-sdk-0.0.1.gem to https://github.com/featurehub-io/featurehub-ruby-sdk" fullCommand="release[remote]" id="release[remote]" />
63
+ <RakeTaskImpl description="Run RuboCop" fullCommand="rubocop" id="rubocop" />
64
+ <RakeTaskImpl id="rubocop">
65
+ <subtasks>
66
+ <RakeTaskImpl description="Autocorrect RuboCop offenses" fullCommand="rubocop:auto_correct" id="auto_correct" />
67
+ </subtasks>
68
+ </RakeTaskImpl>
69
+ <RakeTaskImpl description="Run RSpec code examples" fullCommand="spec" id="spec" />
70
+ <RakeTaskImpl description="" fullCommand="default" id="default" />
71
+ <RakeTaskImpl description="" fullCommand="release" id="release" />
72
+ <RakeTaskImpl id="release">
73
+ <subtasks>
74
+ <RakeTaskImpl description="" fullCommand="release:guard_clean" id="guard_clean" />
75
+ <RakeTaskImpl description="" fullCommand="release:rubygem_push" id="rubygem_push" />
76
+ <RakeTaskImpl description="" fullCommand="release:source_control_push" id="source_control_push" />
77
+ </subtasks>
78
+ </RakeTaskImpl>
79
+ </subtasks>
80
+ </RakeTaskImpl>
81
+ </option>
82
+ </component>
83
+ </module>