nested 0.0.1 → 0.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +17 -0
- data/LICENSE +20 -0
- data/README.md +4 -0
- data/nested.gemspec +3 -3
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4fce21e39de8c613e2eed1e9af4653bf0a702d0c
|
4
|
+
data.tar.gz: c84216e905f7c07ea445f4f772bcaaa253b73f58
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4a261bdf267fa0930ef3471612656748cecbafb30f71e39d394791b90472593f40d501d048d51362a847cc0bf441e884f7b2949b938851e9eb87b5fb765990a3
|
7
|
+
data.tar.gz: 596e8b07cbca6300e6d31d6b84d19b1edc619d4937c1fbbd644c26fb7793b097a74a10f69d72bf1c696a0d4d548ee0799863cdd83667946eccde0e84e341ae44
|
data/.gitignore
CHANGED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2013 Jan Zimmek
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
7
|
+
the Software without restriction, including without limitation the rights to
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
9
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
10
|
+
subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
17
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
18
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
19
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
data/nested.gemspec
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = "nested"
|
3
|
-
s.version = "0.0.
|
3
|
+
s.version = "0.0.2"
|
4
4
|
|
5
5
|
s.authors = ["Jan Zimmek"]
|
6
6
|
s.email = %q{jan.zimmek@web.de}
|
7
7
|
|
8
|
-
s.summary = %q{
|
9
|
-
s.description = %q{
|
8
|
+
s.summary = %q{a nestable dsl to create a restful api}
|
9
|
+
s.description = %q{a nestable dsl to create a restful api}
|
10
10
|
|
11
11
|
|
12
12
|
s.files = `git ls-files`.split("\n")
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: nested
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jan Zimmek
|
@@ -38,7 +38,7 @@ dependencies:
|
|
38
38
|
- - '>='
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
-
description:
|
41
|
+
description: a nestable dsl to create a restful api
|
42
42
|
email: jan.zimmek@web.de
|
43
43
|
executables: []
|
44
44
|
extensions: []
|
@@ -47,6 +47,8 @@ files:
|
|
47
47
|
- .gitignore
|
48
48
|
- Gemfile
|
49
49
|
- Gemfile.lock
|
50
|
+
- LICENSE
|
51
|
+
- README.md
|
50
52
|
- Rakefile
|
51
53
|
- lib/nested.rb
|
52
54
|
- nested.gemspec
|
@@ -73,6 +75,6 @@ rubyforge_project:
|
|
73
75
|
rubygems_version: 2.0.0.rc.2
|
74
76
|
signing_key:
|
75
77
|
specification_version: 4
|
76
|
-
summary:
|
78
|
+
summary: a nestable dsl to create a restful api
|
77
79
|
test_files:
|
78
80
|
- test/nested_test.rb
|