wadl 0.2.7 → 0.2.8
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 +7 -0
- data/ChangeLog +2 -0
- data/README +5 -4
- data/Rakefile +2 -1
- data/bin/wadl +2 -2
- data/lib/wadl.rb +2 -2
- data/lib/wadl/address.rb +2 -2
- data/lib/wadl/application.rb +2 -2
- data/lib/wadl/cheap_schema.rb +2 -2
- data/lib/wadl/cli.rb +2 -2
- data/lib/wadl/documentation.rb +2 -2
- data/lib/wadl/fault.rb +2 -2
- data/lib/wadl/fault_format.rb +2 -2
- data/lib/wadl/has_docs.rb +2 -2
- data/lib/wadl/http_method.rb +2 -2
- data/lib/wadl/link.rb +2 -2
- data/lib/wadl/option.rb +2 -2
- data/lib/wadl/param.rb +2 -2
- data/lib/wadl/representation_container.rb +2 -2
- data/lib/wadl/representation_format.rb +2 -2
- data/lib/wadl/request_format.rb +2 -2
- data/lib/wadl/resource.rb +2 -2
- data/lib/wadl/resource_and_address.rb +2 -2
- data/lib/wadl/resource_container.rb +2 -2
- data/lib/wadl/resource_type.rb +2 -2
- data/lib/wadl/resources.rb +2 -2
- data/lib/wadl/response.rb +2 -2
- data/lib/wadl/response_format.rb +2 -2
- data/lib/wadl/uri_parts.rb +2 -2
- data/lib/wadl/version.rb +1 -1
- data/lib/wadl/xml_representation.rb +2 -2
- metadata +48 -55
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 09edcf1ce635ec8148e28aab9b7d912bd7858b25
|
|
4
|
+
data.tar.gz: 04206b57c6fee54444eb16c0d0cee770b331fdfe
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: 8e3be1528667417365e6396db2d312533cbaaeadf1cae215b6d9859ded081b4aa19861ea6304dc8189a53fd34cc474d5f68d75d282be53395101b2afed5fd931
|
|
7
|
+
data.tar.gz: 33f00a807e7199aadf88118ac7c2d21944d08eddadd26c7c8da5a7adb4bc64bbf8b5f5cc93e8b4919b323913407868fd063664d1c7cce5228921725b4e1c946e
|
data/ChangeLog
CHANGED
data/README
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
== VERSION
|
|
4
4
|
|
|
5
|
-
This documentation refers to wadl version 0.2.
|
|
5
|
+
This documentation refers to wadl version 0.2.8
|
|
6
6
|
|
|
7
7
|
|
|
8
8
|
== DESCRIPTION
|
|
@@ -47,20 +47,21 @@ The 20060802 WADL standard is almost entirely supported. However,
|
|
|
47
47
|
<b></b>
|
|
48
48
|
Homepage:: http://www.crummy.com/software/wadl.rb
|
|
49
49
|
WADL:: http://wadl.java.net
|
|
50
|
-
Documentation:: http://
|
|
50
|
+
Documentation:: http://blackwinter.github.com/wadl
|
|
51
51
|
Source code:: http://github.com/blackwinter/wadl
|
|
52
|
+
RubyGem:: http://rubygems.org/gems/wadl
|
|
52
53
|
|
|
53
54
|
|
|
54
55
|
== AUTHORS
|
|
55
56
|
|
|
56
57
|
* Leonard Richardson <mailto:leonardr@segfault.org> (Original author)
|
|
57
|
-
* Jens Wille <mailto:jens.wille@
|
|
58
|
+
* Jens Wille <mailto:jens.wille@gmail.com>
|
|
58
59
|
|
|
59
60
|
|
|
60
61
|
== LICENSE AND COPYRIGHT
|
|
61
62
|
|
|
62
63
|
Copyright (C) 2006-2008 Leonard Richardson
|
|
63
|
-
Copyright (C) 2010-
|
|
64
|
+
Copyright (C) 2010-2013 Jens Wille
|
|
64
65
|
|
|
65
66
|
wadl is free software: you can redistribute it and/or modify it under
|
|
66
67
|
the terms of the GNU Affero General Public License as published by the
|
data/Rakefile
CHANGED
|
@@ -9,7 +9,8 @@ begin
|
|
|
9
9
|
:version => WADL::VERSION,
|
|
10
10
|
:summary => %q{Ruby client for the Web Application Description Language.},
|
|
11
11
|
:authors => ['Leonard Richardson', 'Jens Wille'],
|
|
12
|
-
:email => ['leonardr@segfault.org', 'jens.wille@
|
|
12
|
+
:email => ['leonardr@segfault.org', 'jens.wille@gmail.com'],
|
|
13
|
+
:license => %q{AGPL-3.0},
|
|
13
14
|
:homepage => :blackwinter,
|
|
14
15
|
:dependencies => %w[rest-open-uri mime-types] << ['ruby-nuggets', '>= 0.7.3']
|
|
15
16
|
}
|
data/bin/wadl
CHANGED
|
@@ -5,10 +5,10 @@
|
|
|
5
5
|
# #
|
|
6
6
|
# wadl -- Super cheap Ruby WADL client #
|
|
7
7
|
# #
|
|
8
|
-
# Copyright (C) 2010-
|
|
8
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
9
9
|
# #
|
|
10
10
|
# Authors: #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# wadl -- Super cheap Ruby WADL client #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl/address.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl/application.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl/cheap_schema.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl/cli.rb
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
# #
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
|
-
# Copyright (C) 2010-
|
|
6
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
7
7
|
# #
|
|
8
8
|
# Authors: #
|
|
9
|
-
# Jens Wille <jens.wille@
|
|
9
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
10
10
|
# #
|
|
11
11
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
12
12
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl/documentation.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl/fault.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl/fault_format.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl/has_docs.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl/http_method.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl/link.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl/option.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl/param.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl/request_format.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl/resource.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl/resource_type.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl/resources.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl/response.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl/response_format.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl/uri_parts.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
data/lib/wadl/version.rb
CHANGED
|
@@ -4,11 +4,11 @@
|
|
|
4
4
|
# A component of wadl, the super cheap Ruby WADL client. #
|
|
5
5
|
# #
|
|
6
6
|
# Copyright (C) 2006-2008 Leonard Richardson #
|
|
7
|
-
# Copyright (C) 2010-
|
|
7
|
+
# Copyright (C) 2010-2013 Jens Wille #
|
|
8
8
|
# #
|
|
9
9
|
# Authors: #
|
|
10
10
|
# Leonard Richardson <leonardr@segfault.org> (Original author) #
|
|
11
|
-
# Jens Wille <jens.wille@
|
|
11
|
+
# Jens Wille <jens.wille@gmail.com> #
|
|
12
12
|
# #
|
|
13
13
|
# wadl is free software; you can redistribute it and/or modify it under the #
|
|
14
14
|
# terms of the GNU Affero General Public License as published by the Free #
|
metadata
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: wadl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
5
|
-
prerelease:
|
|
4
|
+
version: 0.2.8
|
|
6
5
|
platform: ruby
|
|
7
6
|
authors:
|
|
8
7
|
- Leonard Richardson
|
|
@@ -10,60 +9,54 @@ authors:
|
|
|
10
9
|
autorequire:
|
|
11
10
|
bindir: bin
|
|
12
11
|
cert_chain: []
|
|
13
|
-
date:
|
|
12
|
+
date: 2013-12-19 00:00:00.000000000 Z
|
|
14
13
|
dependencies:
|
|
15
14
|
- !ruby/object:Gem::Dependency
|
|
16
15
|
name: rest-open-uri
|
|
17
16
|
requirement: !ruby/object:Gem::Requirement
|
|
18
|
-
none: false
|
|
19
17
|
requirements:
|
|
20
|
-
- -
|
|
18
|
+
- - ">="
|
|
21
19
|
- !ruby/object:Gem::Version
|
|
22
20
|
version: '0'
|
|
23
21
|
type: :runtime
|
|
24
22
|
prerelease: false
|
|
25
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
|
-
none: false
|
|
27
24
|
requirements:
|
|
28
|
-
- -
|
|
25
|
+
- - ">="
|
|
29
26
|
- !ruby/object:Gem::Version
|
|
30
27
|
version: '0'
|
|
31
28
|
- !ruby/object:Gem::Dependency
|
|
32
29
|
name: mime-types
|
|
33
30
|
requirement: !ruby/object:Gem::Requirement
|
|
34
|
-
none: false
|
|
35
31
|
requirements:
|
|
36
|
-
- -
|
|
32
|
+
- - ">="
|
|
37
33
|
- !ruby/object:Gem::Version
|
|
38
34
|
version: '0'
|
|
39
35
|
type: :runtime
|
|
40
36
|
prerelease: false
|
|
41
37
|
version_requirements: !ruby/object:Gem::Requirement
|
|
42
|
-
none: false
|
|
43
38
|
requirements:
|
|
44
|
-
- -
|
|
39
|
+
- - ">="
|
|
45
40
|
- !ruby/object:Gem::Version
|
|
46
41
|
version: '0'
|
|
47
42
|
- !ruby/object:Gem::Dependency
|
|
48
43
|
name: ruby-nuggets
|
|
49
44
|
requirement: !ruby/object:Gem::Requirement
|
|
50
|
-
none: false
|
|
51
45
|
requirements:
|
|
52
|
-
- -
|
|
46
|
+
- - ">="
|
|
53
47
|
- !ruby/object:Gem::Version
|
|
54
48
|
version: 0.7.3
|
|
55
49
|
type: :runtime
|
|
56
50
|
prerelease: false
|
|
57
51
|
version_requirements: !ruby/object:Gem::Requirement
|
|
58
|
-
none: false
|
|
59
52
|
requirements:
|
|
60
|
-
- -
|
|
53
|
+
- - ">="
|
|
61
54
|
- !ruby/object:Gem::Version
|
|
62
55
|
version: 0.7.3
|
|
63
56
|
description: Ruby client for the Web Application Description Language.
|
|
64
57
|
email:
|
|
65
58
|
- leonardr@segfault.org
|
|
66
|
-
- jens.wille@
|
|
59
|
+
- jens.wille@gmail.com
|
|
67
60
|
executables:
|
|
68
61
|
- wadl
|
|
69
62
|
extensions: []
|
|
@@ -72,79 +65,79 @@ extra_rdoc_files:
|
|
|
72
65
|
- COPYING
|
|
73
66
|
- ChangeLog
|
|
74
67
|
files:
|
|
75
|
-
- lib/wadl
|
|
76
|
-
- lib/wadl/version.rb
|
|
77
|
-
- lib/wadl/cli.rb
|
|
68
|
+
- lib/wadl.rb
|
|
78
69
|
- lib/wadl/address.rb
|
|
70
|
+
- lib/wadl/application.rb
|
|
71
|
+
- lib/wadl/cheap_schema.rb
|
|
72
|
+
- lib/wadl/cli.rb
|
|
73
|
+
- lib/wadl/documentation.rb
|
|
74
|
+
- lib/wadl/fault.rb
|
|
75
|
+
- lib/wadl/fault_format.rb
|
|
76
|
+
- lib/wadl/has_docs.rb
|
|
79
77
|
- lib/wadl/http_method.rb
|
|
80
|
-
- lib/wadl/option.rb
|
|
81
|
-
- lib/wadl/request_format.rb
|
|
82
78
|
- lib/wadl/link.rb
|
|
79
|
+
- lib/wadl/option.rb
|
|
80
|
+
- lib/wadl/param.rb
|
|
83
81
|
- lib/wadl/representation_container.rb
|
|
84
|
-
- lib/wadl/
|
|
85
|
-
- lib/wadl/
|
|
86
|
-
- lib/wadl/
|
|
87
|
-
- lib/wadl/response_format.rb
|
|
82
|
+
- lib/wadl/representation_format.rb
|
|
83
|
+
- lib/wadl/request_format.rb
|
|
84
|
+
- lib/wadl/resource.rb
|
|
88
85
|
- lib/wadl/resource_and_address.rb
|
|
89
86
|
- lib/wadl/resource_container.rb
|
|
90
|
-
- lib/wadl/
|
|
87
|
+
- lib/wadl/resource_type.rb
|
|
91
88
|
- lib/wadl/resources.rb
|
|
92
|
-
- lib/wadl/
|
|
89
|
+
- lib/wadl/response.rb
|
|
90
|
+
- lib/wadl/response_format.rb
|
|
93
91
|
- lib/wadl/uri_parts.rb
|
|
94
|
-
- lib/wadl/
|
|
95
|
-
- lib/wadl/
|
|
96
|
-
- lib/wadl/representation_format.rb
|
|
97
|
-
- lib/wadl/param.rb
|
|
98
|
-
- lib/wadl/resource.rb
|
|
99
|
-
- lib/wadl/cheap_schema.rb
|
|
100
|
-
- lib/wadl.rb
|
|
92
|
+
- lib/wadl/version.rb
|
|
93
|
+
- lib/wadl/xml_representation.rb
|
|
101
94
|
- bin/wadl
|
|
102
95
|
- COPYING
|
|
103
|
-
- TODO
|
|
104
96
|
- ChangeLog
|
|
105
|
-
- Rakefile
|
|
106
97
|
- README
|
|
98
|
+
- Rakefile
|
|
99
|
+
- TODO
|
|
100
|
+
- example/README
|
|
101
|
+
- example/YahooSearch.rb
|
|
102
|
+
- example/YahooSearch.wadl
|
|
107
103
|
- example/config.yaml
|
|
108
|
-
- example/delicious.rb
|
|
109
|
-
- example/yahoo.wadl
|
|
110
|
-
- example/yahoo.rb
|
|
111
104
|
- example/crummy.rb
|
|
112
|
-
- example/YahooSearch.rb
|
|
113
105
|
- example/crummy.wadl
|
|
106
|
+
- example/delicious.rb
|
|
114
107
|
- example/delicious.wadl
|
|
115
|
-
- example/
|
|
116
|
-
- example/
|
|
108
|
+
- example/yahoo.rb
|
|
109
|
+
- example/yahoo.wadl
|
|
117
110
|
- test/wadl_test.rb
|
|
118
111
|
homepage: http://github.com/blackwinter/wadl
|
|
119
|
-
licenses:
|
|
112
|
+
licenses:
|
|
113
|
+
- AGPL-3.0
|
|
114
|
+
metadata: {}
|
|
120
115
|
post_install_message:
|
|
121
116
|
rdoc_options:
|
|
122
|
-
- --
|
|
117
|
+
- "--title"
|
|
118
|
+
- wadl Application documentation (v0.2.8)
|
|
119
|
+
- "--charset"
|
|
123
120
|
- UTF-8
|
|
124
|
-
- --line-numbers
|
|
125
|
-
- --all
|
|
126
|
-
- --
|
|
127
|
-
- wadl Application documentation (v0.2.7)
|
|
128
|
-
- --main
|
|
121
|
+
- "--line-numbers"
|
|
122
|
+
- "--all"
|
|
123
|
+
- "--main"
|
|
129
124
|
- README
|
|
130
125
|
require_paths:
|
|
131
126
|
- lib
|
|
132
127
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
133
|
-
none: false
|
|
134
128
|
requirements:
|
|
135
|
-
- -
|
|
129
|
+
- - ">="
|
|
136
130
|
- !ruby/object:Gem::Version
|
|
137
131
|
version: '0'
|
|
138
132
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
139
|
-
none: false
|
|
140
133
|
requirements:
|
|
141
|
-
- -
|
|
134
|
+
- - ">="
|
|
142
135
|
- !ruby/object:Gem::Version
|
|
143
136
|
version: '0'
|
|
144
137
|
requirements: []
|
|
145
138
|
rubyforge_project:
|
|
146
|
-
rubygems_version: 1.
|
|
139
|
+
rubygems_version: 2.1.11
|
|
147
140
|
signing_key:
|
|
148
|
-
specification_version:
|
|
141
|
+
specification_version: 4
|
|
149
142
|
summary: Ruby client for the Web Application Description Language.
|
|
150
143
|
test_files: []
|