eucalypt 0.7.1 → 0.7.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bf6983d37c1965e25ed1f634ad3c2e78b09e4630a3e1f544521f917926180ef4
4
- data.tar.gz: '09b3c75b6d69d43e99ec574685105b43867ba8ad196a4f66c6495789f06bb7f0'
3
+ metadata.gz: 75b2cf3eff60c7fbf7f6f07d7a773b85378a69ea193ef6d599ff366499b5805c
4
+ data.tar.gz: 728eee98d207ff017b6ab2bda8721e6c8f429decf4f089260db8031c72e1b278
5
5
  SHA512:
6
- metadata.gz: 82529a63226bf7e6dc872a531df3c7f350e3b2a34560bd7222667bbf3974dfa0c3c5058c4b7ed50168e541f5a8974912d489db297bc12ba86b8a55c367c85c0d
7
- data.tar.gz: f77b8b81f38607ac3434bc11ebdbc5949f30a81c89f4e186208581102e2d100bacf7338d6277cceb9df55696005fd560ebe5702d34ea7d1c371767ab33519dba
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> &copy; 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>&nbsp;&middot;&nbsp;
118
+ GitHub: <a href="https://github.com/eonu">@eonu</a>&nbsp;&middot;&nbsp;
119
+ Email: <a href="mailto:ed@eonu.net">ed@eonu.net</a>
120
+ </p>
121
+ </p>
@@ -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,6 +1,5 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
- gem 'bundler', '~> 2.0'
4
3
  gem 'sinatra', '~> 2.0', '>= 2.0.4', require: 'sinatra/base'
5
4
  gem 'eucalypt', '<%= config[:version] %>'
6
5
  gem 'rake', '~> 12.3'
@@ -1 +1,2 @@
1
- web: eucalypt launch production -p $PORT
1
+ web: eucalypt launch production -p $PORT
2
+ release: eucalypt rake db:migrate
@@ -2,7 +2,7 @@ module Eucalypt
2
2
  VERSION = {
3
3
  major: 0,
4
4
  minor: 7,
5
- patch: 1,
5
+ patch: 2,
6
6
  meta: nil
7
7
  }.compact.values.join('.').freeze
8
8
  end
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.1
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-06 00:00:00.000000000 Z
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