scim-query-filter-parser 0.0.1 → 0.0.2
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.
- data/.gemspec +2 -2
- data/README.rdoc +3 -4
- metadata +2 -2
data/.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
GemSpec ||= Gem::Specification.new do |gem|
|
|
4
4
|
gem.name = 'scim-query-filter-parser'
|
|
5
|
-
gem.version = '0.0.
|
|
5
|
+
gem.version = '0.0.2'
|
|
6
6
|
gem.license = 'MIT'
|
|
7
7
|
gem.required_ruby_version = '>= 1.9.1'
|
|
8
8
|
|
|
@@ -13,7 +13,7 @@ GemSpec ||= Gem::Specification.new do |gem|
|
|
|
13
13
|
A parser for SCIM filter queries. Specced here:
|
|
14
14
|
http://www.simplecloud.info/specs/draft-scim-api-01.html#query-resources
|
|
15
15
|
.
|
|
16
|
-
gem.homepage = 'https://github.com/ingydotnet/scim-query-filter-parser'
|
|
16
|
+
gem.homepage = 'https://github.com/ingydotnet/scim-query-filter-parser-rb'
|
|
17
17
|
|
|
18
18
|
gem.files = `git ls-files`.lines.map{|l|l.chomp}
|
|
19
19
|
|
data/README.rdoc
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
{<img src="https://badge.fury.io/rb/scim-query-filter-parser.png" alt="Gem Version" />}[http://badge.fury.io/rb/scim-query-filter-parser]
|
|
2
|
+
{<img src="https://travis-ci.org/ingydotnet/scim-query-filter-parser-rb.png" />}[https://travis-ci.org/ingydotnet/scim-query-filter-parser-rb]
|
|
3
|
+
|
|
1
4
|
= Name
|
|
2
5
|
|
|
3
6
|
scim-query-filter-parser - Parser for SCIM Filter Query Strings
|
|
@@ -48,10 +51,6 @@ Or, optionally into this expression tree:
|
|
|
48
51
|
`tree = parser.tree`::
|
|
49
52
|
Get the parse result converted to a tree form.
|
|
50
53
|
|
|
51
|
-
= Code Status
|
|
52
|
-
|
|
53
|
-
* {<img src="https://travis-ci.org/ingydotnet/scim-query-filter-parser-rb.png" />}[https://travis-ci.org/ingydotnet/scim-query-filter-parser-rb]
|
|
54
|
-
|
|
55
54
|
= Copyright
|
|
56
55
|
|
|
57
56
|
Copyright (c) 2013 Ingy döt Net. See LICENSE for further details.
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: scim-query-filter-parser
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -46,7 +46,7 @@ files:
|
|
|
46
46
|
- Rakefile
|
|
47
47
|
- lib/scim/query/filter/parser.rb
|
|
48
48
|
- test/parse.rb
|
|
49
|
-
homepage: https://github.com/ingydotnet/scim-query-filter-parser
|
|
49
|
+
homepage: https://github.com/ingydotnet/scim-query-filter-parser-rb
|
|
50
50
|
licenses:
|
|
51
51
|
- MIT
|
|
52
52
|
post_install_message:
|