nested 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (6) hide show
  1. checksums.yaml +4 -4
  2. data/.gitignore +17 -0
  3. data/LICENSE +20 -0
  4. data/README.md +4 -0
  5. data/nested.gemspec +3 -3
  6. metadata +5 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f19e9d429c1ae06debc557e262539cf5817e1cde
4
- data.tar.gz: 400c5102ec072ff320eec74aecff61dc8379e3d1
3
+ metadata.gz: 4fce21e39de8c613e2eed1e9af4653bf0a702d0c
4
+ data.tar.gz: c84216e905f7c07ea445f4f772bcaaa253b73f58
5
5
  SHA512:
6
- metadata.gz: 645f64ca4ad1229866c346ca2db9ff018272b4bccd9fd6df1245eb36453398a45b4d3e7396370dabec2f23250415323d4750154d3ab706ea70d9124d21240823
7
- data.tar.gz: 8f839e12ec5cd696efb49a6d5412471032f6f94adff0615eee26518885605799b0dda229bbfd015d409a056ab349bfb12d2a0a1b46fb6aacc0936476cc18206d
6
+ metadata.gz: 4a261bdf267fa0930ef3471612656748cecbafb30f71e39d394791b90472593f40d501d048d51362a847cc0bf441e884f7b2949b938851e9eb87b5fb765990a3
7
+ data.tar.gz: 596e8b07cbca6300e6d31d6b84d19b1edc619d4937c1fbbd644c26fb7793b097a74a10f69d72bf1c696a0d4d548ee0799863cdd83667946eccde0e84e341ae44
data/.gitignore CHANGED
@@ -1 +1,18 @@
1
1
  *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ coverage
6
+ InstalledFiles
7
+ lib/bundler/man
8
+ pkg
9
+ rdoc
10
+ spec/reports
11
+ test/tmp
12
+ test/version_tmp
13
+ tmp
14
+
15
+ # YARD artifacts
16
+ .yardoc
17
+ _yardoc
18
+ doc/
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
@@ -0,0 +1,4 @@
1
+ nested
2
+ ======
3
+
4
+ a nestable dsl to create a restful api
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.1"
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{rest dsl}
9
- s.description = %q{rest dsl}
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.1
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: rest dsl
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: rest dsl
78
+ summary: a nestable dsl to create a restful api
77
79
  test_files:
78
80
  - test/nested_test.rb