orthodox 0.3.4 → 0.3.5
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 +4 -4
- data/.gitignore +0 -1
- data/.yardopts +7 -0
- data/README.md +4 -0
- data/docs/Authenticateable/ClassMethods.html +105 -0
- data/docs/Authenticateable.html +246 -0
- data/docs/AuthenticationGenerator.html +1335 -0
- data/docs/AuthenticationHelpers.html +194 -0
- data/docs/BaseControllerGenerator.html +247 -0
- data/docs/CoffeescriptGenerator.html +495 -0
- data/docs/ControllerGenerator.html +855 -0
- data/docs/LayoutHelperGenerator.html +397 -0
- data/docs/Orthodox/Railtie.html +124 -0
- data/docs/Orthodox.html +133 -0
- data/docs/OtpCredentialsHelper.html +298 -0
- data/docs/Otpable.html +267 -0
- data/docs/PasswordResetToken.html +324 -0
- data/docs/PasswordResetable.html +193 -0
- data/docs/SassGenerator.html +549 -0
- data/docs/TfaSession.html +476 -0
- data/docs/TwoFactorAuthentication/ClassMethods.html +222 -0
- data/docs/TwoFactorAuthentication.html +121 -0
- data/docs/_config.yml +1 -0
- data/docs/_index.html +265 -0
- data/docs/class_list.html +51 -0
- data/docs/css/common.css +1 -0
- data/docs/css/full_list.css +58 -0
- data/docs/css/style.css +496 -0
- data/docs/file.README.html +311 -0
- data/docs/file_list.html +56 -0
- data/docs/frames.html +17 -0
- data/docs/index.html +311 -0
- data/docs/js/app.js +314 -0
- data/docs/js/full_list.js +216 -0
- data/docs/js/jquery.js +4 -0
- data/docs/method_list.html +555 -0
- data/docs/top-level-namespace.html +112 -0
- data/lib/orthodox/version.rb +1 -1
- data/orthodox.gemspec +4 -5
- metadata +44 -24
data/orthodox.gemspec
CHANGED
@@ -7,11 +7,11 @@ Gem::Specification.new do |spec|
|
|
7
7
|
spec.name = "orthodox"
|
8
8
|
spec.version = Orthodox::VERSION
|
9
9
|
spec.authors = ["Bodacious", 'CodeMeister']
|
10
|
-
spec.email = ["
|
10
|
+
spec.email = ["gavin@gavinmorrice.com"]
|
11
11
|
|
12
|
-
spec.summary = %q{Better Rails generators
|
13
|
-
spec.description = %q{Replaces Rails generators with generators specific to
|
14
|
-
spec.homepage = "https://github.com/
|
12
|
+
spec.summary = %q{Better Rails generators}
|
13
|
+
spec.description = %q{Replaces Rails generators with generators specific to my preferred workflow'}
|
14
|
+
spec.homepage = "https://github.com/Bodacious/orthodox"
|
15
15
|
spec.license = "MIT"
|
16
16
|
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
17
17
|
|
@@ -23,7 +23,6 @@ Gem::Specification.new do |spec|
|
|
23
23
|
spec.require_paths = ["lib", 'lib/generators']
|
24
24
|
spec.add_runtime_dependency 'rails', '>= 3.0.0'
|
25
25
|
spec.add_runtime_dependency 'slim-rails'
|
26
|
-
spec.add_development_dependency "bundler", "~> 1.15"
|
27
26
|
spec.add_development_dependency "rake", ">= 10.0"
|
28
27
|
spec.add_development_dependency "rails", ">= 5.0"
|
29
28
|
end
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: orthodox
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Bodacious
|
8
8
|
- CodeMeister
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2021-09-29 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -39,20 +39,6 @@ dependencies:
|
|
39
39
|
- - ">="
|
40
40
|
- !ruby/object:Gem::Version
|
41
41
|
version: '0'
|
42
|
-
- !ruby/object:Gem::Dependency
|
43
|
-
name: bundler
|
44
|
-
requirement: !ruby/object:Gem::Requirement
|
45
|
-
requirements:
|
46
|
-
- - "~>"
|
47
|
-
- !ruby/object:Gem::Version
|
48
|
-
version: '1.15'
|
49
|
-
type: :development
|
50
|
-
prerelease: false
|
51
|
-
version_requirements: !ruby/object:Gem::Requirement
|
52
|
-
requirements:
|
53
|
-
- - "~>"
|
54
|
-
- !ruby/object:Gem::Version
|
55
|
-
version: '1.15'
|
56
42
|
- !ruby/object:Gem::Dependency
|
57
43
|
name: rake
|
58
44
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,20 +67,54 @@ dependencies:
|
|
81
67
|
- - ">="
|
82
68
|
- !ruby/object:Gem::Version
|
83
69
|
version: '5.0'
|
84
|
-
description: Replaces Rails generators with generators specific to
|
70
|
+
description: Replaces Rails generators with generators specific to my preferred workflow'
|
85
71
|
email:
|
86
|
-
-
|
72
|
+
- gavin@gavinmorrice.com
|
87
73
|
executables: []
|
88
74
|
extensions: []
|
89
75
|
extra_rdoc_files: []
|
90
76
|
files:
|
91
77
|
- ".gitignore"
|
78
|
+
- ".yardopts"
|
92
79
|
- Gemfile
|
93
80
|
- LICENSE.txt
|
94
81
|
- README.md
|
95
82
|
- Rakefile
|
96
83
|
- bin/console
|
97
84
|
- bin/setup
|
85
|
+
- docs/Authenticateable.html
|
86
|
+
- docs/Authenticateable/ClassMethods.html
|
87
|
+
- docs/AuthenticationGenerator.html
|
88
|
+
- docs/AuthenticationHelpers.html
|
89
|
+
- docs/BaseControllerGenerator.html
|
90
|
+
- docs/CoffeescriptGenerator.html
|
91
|
+
- docs/ControllerGenerator.html
|
92
|
+
- docs/LayoutHelperGenerator.html
|
93
|
+
- docs/Orthodox.html
|
94
|
+
- docs/Orthodox/Railtie.html
|
95
|
+
- docs/OtpCredentialsHelper.html
|
96
|
+
- docs/Otpable.html
|
97
|
+
- docs/PasswordResetToken.html
|
98
|
+
- docs/PasswordResetable.html
|
99
|
+
- docs/SassGenerator.html
|
100
|
+
- docs/TfaSession.html
|
101
|
+
- docs/TwoFactorAuthentication.html
|
102
|
+
- docs/TwoFactorAuthentication/ClassMethods.html
|
103
|
+
- docs/_config.yml
|
104
|
+
- docs/_index.html
|
105
|
+
- docs/class_list.html
|
106
|
+
- docs/css/common.css
|
107
|
+
- docs/css/full_list.css
|
108
|
+
- docs/css/style.css
|
109
|
+
- docs/file.README.html
|
110
|
+
- docs/file_list.html
|
111
|
+
- docs/frames.html
|
112
|
+
- docs/index.html
|
113
|
+
- docs/js/app.js
|
114
|
+
- docs/js/full_list.js
|
115
|
+
- docs/js/jquery.js
|
116
|
+
- docs/method_list.html
|
117
|
+
- docs/top-level-namespace.html
|
98
118
|
- dummy/.gitignore
|
99
119
|
- dummy/.ruby-version
|
100
120
|
- dummy/Gemfile
|
@@ -214,12 +234,12 @@ files:
|
|
214
234
|
- lib/orthodox/railtie.rb
|
215
235
|
- lib/orthodox/version.rb
|
216
236
|
- orthodox.gemspec
|
217
|
-
homepage: https://github.com/
|
237
|
+
homepage: https://github.com/Bodacious/orthodox
|
218
238
|
licenses:
|
219
239
|
- MIT
|
220
240
|
metadata:
|
221
241
|
allowed_push_host: https://rubygems.org
|
222
|
-
post_install_message:
|
242
|
+
post_install_message:
|
223
243
|
rdoc_options: []
|
224
244
|
require_paths:
|
225
245
|
- lib
|
@@ -235,8 +255,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
235
255
|
- !ruby/object:Gem::Version
|
236
256
|
version: '0'
|
237
257
|
requirements: []
|
238
|
-
rubygems_version: 3.
|
239
|
-
signing_key:
|
258
|
+
rubygems_version: 3.2.15
|
259
|
+
signing_key:
|
240
260
|
specification_version: 4
|
241
|
-
summary: Better Rails generators
|
261
|
+
summary: Better Rails generators
|
242
262
|
test_files: []
|