eucalypt 0.7.1 → 0.7.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +57 -1
- data/eucalypt.gemspec +0 -1
- data/lib/eucalypt/core/templates/Gemfile.tt +0 -1
- data/lib/eucalypt/core/templates/eucalypt/Procfile +2 -1
- data/lib/eucalypt/version.rb +1 -1
- metadata +2 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 75b2cf3eff60c7fbf7f6f07d7a773b85378a69ea193ef6d599ff366499b5805c
|
4
|
+
data.tar.gz: 728eee98d207ff017b6ab2bda8721e6c8f429decf4f089260db8031c72e1b278
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6f68bf1fada82d622031f0cdc7bde08d9137713861020ea29a04dac0057932f20f70970c1cfb2270eece8b7a61ffa051f4b1e91991e91e0012b11a3969d72883
|
7
|
+
data.tar.gz: 5c3f34122457ce97b157ccb65eb015b70588b527cac2745400b5986ea00242bbe1e8bac41c69293cbb19100290085911bf10ce69210f1105a48e7d7ae626ef2c
|
data/README.md
CHANGED
@@ -42,6 +42,50 @@ Move into your new application's directory and run the top-level `eucalypt` comm
|
|
42
42
|
|
43
43
|
Full documentation can be found in the form of a GitBook, [here](https://eucalypt.gitbook.io/eucalypt).
|
44
44
|
|
45
|
+
## Directory structure
|
46
|
+
|
47
|
+
The structure of a generated application looks like the following:
|
48
|
+
|
49
|
+
```
|
50
|
+
.
|
51
|
+
├── Gemfile
|
52
|
+
├── Gemfile.lock
|
53
|
+
├── Gumfile
|
54
|
+
├── Procfile
|
55
|
+
├── Rakefile
|
56
|
+
├── app
|
57
|
+
│ ├── assets
|
58
|
+
│ │ ├── fonts
|
59
|
+
│ │ ├── images
|
60
|
+
│ │ ├── scripts
|
61
|
+
│ │ │ └── application.js
|
62
|
+
│ │ └── stylesheets
|
63
|
+
│ │ └── application.scss
|
64
|
+
│ ├── controllers
|
65
|
+
│ ├── helpers
|
66
|
+
│ ├── models
|
67
|
+
│ ├── static
|
68
|
+
│ │ └── public
|
69
|
+
│ └── views
|
70
|
+
│ ├── index.erb
|
71
|
+
│ ├── layouts
|
72
|
+
│ │ └── main.erb
|
73
|
+
│ └── partials
|
74
|
+
├── app.rb
|
75
|
+
├── config
|
76
|
+
│ ├── assets.rb
|
77
|
+
│ ├── database.yml
|
78
|
+
│ ├── initializers
|
79
|
+
│ └── logging.rb
|
80
|
+
├── config.ru
|
81
|
+
├── logs
|
82
|
+
└── spec
|
83
|
+
├── controllers
|
84
|
+
├── helpers
|
85
|
+
├── models
|
86
|
+
└── spec_helper.rb
|
87
|
+
```
|
88
|
+
|
45
89
|
## Features
|
46
90
|
|
47
91
|
| Type | Feature |
|
@@ -62,4 +106,16 @@ Full documentation can be found in the form of a GitBook, [here](https://eucalyp
|
|
62
106
|
| Specs | [RSpec](http://rspec.info/) + [Rack-Test](https://github.com/rack-test/rack-test) + [Shoulda-Matchers](http://matchers.shoulda.io/) |
|
63
107
|
| Encryption | [BCrypt](https://github.com/codahale/bcrypt-ruby) |
|
64
108
|
| Authentication | [Warden](https://github.com/wardencommunity/warden) |
|
65
|
-
| Authorization | [Pundit](https://github.com/varvet/pundit) |
|
109
|
+
| Authorization | [Pundit](https://github.com/varvet/pundit) |
|
110
|
+
|
111
|
+
## Acknowledgements
|
112
|
+
|
113
|
+
<p align="center">
|
114
|
+
<b>Eucalypt</b> © 2018-2020, Edwin Onuonga - Released under the <a href="http://mit-license.org/">MIT</a> License.<br/>
|
115
|
+
<em>Authored and maintained by Edwin Onuonga.</em>
|
116
|
+
<p align="center">
|
117
|
+
<a href="https://eonu.net">eonu.net</a> ·
|
118
|
+
GitHub: <a href="https://github.com/eonu">@eonu</a> ·
|
119
|
+
Email: <a href="mailto:ed@eonu.net">ed@eonu.net</a>
|
120
|
+
</p>
|
121
|
+
</p>
|
data/eucalypt.gemspec
CHANGED
@@ -23,7 +23,6 @@ Gem::Specification.new do |spec|
|
|
23
23
|
spec.add_development_dependency "regexp-examples", "~> 1.4"
|
24
24
|
spec.add_development_dependency "colorize", "~> 0.8"
|
25
25
|
|
26
|
-
spec.add_runtime_dependency "bundler", "~> 2.0"
|
27
26
|
spec.add_runtime_dependency "string-builder", "~> 2.3"
|
28
27
|
spec.add_runtime_dependency "activesupport", "~> 5.2"
|
29
28
|
spec.add_runtime_dependency "activerecord", "~> 5.2"
|
@@ -1 +1,2 @@
|
|
1
|
-
web: eucalypt launch production -p $PORT
|
1
|
+
web: eucalypt launch production -p $PORT
|
2
|
+
release: eucalypt rake db:migrate
|
data/lib/eucalypt/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eucalypt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.7.
|
4
|
+
version: 0.7.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Edwin Onuonga
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-05-
|
11
|
+
date: 2019-05-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -66,20 +66,6 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0.8'
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
name: bundler
|
71
|
-
requirement: !ruby/object:Gem::Requirement
|
72
|
-
requirements:
|
73
|
-
- - "~>"
|
74
|
-
- !ruby/object:Gem::Version
|
75
|
-
version: '2.0'
|
76
|
-
type: :runtime
|
77
|
-
prerelease: false
|
78
|
-
version_requirements: !ruby/object:Gem::Requirement
|
79
|
-
requirements:
|
80
|
-
- - "~>"
|
81
|
-
- !ruby/object:Gem::Version
|
82
|
-
version: '2.0'
|
83
69
|
- !ruby/object:Gem::Dependency
|
84
70
|
name: string-builder
|
85
71
|
requirement: !ruby/object:Gem::Requirement
|