devise-foundationed 0.1.1

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: f62dd28e09a7be110354158ac6505a07ac3656862187fc7bd36a1c04bd95ce5c
4
+ data.tar.gz: 11c1f27e733cf27e0e18f5c837c64b7b39c58b010a8a78d33c7e217f5deb1609
5
+ SHA512:
6
+ metadata.gz: f491ee8a1f43b9699b72a5652edf027b023508527d1907658627ddcc10a2bc61dee0e270a13798819bc5eac36d64da59855409960b14fc18872224fc0dfd12ad
7
+ data.tar.gz: 2cebefde43777799ae3592bf5861f739ad795f566e0cb2a3abc745d6144b26a795e6e9d1395a7b099408871edbe01e67caee31bbea42bd40cdbc82f3fb4a4438
@@ -0,0 +1,60 @@
1
+ *.rbc
2
+ capybara-*.html
3
+
4
+ /log
5
+ /tmp
6
+ /db/*.sqlite3
7
+ /db/*.sqlite3-journal
8
+ /public/system
9
+ /coverage/
10
+ /spec/tmp
11
+ *.orig
12
+ rerun.txt
13
+ pickle-email-*.html
14
+
15
+ # TODO Comment out this rule if you are OK with secrets being uploaded to the repo
16
+ config/initializers/secret_token.rb
17
+ config/master.key
18
+
19
+ # Only include if you have production secrets in this file, which is no longer a Rails default
20
+ # config/secrets.yml
21
+
22
+ # dotenv
23
+ # TODO Comment out this rule if environment variables can be committed
24
+ .env
25
+
26
+ ## Environment normalization:
27
+ /.bundle
28
+ /vendor/bundle
29
+
30
+ # these should all be checked in to normalize the environment:
31
+ # Gemfile.lock, .ruby-version, .ruby-gemset
32
+
33
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
34
+ .rvmrc
35
+
36
+ # if using bower-rails ignore default bower_components path bower.json files
37
+ /vendor/assets/bower_components
38
+ *.bowerrc
39
+ bower.json
40
+
41
+ # Ignore pow environment settings
42
+ .powenv
43
+
44
+ # Ignore Byebug command history file.
45
+ .byebug_history
46
+
47
+ # Ignore node_modules
48
+ node_modules/
49
+
50
+ /.bundle/
51
+ /.yardoc
52
+ /_yardoc/
53
+ /coverage/
54
+ /doc/
55
+ /pkg/
56
+ /spec/reports/
57
+ /tmp/
58
+
59
+ # rspec failure tracking
60
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,7 @@
1
+ ---
2
+ sudo: false
3
+ language: ruby
4
+ cache: bundler
5
+ rvm:
6
+ - 2.5.1
7
+ before_install: gem install bundler -v 1.16.6
@@ -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 p.osiczko@tetrapyloctomy.org. 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 [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
4
+
5
+ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
6
+
7
+ # Specify your gem's dependencies in devise-foundationed.git.gemspec
8
+ gemspec
@@ -0,0 +1,276 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ devise-foundationed (0.1.1)
5
+ rails (~> 5.2.3, <= 6.0)
6
+ railties (> 4.0, < 6.0)
7
+
8
+ GEM
9
+ remote: https://rubygems.org/
10
+ specs:
11
+ actioncable (5.2.3)
12
+ actionpack (= 5.2.3)
13
+ nio4r (~> 2.0)
14
+ websocket-driver (>= 0.6.1)
15
+ actionmailer (5.2.3)
16
+ actionpack (= 5.2.3)
17
+ actionview (= 5.2.3)
18
+ activejob (= 5.2.3)
19
+ mail (~> 2.5, >= 2.5.4)
20
+ rails-dom-testing (~> 2.0)
21
+ actionpack (5.2.3)
22
+ actionview (= 5.2.3)
23
+ activesupport (= 5.2.3)
24
+ rack (~> 2.0)
25
+ rack-test (>= 0.6.3)
26
+ rails-dom-testing (~> 2.0)
27
+ rails-html-sanitizer (~> 1.0, >= 1.0.2)
28
+ actionview (5.2.3)
29
+ activesupport (= 5.2.3)
30
+ builder (~> 3.1)
31
+ erubi (~> 1.4)
32
+ rails-dom-testing (~> 2.0)
33
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
34
+ activejob (5.2.3)
35
+ activesupport (= 5.2.3)
36
+ globalid (>= 0.3.6)
37
+ activemodel (5.2.3)
38
+ activesupport (= 5.2.3)
39
+ activerecord (5.2.3)
40
+ activemodel (= 5.2.3)
41
+ activesupport (= 5.2.3)
42
+ arel (>= 9.0)
43
+ activestorage (5.2.3)
44
+ actionpack (= 5.2.3)
45
+ activerecord (= 5.2.3)
46
+ marcel (~> 0.3.1)
47
+ activesupport (5.2.3)
48
+ concurrent-ruby (~> 1.0, >= 1.0.2)
49
+ i18n (>= 0.7, < 2)
50
+ minitest (~> 5.1)
51
+ tzinfo (~> 1.1)
52
+ arel (9.0.0)
53
+ ast (2.4.0)
54
+ axiom-types (0.1.1)
55
+ descendants_tracker (~> 0.0.4)
56
+ ice_nine (~> 0.11.0)
57
+ thread_safe (~> 0.3, >= 0.3.1)
58
+ builder (3.2.3)
59
+ bundler-audit (0.6.1)
60
+ bundler (>= 1.2.0, < 3)
61
+ thor (~> 0.18)
62
+ byebug (11.0.1)
63
+ codeclimate-engine-rb (0.4.1)
64
+ virtus (~> 1.0)
65
+ coderay (1.1.2)
66
+ coercible (1.0.0)
67
+ descendants_tracker (~> 0.0.1)
68
+ concurrent-ruby (1.1.5)
69
+ crass (1.0.4)
70
+ descendants_tracker (0.0.4)
71
+ thread_safe (~> 0.3, >= 0.3.1)
72
+ diff-lcs (1.3)
73
+ equalizer (0.0.11)
74
+ equatable (0.5.0)
75
+ erubi (1.8.0)
76
+ ffi (1.10.0)
77
+ formatador (0.2.5)
78
+ gemsmith (13.4.0)
79
+ milestoner (~> 9.0)
80
+ pragmater (~> 6.0)
81
+ refinements (~> 6.0)
82
+ rubocop (~> 0.67)
83
+ runcom (~> 4.0)
84
+ thor (~> 0.20)
85
+ tocer (~> 8.0)
86
+ versionaire (~> 7.2)
87
+ git-cop (3.4.2)
88
+ pastel (~> 0.7)
89
+ refinements (~> 6.0)
90
+ runcom (~> 4.0)
91
+ thor (~> 0.20)
92
+ globalid (0.4.2)
93
+ activesupport (>= 4.2.0)
94
+ guard (2.15.0)
95
+ formatador (>= 0.2.4)
96
+ listen (>= 2.7, < 4.0)
97
+ lumberjack (>= 1.0.12, < 2.0)
98
+ nenv (~> 0.1)
99
+ notiffany (~> 0.0)
100
+ pry (>= 0.9.12)
101
+ shellany (~> 0.0)
102
+ thor (>= 0.18.1)
103
+ guard-compat (1.2.1)
104
+ guard-rspec (4.7.3)
105
+ guard (~> 2.1)
106
+ guard-compat (~> 1.1)
107
+ rspec (>= 2.99.0, < 4.0)
108
+ guard-rubocop (1.3.0)
109
+ guard (~> 2.0)
110
+ rubocop (~> 0.20)
111
+ i18n (1.6.0)
112
+ concurrent-ruby (~> 1.0)
113
+ ice_nine (0.11.2)
114
+ jaro_winkler (1.5.2)
115
+ kwalify (0.7.2)
116
+ listen (3.1.5)
117
+ rb-fsevent (~> 0.9, >= 0.9.4)
118
+ rb-inotify (~> 0.9, >= 0.9.7)
119
+ ruby_dep (~> 1.2)
120
+ loofah (2.2.3)
121
+ crass (~> 1.0.2)
122
+ nokogiri (>= 1.5.9)
123
+ lumberjack (1.0.13)
124
+ mail (2.7.1)
125
+ mini_mime (>= 0.1.1)
126
+ marcel (0.3.3)
127
+ mimemagic (~> 0.3.2)
128
+ method_source (0.9.2)
129
+ milestoner (9.2.1)
130
+ runcom (~> 4.0)
131
+ thor (~> 0.20)
132
+ versionaire (~> 7.2)
133
+ mimemagic (0.3.3)
134
+ mini_mime (1.0.1)
135
+ mini_portile2 (2.4.0)
136
+ minitest (5.11.3)
137
+ nenv (0.3.0)
138
+ nio4r (2.3.1)
139
+ nokogiri (1.10.3)
140
+ mini_portile2 (~> 2.4.0)
141
+ notiffany (0.1.1)
142
+ nenv (~> 0.1)
143
+ shellany (~> 0.0)
144
+ parallel (1.17.0)
145
+ parser (2.6.3.0)
146
+ ast (~> 2.4.0)
147
+ pastel (0.7.2)
148
+ equatable (~> 0.5.0)
149
+ tty-color (~> 0.4.0)
150
+ pragmater (6.2.1)
151
+ runcom (~> 4.0)
152
+ thor (~> 0.20)
153
+ pry (0.12.2)
154
+ coderay (~> 1.1.0)
155
+ method_source (~> 0.9.0)
156
+ pry-byebug (3.7.0)
157
+ byebug (~> 11.0)
158
+ pry (~> 0.10)
159
+ psych (3.1.0)
160
+ rack (2.0.7)
161
+ rack-test (1.1.0)
162
+ rack (>= 1.0, < 3)
163
+ rails (5.2.3)
164
+ actioncable (= 5.2.3)
165
+ actionmailer (= 5.2.3)
166
+ actionpack (= 5.2.3)
167
+ actionview (= 5.2.3)
168
+ activejob (= 5.2.3)
169
+ activemodel (= 5.2.3)
170
+ activerecord (= 5.2.3)
171
+ activestorage (= 5.2.3)
172
+ activesupport (= 5.2.3)
173
+ bundler (>= 1.3.0)
174
+ railties (= 5.2.3)
175
+ sprockets-rails (>= 2.0.0)
176
+ rails-dom-testing (2.0.3)
177
+ activesupport (>= 4.2.0)
178
+ nokogiri (>= 1.6)
179
+ rails-html-sanitizer (1.0.4)
180
+ loofah (~> 2.2, >= 2.2.2)
181
+ railties (5.2.3)
182
+ actionpack (= 5.2.3)
183
+ activesupport (= 5.2.3)
184
+ method_source
185
+ rake (>= 0.8.7)
186
+ thor (>= 0.19.0, < 2.0)
187
+ rainbow (3.0.0)
188
+ rake (12.3.2)
189
+ rb-fsevent (0.10.3)
190
+ rb-inotify (0.10.0)
191
+ ffi (~> 1.0)
192
+ reek (5.4.0)
193
+ codeclimate-engine-rb (~> 0.4.0)
194
+ kwalify (~> 0.7.0)
195
+ parser (>= 2.5.0.0, < 2.7, != 2.5.1.1)
196
+ psych (~> 3.1.0)
197
+ rainbow (>= 2.0, < 4.0)
198
+ refinements (6.2.1)
199
+ rspec (3.8.0)
200
+ rspec-core (~> 3.8.0)
201
+ rspec-expectations (~> 3.8.0)
202
+ rspec-mocks (~> 3.8.0)
203
+ rspec-core (3.8.0)
204
+ rspec-support (~> 3.8.0)
205
+ rspec-expectations (3.8.3)
206
+ diff-lcs (>= 1.2.0, < 2.0)
207
+ rspec-support (~> 3.8.0)
208
+ rspec-mocks (3.8.0)
209
+ diff-lcs (>= 1.2.0, < 2.0)
210
+ rspec-support (~> 3.8.0)
211
+ rspec-support (3.8.0)
212
+ rubocop (0.69.0)
213
+ jaro_winkler (~> 1.5.1)
214
+ parallel (~> 1.10)
215
+ parser (>= 2.6)
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.3.0)
220
+ rubocop (>= 0.68.0)
221
+ rubocop-rspec (1.33.0)
222
+ rubocop (>= 0.60.0)
223
+ ruby-progressbar (1.10.0)
224
+ ruby_dep (1.5.0)
225
+ runcom (4.2.1)
226
+ refinements (~> 6.0)
227
+ shellany (0.0.1)
228
+ sprockets (3.7.2)
229
+ concurrent-ruby (~> 1.0)
230
+ rack (> 1, < 3)
231
+ sprockets-rails (3.2.1)
232
+ actionpack (>= 4.0)
233
+ activesupport (>= 4.0)
234
+ sprockets (>= 3.0.0)
235
+ thor (0.20.3)
236
+ thread_safe (0.3.6)
237
+ tocer (8.2.1)
238
+ refinements (~> 6.0)
239
+ runcom (~> 4.0)
240
+ thor (~> 0.20)
241
+ tty-color (0.4.3)
242
+ tzinfo (1.2.5)
243
+ thread_safe (~> 0.1)
244
+ unicode-display_width (1.6.0)
245
+ versionaire (7.3.1)
246
+ virtus (1.0.5)
247
+ axiom-types (~> 0.1)
248
+ coercible (~> 1.0)
249
+ descendants_tracker (~> 0.0, >= 0.0.3)
250
+ equalizer (~> 0.0, >= 0.0.9)
251
+ websocket-driver (0.7.0)
252
+ websocket-extensions (>= 0.1.0)
253
+ websocket-extensions (0.1.3)
254
+
255
+ PLATFORMS
256
+ ruby
257
+
258
+ DEPENDENCIES
259
+ bundler (~> 2.0.1)
260
+ bundler-audit (~> 0.6)
261
+ devise-foundationed!
262
+ gemsmith (~> 13.4)
263
+ git-cop (~> 3.0)
264
+ guard-rspec (~> 4.7)
265
+ guard-rubocop (~> 1.3)
266
+ pry (~> 0.10)
267
+ pry-byebug (~> 3.5)
268
+ rake (~> 12.3)
269
+ reek (~> 5.0)
270
+ rspec (~> 3.8)
271
+ rubocop (~> 0.67)
272
+ rubocop-performance (~> 1.1)
273
+ rubocop-rspec (~> 1.30)
274
+
275
+ BUNDLED WITH
276
+ 2.0.1
@@ -0,0 +1,7 @@
1
+ # frozen_string_literal: true
2
+
3
+ guard :rspec, cmd: "bundle exec rspec --format documentation" do
4
+ watch %r(^spec/.+_spec\.rb$)
5
+ watch(%r(^lib/(.+)\.rb$)) { |m| "spec/lib/#{m[1]}_spec.rb" }
6
+ watch("spec/spec_helper.rb") { "spec" }
7
+ end