fixings 0.1.0

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: 8406c9e445c2613fd519783dcda2e28eb7663961a8c6d63d5abc1139eea5f248
4
+ data.tar.gz: 5f4d334e9783da609008eaa73bc60ac6f16869bb32c75dc67192f418e66830e5
5
+ SHA512:
6
+ metadata.gz: 7ef74cba41d23f10cfc19d03fa3f0a1d5647e138371281037ede2170c25133a74176214c195aa963cf3e680498eb491a836132eb1d95cc32e78f7b682f1e5c8a
7
+ data.tar.gz: f9c479e46c0a2d630915bffd93cd38e81d2ca07a34240b9655bfca05a0c3cc4217c0d5a8d6ac9663251b17dec19c4dd23241813c5adb5971c1e393bf5dac6453
@@ -0,0 +1,8 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
@@ -0,0 +1,111 @@
1
+ AllCops:
2
+ Exclude:
3
+ - "bin/**/*"
4
+ - "vendor/**/*"
5
+ - "node_modules/**/*"
6
+ - "test/scratch/**/*"
7
+ TargetRubyVersion: 2.6
8
+
9
+ require:
10
+ - rubocop-performance
11
+ - rubocop-rails
12
+
13
+ Rails:
14
+ Enabled: true
15
+
16
+ Security:
17
+ Enabled: true
18
+
19
+ Performance:
20
+ Enabled: true
21
+
22
+ Layout:
23
+ Enabled: false
24
+
25
+ Metrics:
26
+ Enabled: false
27
+
28
+ Naming/MemoizedInstanceVariableName:
29
+ Enabled: false
30
+
31
+ Lint/AmbiguousBlockAssociation:
32
+ Enabled: false
33
+
34
+ Rails/UnknownEnv:
35
+ Environments:
36
+ - production
37
+ - development
38
+ - test
39
+ - integration_test
40
+
41
+ Bundler/OrderedGems:
42
+ Enabled: false
43
+
44
+ Style/FrozenStringLiteralComment:
45
+ Enabled: true
46
+ EnforcedStyle: always
47
+
48
+ Style/StringLiterals:
49
+ Enabled: false
50
+
51
+ Style/TrailingCommaInHashLiteral:
52
+ Enabled: false
53
+
54
+ Style/TrailingCommaInArguments:
55
+ Enabled: false
56
+
57
+ Style/ClassAndModuleChildren:
58
+ Enabled: false
59
+
60
+ Style/HashSyntax:
61
+ Enabled: false
62
+
63
+ Style/NumericLiterals:
64
+ Enabled: false
65
+
66
+ Style/IfUnlessModifier:
67
+ Enabled: false
68
+
69
+ Style/RedundantParentheses:
70
+ Enabled: false
71
+
72
+ Style/GuardClause:
73
+ Enabled: false
74
+
75
+ Style/Documentation:
76
+ Enabled: false
77
+ Exclude:
78
+ - spec/**/*
79
+ - test/**/*
80
+ - db/**/*
81
+ - app/graphql/types/**/*
82
+ - app/graphql/mutations/**/*
83
+ - app/helpers/**/*
84
+ - app/jobs/**/*
85
+
86
+ Style/RedundantSelf:
87
+ Enabled: false
88
+
89
+ Style/DoubleNegation:
90
+ Enabled: false
91
+
92
+ Style/NegatedIf:
93
+ Enabled: false
94
+
95
+ Style/TrailingUnderscoreVariable:
96
+ Enabled: false
97
+
98
+ Style/EmptyMethod:
99
+ Enabled: false
100
+
101
+ Style/StringLiteralsInInterpolation:
102
+ Enabled: false
103
+
104
+ Style/TrailingCommaInArrayLiteral:
105
+ Enabled: false
106
+
107
+ Style/NumericPredicate:
108
+ Enabled: false
109
+
110
+ Rails/FilePath:
111
+ Enabled: false
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at harry.brundage@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [https://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: https://contributor-covenant.org
74
+ [version]: https://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+ source "https://rubygems.org"
3
+
4
+ # Specify your gem's dependencies in fixings.gemspec
5
+ gemspec
6
+
7
+ gem "rake", "~> 12.0"
@@ -0,0 +1,263 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ fixings (0.1.0)
5
+ active_record_query_trace
6
+ annotate
7
+ ar_transaction_changes
8
+ bcrypt
9
+ bullet
10
+ flipper
11
+ flipper-active_record
12
+ flipper-active_support_cache_store
13
+ flipper-ui
14
+ health_check
15
+ letter_opener
16
+ letter_opener_web
17
+ marginalia
18
+ minitest-ci
19
+ minitest-snapshots
20
+ mocha
21
+ oj
22
+ rack-cors
23
+ rails (~> 6.0)
24
+ rails-middleware-extensions
25
+ rails_semantic_logger
26
+ rubocop
27
+ rubocop-performance
28
+ rubocop-rails
29
+ rufo
30
+ sentry-raven
31
+ timecop
32
+ vcr
33
+ webmock
34
+
35
+ GEM
36
+ remote: https://rubygems.org/
37
+ specs:
38
+ actioncable (6.0.2.1)
39
+ actionpack (= 6.0.2.1)
40
+ nio4r (~> 2.0)
41
+ websocket-driver (>= 0.6.1)
42
+ actionmailbox (6.0.2.1)
43
+ actionpack (= 6.0.2.1)
44
+ activejob (= 6.0.2.1)
45
+ activerecord (= 6.0.2.1)
46
+ activestorage (= 6.0.2.1)
47
+ activesupport (= 6.0.2.1)
48
+ mail (>= 2.7.1)
49
+ actionmailer (6.0.2.1)
50
+ actionpack (= 6.0.2.1)
51
+ actionview (= 6.0.2.1)
52
+ activejob (= 6.0.2.1)
53
+ mail (~> 2.5, >= 2.5.4)
54
+ rails-dom-testing (~> 2.0)
55
+ actionpack (6.0.2.1)
56
+ actionview (= 6.0.2.1)
57
+ activesupport (= 6.0.2.1)
58
+ rack (~> 2.0, >= 2.0.8)
59
+ rack-test (>= 0.6.3)
60
+ rails-dom-testing (~> 2.0)
61
+ rails-html-sanitizer (~> 1.0, >= 1.2.0)
62
+ actiontext (6.0.2.1)
63
+ actionpack (= 6.0.2.1)
64
+ activerecord (= 6.0.2.1)
65
+ activestorage (= 6.0.2.1)
66
+ activesupport (= 6.0.2.1)
67
+ nokogiri (>= 1.8.5)
68
+ actionview (6.0.2.1)
69
+ activesupport (= 6.0.2.1)
70
+ builder (~> 3.1)
71
+ erubi (~> 1.4)
72
+ rails-dom-testing (~> 2.0)
73
+ rails-html-sanitizer (~> 1.1, >= 1.2.0)
74
+ active_record_query_trace (1.7)
75
+ activejob (6.0.2.1)
76
+ activesupport (= 6.0.2.1)
77
+ globalid (>= 0.3.6)
78
+ activemodel (6.0.2.1)
79
+ activesupport (= 6.0.2.1)
80
+ activerecord (6.0.2.1)
81
+ activemodel (= 6.0.2.1)
82
+ activesupport (= 6.0.2.1)
83
+ activestorage (6.0.2.1)
84
+ actionpack (= 6.0.2.1)
85
+ activejob (= 6.0.2.1)
86
+ activerecord (= 6.0.2.1)
87
+ marcel (~> 0.3.1)
88
+ activesupport (6.0.2.1)
89
+ concurrent-ruby (~> 1.0, >= 1.0.2)
90
+ i18n (>= 0.7, < 2)
91
+ minitest (~> 5.1)
92
+ tzinfo (~> 1.1)
93
+ zeitwerk (~> 2.2)
94
+ addressable (2.7.0)
95
+ public_suffix (>= 2.0.2, < 5.0)
96
+ annotate (3.0.3)
97
+ activerecord (>= 3.2, < 7.0)
98
+ rake (>= 10.4, < 14.0)
99
+ ar_transaction_changes (1.1.4)
100
+ activerecord (>= 4.2.4)
101
+ ast (2.4.0)
102
+ bcrypt (3.1.13)
103
+ builder (3.2.4)
104
+ bullet (6.1.0)
105
+ activesupport (>= 3.0.0)
106
+ uniform_notifier (~> 1.11)
107
+ concurrent-ruby (1.1.5)
108
+ crack (0.4.3)
109
+ safe_yaml (~> 1.0.0)
110
+ crass (1.0.6)
111
+ erubi (1.9.0)
112
+ faraday (0.17.3)
113
+ multipart-post (>= 1.2, < 3)
114
+ flipper (0.17.2)
115
+ flipper-active_record (0.17.2)
116
+ activerecord (>= 4.2, < 7)
117
+ flipper (~> 0.17.2)
118
+ flipper-active_support_cache_store (0.17.2)
119
+ activesupport (>= 4.2, < 7)
120
+ flipper (~> 0.17.2)
121
+ flipper-ui (0.17.2)
122
+ erubi (>= 1.0.0, < 2.0.0)
123
+ flipper (~> 0.17.2)
124
+ rack (>= 1.4, < 3)
125
+ rack-protection (>= 1.5.3, < 2.1.0)
126
+ globalid (0.4.2)
127
+ activesupport (>= 4.2.0)
128
+ hashdiff (1.0.0)
129
+ health_check (3.0.0)
130
+ railties (>= 5.0)
131
+ i18n (1.8.2)
132
+ concurrent-ruby (~> 1.0)
133
+ jaro_winkler (1.5.4)
134
+ launchy (2.4.3)
135
+ addressable (~> 2.3)
136
+ letter_opener (1.7.0)
137
+ launchy (~> 2.2)
138
+ letter_opener_web (1.3.4)
139
+ actionmailer (>= 3.2)
140
+ letter_opener (~> 1.0)
141
+ railties (>= 3.2)
142
+ loofah (2.4.0)
143
+ crass (~> 1.0.2)
144
+ nokogiri (>= 1.5.9)
145
+ mail (2.7.1)
146
+ mini_mime (>= 0.1.1)
147
+ marcel (0.3.3)
148
+ mimemagic (~> 0.3.2)
149
+ marginalia (1.8.0)
150
+ actionpack (>= 2.3)
151
+ activerecord (>= 2.3)
152
+ method_source (0.9.2)
153
+ mimemagic (0.3.3)
154
+ mini_mime (1.0.2)
155
+ mini_portile2 (2.4.0)
156
+ minitest (5.14.0)
157
+ minitest-ci (3.4.0)
158
+ minitest (>= 5.0.6)
159
+ minitest-snapshots (0.3.0)
160
+ mocha (1.11.2)
161
+ multipart-post (2.1.1)
162
+ nio4r (2.5.2)
163
+ nokogiri (1.10.7)
164
+ mini_portile2 (~> 2.4.0)
165
+ oj (3.10.1)
166
+ parallel (1.19.1)
167
+ parser (2.7.0.2)
168
+ ast (~> 2.4.0)
169
+ public_suffix (4.0.3)
170
+ rack (2.1.1)
171
+ rack-cors (1.1.1)
172
+ rack (>= 2.0.0)
173
+ rack-protection (2.0.8.1)
174
+ rack
175
+ rack-test (1.1.0)
176
+ rack (>= 1.0, < 3)
177
+ rails (6.0.2.1)
178
+ actioncable (= 6.0.2.1)
179
+ actionmailbox (= 6.0.2.1)
180
+ actionmailer (= 6.0.2.1)
181
+ actionpack (= 6.0.2.1)
182
+ actiontext (= 6.0.2.1)
183
+ actionview (= 6.0.2.1)
184
+ activejob (= 6.0.2.1)
185
+ activemodel (= 6.0.2.1)
186
+ activerecord (= 6.0.2.1)
187
+ activestorage (= 6.0.2.1)
188
+ activesupport (= 6.0.2.1)
189
+ bundler (>= 1.3.0)
190
+ railties (= 6.0.2.1)
191
+ sprockets-rails (>= 2.0.0)
192
+ rails-dom-testing (2.0.3)
193
+ activesupport (>= 4.2.0)
194
+ nokogiri (>= 1.6)
195
+ rails-html-sanitizer (1.3.0)
196
+ loofah (~> 2.3)
197
+ rails-middleware-extensions (1.0.0)
198
+ actionpack (>= 4.0)
199
+ railties (>= 4.0)
200
+ rails_semantic_logger (4.4.3)
201
+ rack
202
+ railties (>= 3.2)
203
+ semantic_logger (~> 4.4)
204
+ railties (6.0.2.1)
205
+ actionpack (= 6.0.2.1)
206
+ activesupport (= 6.0.2.1)
207
+ method_source
208
+ rake (>= 0.8.7)
209
+ thor (>= 0.20.3, < 2.0)
210
+ rainbow (3.0.0)
211
+ rake (12.3.3)
212
+ rubocop (0.79.0)
213
+ jaro_winkler (~> 1.5.1)
214
+ parallel (~> 1.10)
215
+ parser (>= 2.7.0.1)
216
+ rainbow (>= 2.2.2, < 4.0)
217
+ ruby-progressbar (~> 1.7)
218
+ unicode-display_width (>= 1.4.0, < 1.7)
219
+ rubocop-performance (1.5.2)
220
+ rubocop (>= 0.71.0)
221
+ rubocop-rails (2.4.1)
222
+ rack (>= 1.1)
223
+ rubocop (>= 0.72.0)
224
+ ruby-progressbar (1.10.1)
225
+ rufo (0.9.0)
226
+ safe_yaml (1.0.5)
227
+ semantic_logger (4.6.0)
228
+ concurrent-ruby (~> 1.0)
229
+ sentry-raven (2.13.0)
230
+ faraday (>= 0.7.6, < 1.0)
231
+ sprockets (4.0.0)
232
+ concurrent-ruby (~> 1.0)
233
+ rack (> 1, < 3)
234
+ sprockets-rails (3.2.1)
235
+ actionpack (>= 4.0)
236
+ activesupport (>= 4.0)
237
+ sprockets (>= 3.0.0)
238
+ thor (1.0.1)
239
+ thread_safe (0.3.6)
240
+ timecop (0.9.1)
241
+ tzinfo (1.2.6)
242
+ thread_safe (~> 0.1)
243
+ unicode-display_width (1.6.1)
244
+ uniform_notifier (1.13.0)
245
+ vcr (5.0.0)
246
+ webmock (3.8.0)
247
+ addressable (>= 2.3.6)
248
+ crack (>= 0.3.2)
249
+ hashdiff (>= 0.4.0, < 2.0.0)
250
+ websocket-driver (0.7.1)
251
+ websocket-extensions (>= 0.1.0)
252
+ websocket-extensions (0.1.4)
253
+ zeitwerk (2.2.2)
254
+
255
+ PLATFORMS
256
+ ruby
257
+
258
+ DEPENDENCIES
259
+ fixings!
260
+ rake (~> 12.0)
261
+
262
+ BUNDLED WITH
263
+ 2.1.4