eucalypt 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/Gemfile +3 -0
- data/LICENSE +21 -0
- data/README.md +26 -0
- data/Rakefile +2 -0
- data/bin/eucalypt +3 -0
- data/eucalypt.gemspec +39 -0
- data/lib/eucalypt/app.rb +6 -0
- data/lib/eucalypt/controller.rb +10 -0
- data/lib/eucalypt/errors.rb +109 -0
- data/lib/eucalypt/eucalypt-blog/helpers.rb +106 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog/__base__.rb +22 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog/__require__.rb +1 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog/cli/blog.rb +65 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog/generators/article.rb +28 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog/generators/controller.rb +14 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog/generators/helper.rb +12 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog/generators/list.rb +74 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog/generators/views.rb +20 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog/templates/controller/controller.tt +33 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog/templates/controller/controller_spec.tt +43 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog/templates/helper/helper.tt +5 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog/templates/helper/helper_spec.tt +9 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog/templates/views/article.erb +1 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog/templates/views/article_layout.erb +10 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog/templates/views/article_md.tt +9 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog/templates/views/articles.erb +1 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog/templates/views/articles_layout.erb +10 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog/templates/views/search.erb +1 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog-article/cli/article.rb +120 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog-article-edit/cli/edit-datetime.rb +113 -0
- data/lib/eucalypt/eucalypt-blog/namespaces/blog-article-edit/cli/edit-urltitle.rb +75 -0
- data/lib/eucalypt/eucalypt-core/cli/__base__.rb +11 -0
- data/lib/eucalypt/eucalypt-core/cli/console.rb +15 -0
- data/lib/eucalypt/eucalypt-core/cli/core.rb +6 -0
- data/lib/eucalypt/eucalypt-core/cli/help.rb +11 -0
- data/lib/eucalypt/eucalypt-core/cli/init.rb +71 -0
- data/lib/eucalypt/eucalypt-core/cli/launch.rb +33 -0
- data/lib/eucalypt/eucalypt-core/cli/test.rb +16 -0
- data/lib/eucalypt/eucalypt-core/cli/version.rb +11 -0
- data/lib/eucalypt/eucalypt-core/templates/Gemfile.tt +35 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/.gitignore +48 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/.travis.yml +8 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/Procfile +1 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/Rakefile +7 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/app/assets/fonts/.empty_directory +0 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/app/assets/images/.empty_directory +0 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/app/assets/scripts/application.js +17 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/app/assets/stylesheets/__partials__.scss +16 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/app/assets/stylesheets/application.scss +17 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/app/assets/stylesheets/partials/_mixins.scss +54 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/app/controllers/application_controller.rb +7 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/app/helpers/application_helper.rb +3 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/app/models/.empty_directory +0 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/app/static/.empty_directory +0 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/app/static/readme.yml +34 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/app/views/index.erb +0 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/app/views/layouts/main.erb +9 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/app/views/partials/.empty_directory +0 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/app.rb +42 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/config/active_record.rb +6 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/config/asset_pipeline.rb +15 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/config/database.yml +16 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/config/initializers/.empty_directory +0 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/config/logging.rb +27 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/config/manifest.rb +15 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/config.ru +10 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/log/.empty_directory +0 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/spec/controllers/application_controller_spec.rb +9 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/spec/helpers/application_helper_spec.rb +9 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/spec/models/.empty_directory +0 -0
- data/lib/eucalypt/eucalypt-core/templates/eucalypt/spec/spec_helper.rb +18 -0
- data/lib/eucalypt/eucalypt-destroy/helpers.rb +77 -0
- data/lib/eucalypt/eucalypt-destroy/namespaces/destroy/cli/destroy-controller.rb +16 -0
- data/lib/eucalypt/eucalypt-destroy/namespaces/destroy/cli/destroy-helper.rb +16 -0
- data/lib/eucalypt/eucalypt-destroy/namespaces/destroy/cli/destroy-model.rb +16 -0
- data/lib/eucalypt/eucalypt-destroy/namespaces/destroy/cli/destroy-scaffold.rb +63 -0
- data/lib/eucalypt/eucalypt-destroy/namespaces/destroy/cli/destroy.rb +21 -0
- data/lib/eucalypt/eucalypt-generate/.gitkeep +0 -0
- data/lib/eucalypt/eucalypt-generate/namespaces/generate/cli/generate-scaffold.rb +62 -0
- data/lib/eucalypt/eucalypt-generate/namespaces/generate/cli/generate.rb +24 -0
- data/lib/eucalypt/eucalypt-generate/namespaces/generate-controller/cli/generate-controller.rb +29 -0
- data/lib/eucalypt/eucalypt-generate/namespaces/generate-controller/generators/controller.rb +45 -0
- data/lib/eucalypt/eucalypt-generate/namespaces/generate-controller/templates/controller/controller.tt +3 -0
- data/lib/eucalypt/eucalypt-generate/namespaces/generate-controller/templates/controller/policy_rest_controller.tt +71 -0
- data/lib/eucalypt/eucalypt-generate/namespaces/generate-controller/templates/controller/rest_controller.tt +28 -0
- data/lib/eucalypt/eucalypt-generate/namespaces/generate-controller/templates/controller_spec.tt +9 -0
- data/lib/eucalypt/eucalypt-generate/namespaces/generate-helper/cli/generate-helper.rb +23 -0
- data/lib/eucalypt/eucalypt-generate/namespaces/generate-helper/generators/helper.rb +24 -0
- data/lib/eucalypt/eucalypt-generate/namespaces/generate-helper/templates/helper.tt +3 -0
- data/lib/eucalypt/eucalypt-generate/namespaces/generate-helper/templates/helper_spec.tt +9 -0
- data/lib/eucalypt/eucalypt-generate/namespaces/generate-model/cli/generate-model.rb +26 -0
- data/lib/eucalypt/eucalypt-generate/namespaces/generate-model/generators/model.rb +25 -0
- data/lib/eucalypt/eucalypt-generate/namespaces/generate-model/templates/model.tt +3 -0
- data/lib/eucalypt/eucalypt-generate/namespaces/generate-model/templates/model_spec.tt +8 -0
- data/lib/eucalypt/eucalypt-migration/helpers.rb +93 -0
- data/lib/eucalypt/eucalypt-migration/migration_base.tt +4 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration/cli/migration.rb +39 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-add/cli/add-column.rb +25 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-add/cli/add-index.rb +25 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-add/cli/add.rb +18 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-add/generators/column.rb +46 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-add/generators/index.rb +52 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-blank/cli/blank.rb +22 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-blank/generators/blank.rb +28 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-change/cli/change-column.rb +23 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-change/cli/change.rb +17 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-change/generators/column.rb +46 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-create/cli/create-table.rb +25 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-create/cli/create.rb +17 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-create/generators/table.rb +53 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-drop/cli/drop-column.rb +22 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-drop/cli/drop-index.rb +23 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-drop/cli/drop-table.rb +22 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-drop/cli/drop.rb +19 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-drop/generators/column.rb +38 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-drop/generators/index.rb +48 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-drop/generators/table.rb +37 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-rename/cli/rename-column.rb +22 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-rename/cli/rename-index.rb +22 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-rename/cli/rename-table.rb +24 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-rename/cli/rename.rb +19 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-rename/generators/column.rb +39 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-rename/generators/index.rb +39 -0
- data/lib/eucalypt/eucalypt-migration/namespaces/migration-rename/generators/table.rb +38 -0
- data/lib/eucalypt/eucalypt-security/helpers.rb +22 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security/cli/security.rb +31 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-policy/cli/security-policy.rb +91 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-policy/generators/policy.rb +31 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-policy/templates/create_policy_roles_migration.tt +11 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-policy/templates/policy.tt +16 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-policy-permission/cli/security-policy-permission.rb +62 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-policy-permission/generators/policy-permission.rb +28 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-policy-permission/templates/add_permission_to_policy_migration.tt +5 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-policy-role/cli/security-policy-role.rb +66 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-pundit/cli/security-pundit.rb +79 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-pundit/generators/role.rb +24 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-pundit/templates/create_roles_migration.tt +7 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-pundit/templates/pundit.tt +4 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-warden/cli/security-warden.rb +61 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-warden/generators/auth_controller.rb +34 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-warden/generators/user.rb +37 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-warden/templates/auth_controller.tt +25 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-warden/templates/auth_login.tt +1 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-warden/templates/create_users_table_migration.tt +9 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-warden/templates/user.tt +16 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-warden/templates/warden.tt +35 -0
- data/lib/eucalypt/eucalypt-security/namespaces/security-warden/user_confirm.rb +38 -0
- data/lib/eucalypt/helpers/colorize.rb +27 -0
- data/lib/eucalypt/helpers/gemfile.rb +48 -0
- data/lib/eucalypt/helpers/inflect.rb +79 -0
- data/lib/eucalypt/helpers/messages.rb +31 -0
- data/lib/eucalypt/helpers/migration.rb +85 -0
- data/lib/eucalypt/helpers/numeric.rb +10 -0
- data/lib/eucalypt/helpers.rb +6 -0
- data/lib/eucalypt/list.rb +39 -0
- data/lib/eucalypt/static.rb +48 -0
- data/lib/eucalypt/version.rb +3 -0
- data/lib/eucalypt.rb +19 -0
- metadata +373 -0
metadata
ADDED
@@ -0,0 +1,373 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: eucalypt
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Edwin Onuonga
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2018-08-16 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.16'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.16'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '12.3'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '12.3'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.7'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.7'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: regexp-examples
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.4'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - "~>"
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '1.4'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: colorize
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - "~>"
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0.8'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - "~>"
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0.8'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: string-builder
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - "~>"
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '2.3'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - "~>"
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '2.3'
|
97
|
+
- !ruby/object:Gem::Dependency
|
98
|
+
name: activesupport
|
99
|
+
requirement: !ruby/object:Gem::Requirement
|
100
|
+
requirements:
|
101
|
+
- - "~>"
|
102
|
+
- !ruby/object:Gem::Version
|
103
|
+
version: '5.2'
|
104
|
+
type: :runtime
|
105
|
+
prerelease: false
|
106
|
+
version_requirements: !ruby/object:Gem::Requirement
|
107
|
+
requirements:
|
108
|
+
- - "~>"
|
109
|
+
- !ruby/object:Gem::Version
|
110
|
+
version: '5.2'
|
111
|
+
- !ruby/object:Gem::Dependency
|
112
|
+
name: activerecord
|
113
|
+
requirement: !ruby/object:Gem::Requirement
|
114
|
+
requirements:
|
115
|
+
- - "~>"
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '5.2'
|
118
|
+
type: :runtime
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
requirements:
|
122
|
+
- - "~>"
|
123
|
+
- !ruby/object:Gem::Version
|
124
|
+
version: '5.2'
|
125
|
+
- !ruby/object:Gem::Dependency
|
126
|
+
name: front_matter_parser
|
127
|
+
requirement: !ruby/object:Gem::Requirement
|
128
|
+
requirements:
|
129
|
+
- - '='
|
130
|
+
- !ruby/object:Gem::Version
|
131
|
+
version: 0.2.0
|
132
|
+
type: :runtime
|
133
|
+
prerelease: false
|
134
|
+
version_requirements: !ruby/object:Gem::Requirement
|
135
|
+
requirements:
|
136
|
+
- - '='
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
version: 0.2.0
|
139
|
+
- !ruby/object:Gem::Dependency
|
140
|
+
name: thor
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
142
|
+
requirements:
|
143
|
+
- - "~>"
|
144
|
+
- !ruby/object:Gem::Version
|
145
|
+
version: '0.20'
|
146
|
+
type: :runtime
|
147
|
+
prerelease: false
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
149
|
+
requirements:
|
150
|
+
- - "~>"
|
151
|
+
- !ruby/object:Gem::Version
|
152
|
+
version: '0.20'
|
153
|
+
- !ruby/object:Gem::Dependency
|
154
|
+
name: sinatra
|
155
|
+
requirement: !ruby/object:Gem::Requirement
|
156
|
+
requirements:
|
157
|
+
- - "~>"
|
158
|
+
- !ruby/object:Gem::Version
|
159
|
+
version: '2.0'
|
160
|
+
type: :runtime
|
161
|
+
prerelease: false
|
162
|
+
version_requirements: !ruby/object:Gem::Requirement
|
163
|
+
requirements:
|
164
|
+
- - "~>"
|
165
|
+
- !ruby/object:Gem::Version
|
166
|
+
version: '2.0'
|
167
|
+
- !ruby/object:Gem::Dependency
|
168
|
+
name: rerun
|
169
|
+
requirement: !ruby/object:Gem::Requirement
|
170
|
+
requirements:
|
171
|
+
- - "~>"
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: '0.13'
|
174
|
+
type: :runtime
|
175
|
+
prerelease: false
|
176
|
+
version_requirements: !ruby/object:Gem::Requirement
|
177
|
+
requirements:
|
178
|
+
- - "~>"
|
179
|
+
- !ruby/object:Gem::Version
|
180
|
+
version: '0.13'
|
181
|
+
description:
|
182
|
+
email:
|
183
|
+
- edwinonuonga@gmail.com
|
184
|
+
executables:
|
185
|
+
- eucalypt
|
186
|
+
extensions: []
|
187
|
+
extra_rdoc_files: []
|
188
|
+
files:
|
189
|
+
- Gemfile
|
190
|
+
- LICENSE
|
191
|
+
- README.md
|
192
|
+
- Rakefile
|
193
|
+
- bin/eucalypt
|
194
|
+
- eucalypt.gemspec
|
195
|
+
- lib/eucalypt.rb
|
196
|
+
- lib/eucalypt/app.rb
|
197
|
+
- lib/eucalypt/controller.rb
|
198
|
+
- lib/eucalypt/errors.rb
|
199
|
+
- lib/eucalypt/eucalypt-blog/helpers.rb
|
200
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog-article-edit/cli/edit-datetime.rb
|
201
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog-article-edit/cli/edit-urltitle.rb
|
202
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog-article/cli/article.rb
|
203
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog/__base__.rb
|
204
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog/__require__.rb
|
205
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog/cli/blog.rb
|
206
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog/generators/article.rb
|
207
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog/generators/controller.rb
|
208
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog/generators/helper.rb
|
209
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog/generators/list.rb
|
210
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog/generators/views.rb
|
211
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog/templates/controller/controller.tt
|
212
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog/templates/controller/controller_spec.tt
|
213
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog/templates/helper/helper.tt
|
214
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog/templates/helper/helper_spec.tt
|
215
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog/templates/views/article.erb
|
216
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog/templates/views/article_layout.erb
|
217
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog/templates/views/article_md.tt
|
218
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog/templates/views/articles.erb
|
219
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog/templates/views/articles_layout.erb
|
220
|
+
- lib/eucalypt/eucalypt-blog/namespaces/blog/templates/views/search.erb
|
221
|
+
- lib/eucalypt/eucalypt-core/cli/__base__.rb
|
222
|
+
- lib/eucalypt/eucalypt-core/cli/console.rb
|
223
|
+
- lib/eucalypt/eucalypt-core/cli/core.rb
|
224
|
+
- lib/eucalypt/eucalypt-core/cli/help.rb
|
225
|
+
- lib/eucalypt/eucalypt-core/cli/init.rb
|
226
|
+
- lib/eucalypt/eucalypt-core/cli/launch.rb
|
227
|
+
- lib/eucalypt/eucalypt-core/cli/test.rb
|
228
|
+
- lib/eucalypt/eucalypt-core/cli/version.rb
|
229
|
+
- lib/eucalypt/eucalypt-core/templates/Gemfile.tt
|
230
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/.gitignore
|
231
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/.travis.yml
|
232
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/Procfile
|
233
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/Rakefile
|
234
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/app.rb
|
235
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/app/assets/fonts/.empty_directory
|
236
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/app/assets/images/.empty_directory
|
237
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/app/assets/scripts/application.js
|
238
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/app/assets/stylesheets/__partials__.scss
|
239
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/app/assets/stylesheets/application.scss
|
240
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/app/assets/stylesheets/partials/_mixins.scss
|
241
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/app/controllers/application_controller.rb
|
242
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/app/helpers/application_helper.rb
|
243
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/app/models/.empty_directory
|
244
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/app/static/.empty_directory
|
245
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/app/static/readme.yml
|
246
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/app/views/index.erb
|
247
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/app/views/layouts/main.erb
|
248
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/app/views/partials/.empty_directory
|
249
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/config.ru
|
250
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/config/active_record.rb
|
251
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/config/asset_pipeline.rb
|
252
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/config/database.yml
|
253
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/config/initializers/.empty_directory
|
254
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/config/logging.rb
|
255
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/config/manifest.rb
|
256
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/log/.empty_directory
|
257
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/spec/controllers/application_controller_spec.rb
|
258
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/spec/helpers/application_helper_spec.rb
|
259
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/spec/models/.empty_directory
|
260
|
+
- lib/eucalypt/eucalypt-core/templates/eucalypt/spec/spec_helper.rb
|
261
|
+
- lib/eucalypt/eucalypt-destroy/helpers.rb
|
262
|
+
- lib/eucalypt/eucalypt-destroy/namespaces/destroy/cli/destroy-controller.rb
|
263
|
+
- lib/eucalypt/eucalypt-destroy/namespaces/destroy/cli/destroy-helper.rb
|
264
|
+
- lib/eucalypt/eucalypt-destroy/namespaces/destroy/cli/destroy-model.rb
|
265
|
+
- lib/eucalypt/eucalypt-destroy/namespaces/destroy/cli/destroy-scaffold.rb
|
266
|
+
- lib/eucalypt/eucalypt-destroy/namespaces/destroy/cli/destroy.rb
|
267
|
+
- lib/eucalypt/eucalypt-generate/.gitkeep
|
268
|
+
- lib/eucalypt/eucalypt-generate/namespaces/generate-controller/cli/generate-controller.rb
|
269
|
+
- lib/eucalypt/eucalypt-generate/namespaces/generate-controller/generators/controller.rb
|
270
|
+
- lib/eucalypt/eucalypt-generate/namespaces/generate-controller/templates/controller/controller.tt
|
271
|
+
- lib/eucalypt/eucalypt-generate/namespaces/generate-controller/templates/controller/policy_rest_controller.tt
|
272
|
+
- lib/eucalypt/eucalypt-generate/namespaces/generate-controller/templates/controller/rest_controller.tt
|
273
|
+
- lib/eucalypt/eucalypt-generate/namespaces/generate-controller/templates/controller_spec.tt
|
274
|
+
- lib/eucalypt/eucalypt-generate/namespaces/generate-helper/cli/generate-helper.rb
|
275
|
+
- lib/eucalypt/eucalypt-generate/namespaces/generate-helper/generators/helper.rb
|
276
|
+
- lib/eucalypt/eucalypt-generate/namespaces/generate-helper/templates/helper.tt
|
277
|
+
- lib/eucalypt/eucalypt-generate/namespaces/generate-helper/templates/helper_spec.tt
|
278
|
+
- lib/eucalypt/eucalypt-generate/namespaces/generate-model/cli/generate-model.rb
|
279
|
+
- lib/eucalypt/eucalypt-generate/namespaces/generate-model/generators/model.rb
|
280
|
+
- lib/eucalypt/eucalypt-generate/namespaces/generate-model/templates/model.tt
|
281
|
+
- lib/eucalypt/eucalypt-generate/namespaces/generate-model/templates/model_spec.tt
|
282
|
+
- lib/eucalypt/eucalypt-generate/namespaces/generate/cli/generate-scaffold.rb
|
283
|
+
- lib/eucalypt/eucalypt-generate/namespaces/generate/cli/generate.rb
|
284
|
+
- lib/eucalypt/eucalypt-migration/helpers.rb
|
285
|
+
- lib/eucalypt/eucalypt-migration/migration_base.tt
|
286
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-add/cli/add-column.rb
|
287
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-add/cli/add-index.rb
|
288
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-add/cli/add.rb
|
289
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-add/generators/column.rb
|
290
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-add/generators/index.rb
|
291
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-blank/cli/blank.rb
|
292
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-blank/generators/blank.rb
|
293
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-change/cli/change-column.rb
|
294
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-change/cli/change.rb
|
295
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-change/generators/column.rb
|
296
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-create/cli/create-table.rb
|
297
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-create/cli/create.rb
|
298
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-create/generators/table.rb
|
299
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-drop/cli/drop-column.rb
|
300
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-drop/cli/drop-index.rb
|
301
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-drop/cli/drop-table.rb
|
302
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-drop/cli/drop.rb
|
303
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-drop/generators/column.rb
|
304
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-drop/generators/index.rb
|
305
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-drop/generators/table.rb
|
306
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-rename/cli/rename-column.rb
|
307
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-rename/cli/rename-index.rb
|
308
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-rename/cli/rename-table.rb
|
309
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-rename/cli/rename.rb
|
310
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-rename/generators/column.rb
|
311
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-rename/generators/index.rb
|
312
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration-rename/generators/table.rb
|
313
|
+
- lib/eucalypt/eucalypt-migration/namespaces/migration/cli/migration.rb
|
314
|
+
- lib/eucalypt/eucalypt-security/helpers.rb
|
315
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-policy-permission/cli/security-policy-permission.rb
|
316
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-policy-permission/generators/policy-permission.rb
|
317
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-policy-permission/templates/add_permission_to_policy_migration.tt
|
318
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-policy-role/cli/security-policy-role.rb
|
319
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-policy/cli/security-policy.rb
|
320
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-policy/generators/policy.rb
|
321
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-policy/templates/create_policy_roles_migration.tt
|
322
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-policy/templates/policy.tt
|
323
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-pundit/cli/security-pundit.rb
|
324
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-pundit/generators/role.rb
|
325
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-pundit/templates/create_roles_migration.tt
|
326
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-pundit/templates/pundit.tt
|
327
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-warden/cli/security-warden.rb
|
328
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-warden/generators/auth_controller.rb
|
329
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-warden/generators/user.rb
|
330
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-warden/templates/auth_controller.tt
|
331
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-warden/templates/auth_login.tt
|
332
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-warden/templates/create_users_table_migration.tt
|
333
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-warden/templates/user.tt
|
334
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-warden/templates/warden.tt
|
335
|
+
- lib/eucalypt/eucalypt-security/namespaces/security-warden/user_confirm.rb
|
336
|
+
- lib/eucalypt/eucalypt-security/namespaces/security/cli/security.rb
|
337
|
+
- lib/eucalypt/helpers.rb
|
338
|
+
- lib/eucalypt/helpers/colorize.rb
|
339
|
+
- lib/eucalypt/helpers/gemfile.rb
|
340
|
+
- lib/eucalypt/helpers/inflect.rb
|
341
|
+
- lib/eucalypt/helpers/messages.rb
|
342
|
+
- lib/eucalypt/helpers/migration.rb
|
343
|
+
- lib/eucalypt/helpers/numeric.rb
|
344
|
+
- lib/eucalypt/list.rb
|
345
|
+
- lib/eucalypt/static.rb
|
346
|
+
- lib/eucalypt/version.rb
|
347
|
+
homepage: https://eucalypt.gitbook.io/eucalypt/
|
348
|
+
licenses:
|
349
|
+
- MIT
|
350
|
+
metadata:
|
351
|
+
source_code_uri: https://github.com/eucalypt/eucalypt/
|
352
|
+
post_install_message:
|
353
|
+
rdoc_options: []
|
354
|
+
require_paths:
|
355
|
+
- lib
|
356
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
357
|
+
requirements:
|
358
|
+
- - "~>"
|
359
|
+
- !ruby/object:Gem::Version
|
360
|
+
version: '2.5'
|
361
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
362
|
+
requirements:
|
363
|
+
- - ">="
|
364
|
+
- !ruby/object:Gem::Version
|
365
|
+
version: '0'
|
366
|
+
requirements: []
|
367
|
+
rubyforge_project:
|
368
|
+
rubygems_version: 2.7.7
|
369
|
+
signing_key:
|
370
|
+
specification_version: 4
|
371
|
+
summary: Micro-framework and CLI for the generation and maintenance of structured
|
372
|
+
Sinatra web applications.
|
373
|
+
test_files: []
|