rack-app 2.3.0 → 2.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +16 -0
- data/CONTRIBUTING.md +26 -0
- data/CONTRIBUTORS.md +10 -0
- data/README.md +5 -1
- data/VERSION +1 -1
- data/rack-app.gemspec +5 -4
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ad8506429f00c8cf61712b58c30ef5e8ebdea569
|
4
|
+
data.tar.gz: a11ed11e9abf3e00862b7ac95d9311bf946a3e5b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 88326c427c07e4086db8861f4e7b762a393cf30ccc570e2bf62c737c1347c4768d8598b60a4d400631f6a60d87f7fbbd28e61b89553521669d99b46b99d4ea37
|
7
|
+
data.tar.gz: 0c8bbada9d89d67841640a6641743bdbd554c4fcb0d95891daef4226a86f9a94df355d2c203fd8ec5ac7eede97a8df9f94c806cfae21aa7b0fcd1dca5ec72109
|
data/.travis.yml
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
language: ruby
|
2
2
|
script: rspec spec
|
3
3
|
|
4
|
+
install:
|
5
|
+
- gem update bundler
|
6
|
+
- bundle install
|
7
|
+
|
4
8
|
rvm:
|
5
9
|
- 1.8
|
6
10
|
- 1.9
|
@@ -13,6 +17,18 @@ rvm:
|
|
13
17
|
- ruby-head
|
14
18
|
- jruby-head
|
15
19
|
|
20
|
+
matrix:
|
21
|
+
include:
|
22
|
+
|
23
|
+
- rvm: ruby-head
|
24
|
+
before_install:
|
25
|
+
- 'gem update --system 2.4.8'
|
26
|
+
|
27
|
+
|
28
|
+
allow_failures:
|
29
|
+
- rvm: ruby-head
|
30
|
+
- rvm: jruby-head
|
31
|
+
|
16
32
|
env:
|
17
33
|
global:
|
18
34
|
- VERBOSE=true
|
data/CONTRIBUTING.md
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
# How to contribute
|
2
|
+
|
3
|
+
I'm really glad you're reading this, because we need volunteer developers to help this project come to fruition.
|
4
|
+
[Rack::App official website](http://www.rack-app.com/) tells you where we are,
|
5
|
+
|
6
|
+
## Testing
|
7
|
+
|
8
|
+
We have a handful of rspec test examples. Please write RSpec examples for new code you create.
|
9
|
+
|
10
|
+
## Submitting changes
|
11
|
+
|
12
|
+
Please send a [GitHub Pull Request to opengovernment](https://github.com/rack-app/rack-app/pull/new/master) with a clear list of what you've done (read more about [pull requests](http://help.github.com/pull-requests/)). When you send a pull request, we will love you forever if you include RSpec examples. We can always use more test coverage. Please follow our coding conventions (below) and make sure all of your commits are atomic (one feature per commit).
|
13
|
+
|
14
|
+
Always write a clear log message for your commits. One-line messages are fine for small changes, but bigger changes should look like this:
|
15
|
+
|
16
|
+
$ git commit -m "feat(subject): a brief summary of the commit"
|
17
|
+
|
18
|
+
## Coding conventions
|
19
|
+
|
20
|
+
Start reading our code and you'll get the hang of it. We optimize for readability:
|
21
|
+
|
22
|
+
* We indent using two spaces (soft tabs)
|
23
|
+
* We ALWAYS put spaces after list items and method parameters (`[1, 2, 3]`, not `[1,2,3]`), around operators (`x += 1`, not `x+=1`), and around hash arrows.
|
24
|
+
* This is open source software. Consider the people who will read your code, and make it look nice for them. It's sort of like driving a car: Perhaps you love doing donuts when you're alone, but with passengers the goal is to make the ride as smooth as possible.
|
25
|
+
|
26
|
+
Thanks! :)
|
data/CONTRIBUTORS.md
ADDED
data/README.md
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
[travis-link]: http://travis-ci.org/rack-app/rack-app
|
5
5
|
[travis-home]: http://travis-ci.org/
|
6
6
|
|
7
|
-
![Rack::App](http://rack-app-website.herokuapp.com/
|
7
|
+
![Rack::App](http://rack-app-website.herokuapp.com/img/msruby_old.png)
|
8
8
|
|
9
9
|
Your next favourite rack based micro framework that is totally addition free!
|
10
10
|
Have a cup of awesomeness with your performance designed framework!
|
@@ -82,6 +82,10 @@ Yes, in fact it's already powering heroku hosted micro-services.
|
|
82
82
|
* File Upload and file download in a efficient and elegant way with minimal memory consuming
|
83
83
|
* note that this is not only memory friendly way pure rack solution, but also 2x faster than the usualy solution which includes buffering in memory
|
84
84
|
|
85
|
+
## [Contributors](CONTRIBUTORS.md)
|
86
|
+
|
87
|
+
## [Contributing](CONTRIBUTING.md)
|
88
|
+
|
85
89
|
## Usage
|
86
90
|
|
87
91
|
config.ru
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
2.3.
|
1
|
+
2.3.1
|
data/rack-app.gemspec
CHANGED
@@ -7,12 +7,13 @@ Gem::Specification.new do |spec|
|
|
7
7
|
|
8
8
|
spec.name = "rack-app"
|
9
9
|
spec.version = File.read(File.join(File.dirname(__FILE__), 'VERSION')).strip
|
10
|
-
spec.authors = ["Adam Luzsi"
|
11
|
-
spec.email = ["adamluzsi@gmail.com"
|
10
|
+
spec.authors = ["Adam Luzsi"]
|
11
|
+
spec.email = ["adamluzsi@gmail.com"]
|
12
12
|
|
13
13
|
spec.summary = %q{Your next favourite, performance designed micro framework!}
|
14
|
-
spec.description = %q{Your next favourite rack based micro framework that is totally addition free! Have a cup of awesomeness with
|
15
|
-
|
14
|
+
spec.description = %q{Your next favourite rack based micro framework that is totally addition free! Have a cup of awesomeness with your to performance designed framework!}
|
15
|
+
|
16
|
+
spec.homepage = 'http://www.rack-app.com/'
|
16
17
|
|
17
18
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
18
19
|
spec.bindir = "exe"
|
metadata
CHANGED
@@ -1,15 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rack-app
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Luzsi
|
8
|
-
- Daniel Nagy
|
9
8
|
autorequire:
|
10
9
|
bindir: exe
|
11
10
|
cert_chain: []
|
12
|
-
date: 2016-03-
|
11
|
+
date: 2016-03-17 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: bundler
|
@@ -68,10 +67,9 @@ dependencies:
|
|
68
67
|
- !ruby/object:Gem::Version
|
69
68
|
version: '0'
|
70
69
|
description: Your next favourite rack based micro framework that is totally addition
|
71
|
-
free! Have a cup of awesomeness with
|
70
|
+
free! Have a cup of awesomeness with your to performance designed framework!
|
72
71
|
email:
|
73
72
|
- adamluzsi@gmail.com
|
74
|
-
- naitodai@gmail.com
|
75
73
|
executables: []
|
76
74
|
extensions: []
|
77
75
|
extra_rdoc_files: []
|
@@ -80,6 +78,8 @@ files:
|
|
80
78
|
- ".rspec"
|
81
79
|
- ".travis.yml"
|
82
80
|
- CODE_OF_CONDUCT.md
|
81
|
+
- CONTRIBUTING.md
|
82
|
+
- CONTRIBUTORS.md
|
83
83
|
- Gemfile
|
84
84
|
- LICENSE
|
85
85
|
- README.md
|
@@ -118,7 +118,7 @@ files:
|
|
118
118
|
- lib/rack/app/utils.rb
|
119
119
|
- lib/rack/app/version.rb
|
120
120
|
- rack-app.gemspec
|
121
|
-
homepage:
|
121
|
+
homepage: http://www.rack-app.com/
|
122
122
|
licenses:
|
123
123
|
- Apache License 2.0
|
124
124
|
metadata: {}
|