safrano 0.3.2 → 0.3.3
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 +4 -4
- data/lib/multipart.rb +40 -18
- data/lib/odata/batch.rb +17 -3
- data/lib/odata/collection.rb +97 -46
- data/lib/odata/collection_media.rb +148 -0
- data/lib/odata/common_logger.rb +34 -0
- data/lib/odata/entity.rb +159 -38
- data/lib/odata/error.rb +16 -5
- data/lib/odata/navigation_attribute.rb +119 -0
- data/lib/odata/walker.rb +12 -2
- data/lib/odata_rack_builder.rb +1 -1
- data/lib/rack_app.rb +12 -7
- data/lib/request.rb +15 -3
- data/lib/safrano.rb +1 -0
- data/lib/safrano_core.rb +2 -1
- data/lib/service.rb +41 -12
- data/lib/version.rb +4 -0
- metadata +6 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: safrano
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- D.M.
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rack
|
@@ -105,7 +105,9 @@ files:
|
|
105
105
|
- lib/odata/batch.rb
|
106
106
|
- lib/odata/collection.rb
|
107
107
|
- lib/odata/collection_filter.rb
|
108
|
+
- lib/odata/collection_media.rb
|
108
109
|
- lib/odata/collection_order.rb
|
110
|
+
- lib/odata/common_logger.rb
|
109
111
|
- lib/odata/entity.rb
|
110
112
|
- lib/odata/error.rb
|
111
113
|
- lib/odata/filter/error.rb
|
@@ -113,6 +115,7 @@ files:
|
|
113
115
|
- lib/odata/filter/sequel.rb
|
114
116
|
- lib/odata/filter/token.rb
|
115
117
|
- lib/odata/filter/tree.rb
|
118
|
+
- lib/odata/navigation_attribute.rb
|
116
119
|
- lib/odata/relations.rb
|
117
120
|
- lib/odata/url_parameters.rb
|
118
121
|
- lib/odata/walker.rb
|
@@ -125,6 +128,7 @@ files:
|
|
125
128
|
- lib/sequel/plugins/join_by_paths.rb
|
126
129
|
- lib/sequel_join_by_paths.rb
|
127
130
|
- lib/service.rb
|
131
|
+
- lib/version.rb
|
128
132
|
homepage: https://gitlab.com/dm0da/safrano
|
129
133
|
licenses:
|
130
134
|
- MIT
|