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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: aa6a5ff7a9dcd9363c00239a5f3c4f061cf4462c619cc8b59f1cdf406cd876b3
4
- data.tar.gz: 5b40cd192caec208c295bbe054b4bded5bbb87d4c0a8fe50feeb94a16159edfc
3
+ metadata.gz: 3ff31c16e52b88c4347016094d3968710963f380473448a0e61d9fd8ca5cf260
4
+ data.tar.gz: d81fbee051b5eb8e055f027ee5b76e3c4ea1f5ba3a59a617c35de6c9257df784
5
5
  SHA512:
6
- metadata.gz: 7d0814b65d0d6c769e0d4f104066c5aeee5b3be0b4f0c0da18955b38938e951ddf71cf11918e6adca2c33a169cf8ede27a92f9b55b3bd784e5ad06340e5a8bce
7
- data.tar.gz: 2445d94f7f54fb716c06220d429b94a895b352172ddb85ce91abc163b23c8dad51bf1a8de31410daf3863d0a468764c3846afc6b12cf1dce92e44829dc36a9ff
6
+ metadata.gz: '07933f7d49293837ae648bda144ac099045f01c49bbc0ff860339d9a3563456b34bb5fdca418140cfb1f6ad3be8096754f3624f7295953e7541ba7b9bf0d3b32'
7
+ data.tar.gz: 9ddd2a61288259c154ad6d3b9c48fe53a6fcc5539a0d84a8d6a19541e89ae2429bbb696d3dec1e9ee86026e9bd366498ba0c6fb20e5daf76434727de6e8e5db7
data/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  [![Ruby Version](https://img.shields.io/badge/ruby-~%3E%202.5-red.svg)](https://github.com/eonu/eucalypt/blob/0c509a4e22fd97ec52b6f638af21de783f3aafc8/eucalypt.gemspec#L19)
2
2
  [![Gem](https://img.shields.io/gem/v/eucalypt.svg)](https://rubygems.org/gems/eucalypt)
3
- [![Build Status](https://travis-ci.org/eonu/eucalypt.svg?branch=master)]
4
- [![License](https://img.shields.io/github/license/eonu/eucalypt.svg)]
3
+ [![Build Status](https://travis-ci.org/eonu/eucalypt.svg?branch=master)](https://travis-ci.org/eonu/eucalypt)
4
+ [![License](https://img.shields.io/github/license/eonu/eucalypt.svg)](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 Sinatra web applications.
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
- And you're ready to go!
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
@@ -1,2 +1,6 @@
1
1
  require "bundler/gem_tasks"
2
- task :default => :spec
2
+ require 'rspec/core/rake_task'
3
+ task :default => [:spec]
4
+
5
+ desc "Run the specs"
6
+ RSpec::Core::RakeTask.new(:spec)
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 Sinatra web applications.}
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"
@@ -1,3 +1,3 @@
1
1
  module Eucalypt
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
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.0
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: https://eucalypt.gitbook.io/eucalypt/
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 for the generation and maintenance of structured
372
- Sinatra web applications.
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: []