dandy 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7e832d14bcbe5cfab5fb444eb8d0591560eee786
4
- data.tar.gz: afddef95833e6aabcca2e14739006e59b8eddd13
3
+ metadata.gz: b439ee8085670ca2088c66b70d7d830f298db3c5
4
+ data.tar.gz: 9a7a2d7c6c6068d84a90b3094408e82f4f7ec8f0
5
5
  SHA512:
6
- metadata.gz: 8006bfb62ecb550d47a1feb89301d960f069d4ff378a31faaa91a2320250671b2c082b78296190f079ba1dfe30f783e4462b829ffb9a7efbbd37f7af22a1f509
7
- data.tar.gz: 45af5e0ac320c569243be7612a18fef533a0c81d9a1e7ea8400c773f1ce05c53754373be4276a7c9bb3cebf13b647085305a8e74f1568d4246981b1eb26c64d0
6
+ metadata.gz: '0886804b1309ff7302961ef8503112e6a50712bfc44e273ed03a3e47eade4667c38d3d242b83511fea295c3b0da8696ef0e9cd6dce703c25e066744447771fb0'
7
+ data.tar.gz: 74b2bd53953b0794890b23bccad5565a19c1d23aff8b9f2fa4c7a87cd5bd07d474b93ca252a07bfffaf7cc319ac7c6560a9f55362d7af2a506a3ff7a370307a2
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Dandy
1
+ # Dandy ![Build Status](https://travis-ci.org/cylon-v/dandy.svg?branch=master)
2
2
 
3
3
  Dandy is a minimalistic web API framework. Its main idea is to implement an approach
4
4
  from Clean Architecture principles - "web is just a delivery mechanism".
@@ -35,7 +35,8 @@ own language for that. Small example:
35
35
  $id ->
36
36
  :before -> load_post
37
37
  /comments ->
38
- POST -> add_comment -> notify_author -> notify_subscribers -> :respond <- comment_test =201
38
+ POST -> add_comment -> notify_author \
39
+ -> notify_subscribers -> :respond <- comment_test =201
39
40
  :catch -> handle_errors
40
41
  ```
41
42
 
@@ -4,7 +4,7 @@ gem 'rack-cors'
4
4
  gem 'hypo'
5
5
  gem 'dandy'
6
6
 
7
- gem 'sqlite'
7
+ gem 'sqlite3'
8
8
  #gem 'pg'
9
9
 
10
10
  gem 'sequel'
data/lib/dandy/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Dandy
2
- VERSION = '0.7.1'.freeze
2
+ VERSION = '0.7.2'.freeze
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dandy
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
  - Vladimir Kalinkin
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2018-04-12 00:00:00.000000000 Z
11
+ date: 2018-04-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: hypo