eucalypt 0.1.0 → 0.1.1
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/README.md +38 -4
- data/Rakefile +5 -1
- data/eucalypt.gemspec +2 -2
- data/lib/eucalypt/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3ff31c16e52b88c4347016094d3968710963f380473448a0e61d9fd8ca5cf260
|
|
4
|
+
data.tar.gz: d81fbee051b5eb8e055f027ee5b76e3c4ea1f5ba3a59a617c35de6c9257df784
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '07933f7d49293837ae648bda144ac099045f01c49bbc0ff860339d9a3563456b34bb5fdca418140cfb1f6ad3be8096754f3624f7295953e7541ba7b9bf0d3b32'
|
|
7
|
+
data.tar.gz: 9ddd2a61288259c154ad6d3b9c48fe53a6fcc5539a0d84a8d6a19541e89ae2429bbb696d3dec1e9ee86026e9bd366498ba0c6fb20e5daf76434727de6e8e5db7
|
data/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
[](https://github.com/eonu/eucalypt/blob/0c509a4e22fd97ec52b6f638af21de783f3aafc8/eucalypt.gemspec#L19)
|
|
2
2
|
[](https://rubygems.org/gems/eucalypt)
|
|
3
|
-
[]
|
|
4
|
-
[]
|
|
3
|
+
[](https://travis-ci.org/eonu/eucalypt)
|
|
4
|
+
[](https://github.com/eonu/eucalypt/blob/master/LICENSE)
|
|
5
5
|
|
|
6
6
|
# Eucalypt
|
|
7
7
|
|
|
8
|
-
Micro-framework and CLI for the generation and maintenance of structured
|
|
8
|
+
Micro-framework and CLI wrapped around the Sinatra DSL, for the generation and maintenance of structured web applications.
|
|
9
9
|
|
|
10
10
|
## Installation
|
|
11
11
|
|
|
@@ -23,4 +23,38 @@ Initialize a new application with:
|
|
|
23
23
|
$ eucalypt init my-new-app
|
|
24
24
|
```
|
|
25
25
|
|
|
26
|
-
|
|
26
|
+
> Once the setup is complete, make sure the required gems have been installed (without any errors). This is indicated by the presence of a `Gemfile.lock` file.
|
|
27
|
+
>
|
|
28
|
+
> This should have been done automatically unless you used the `--no-bundle` flag during initialization.
|
|
29
|
+
|
|
30
|
+
Move into your new application's directory and run the top-level `eucalypt` command to display a list of all available commands.
|
|
31
|
+
|
|
32
|
+
## Documentation and help
|
|
33
|
+
|
|
34
|
+
The writing of full documentation is currently in progress and will be available in the form of a [GitBook](https://www.gitbook.com/).
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
## Features
|
|
39
|
+
|
|
40
|
+
Some of these features are pretty set in stone, but it may be possible to change some of them around with a little bit of work.
|
|
41
|
+
|
|
42
|
+
| Type | Feature |
|
|
43
|
+
| -------------------- | ------------------------------------------------------------ |
|
|
44
|
+
| Core/DSL | [Sinatra](http://sinatrarb.com/) |
|
|
45
|
+
| Web server | [Thin](https://github.com/macournoyer/thin) |
|
|
46
|
+
| ORM | [ActiveRecord](https://github.com/rails/rails/tree/master/activerecord) |
|
|
47
|
+
| ORDBMS | [PostgreSQL](https://www.postgresql.org/) (prod) + [SQLite3](https://www.sqlite.org/) (test, dev) |
|
|
48
|
+
| Asset pipeline | [Sprockets](https://github.com/rails/sprockets) |
|
|
49
|
+
| Templating engine | [ERB](https://ruby-doc.org/stdlib-2.5.0/libdoc/erb/rdoc/ERB.html) |
|
|
50
|
+
| Markdown processor | [RDiscount](https://github.com/davidfstr/rdiscount) |
|
|
51
|
+
| Front matter parsing | [FrontMatterParser](https://github.com/waiting-for-dev/front_matter_parser) |
|
|
52
|
+
| HTML helpers | [Hanami](https://github.com/hanami/helpers) |
|
|
53
|
+
| CSS preprocessing | [SCSS](http://sass-lang.com/) |
|
|
54
|
+
| JS compressing | [Uglifier](https://github.com/lautis/uglifier) |
|
|
55
|
+
| Logging | [Lumberjack](https://github.com/bdurand/lumberjack) |
|
|
56
|
+
| Specs | [RSpec](http://rspec.info/) + [Rack-Test](https://github.com/rack-test/rack-test) + [Shoulda-Matchers](http://matchers.shoulda.io/) |
|
|
57
|
+
| Encryption | [BCrypt](https://github.com/codahale/bcrypt-ruby) |
|
|
58
|
+
| Authentication | [Warden](https://github.com/wardencommunity/warden) |
|
|
59
|
+
| Authorization | [Pundit](https://github.com/varvet/pundit) |
|
|
60
|
+
|
data/Rakefile
CHANGED
data/eucalypt.gemspec
CHANGED
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.authors = ["Edwin Onuonga"]
|
|
9
9
|
spec.email = ["edwinonuonga@gmail.com"]
|
|
10
10
|
|
|
11
|
-
spec.summary = %q{Micro-framework and CLI for the generation and maintenance of structured
|
|
12
|
-
spec.homepage = "https://eucalypt.gitbook.io/eucalypt/"
|
|
11
|
+
spec.summary = %q{Micro-framework and CLI wrapped around the Sinatra DSL, for the generation and maintenance of structured web applications.}
|
|
12
|
+
# spec.homepage = "https://eucalypt.gitbook.io/eucalypt/"
|
|
13
13
|
spec.license = "MIT"
|
|
14
14
|
spec.files = Dir.glob('lib/**/*', File::FNM_DOTMATCH) + %w[Gemfile LICENSE README.md Rakefile eucalypt.gemspec bin/eucalypt]
|
|
15
15
|
spec.bindir = "bin"
|
data/lib/eucalypt/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: eucalypt
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Edwin Onuonga
|
|
@@ -344,7 +344,7 @@ files:
|
|
|
344
344
|
- lib/eucalypt/list.rb
|
|
345
345
|
- lib/eucalypt/static.rb
|
|
346
346
|
- lib/eucalypt/version.rb
|
|
347
|
-
homepage:
|
|
347
|
+
homepage:
|
|
348
348
|
licenses:
|
|
349
349
|
- MIT
|
|
350
350
|
metadata:
|
|
@@ -368,6 +368,6 @@ rubyforge_project:
|
|
|
368
368
|
rubygems_version: 2.7.7
|
|
369
369
|
signing_key:
|
|
370
370
|
specification_version: 4
|
|
371
|
-
summary: Micro-framework and CLI
|
|
372
|
-
|
|
371
|
+
summary: Micro-framework and CLI wrapped around the Sinatra DSL, for the generation
|
|
372
|
+
and maintenance of structured web applications.
|
|
373
373
|
test_files: []
|