parsecom 0.0.1
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/.gitignore +19 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +139 -0
- data/Rakefile +1 -0
- data/lib/parse/client.rb +161 -0
- data/lib/parse/cloud_code.rb +2 -0
- data/lib/parse/ext/string.rb +11 -0
- data/lib/parse/file.rb +36 -0
- data/lib/parse/http_client.rb +23 -0
- data/lib/parse/object.rb +176 -0
- data/lib/parse/pointer.rb +25 -0
- data/lib/parse/query.rb +286 -0
- data/lib/parse/user.rb +47 -0
- data/lib/parse/version.rb +3 -0
- data/lib/parsecom.rb +58 -0
- data/parsecom.gemspec +21 -0
- data/spec/parse_object_spec.rb +54 -0
- data/spec/parse_query_spec.rb +176 -0
- data/spec/parse_user_spec.rb +23 -0
- data/spec/spec_helper.rb +14 -0
- metadata +87 -0
metadata
ADDED
@@ -0,0 +1,87 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: parsecom
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Ando Yasushi
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-10-01 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: rspec
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
description: Pure Ruby version of parse.com client. This library allow you to access
|
31
|
+
straightforwardly to parse.com REST API.
|
32
|
+
email:
|
33
|
+
- andyjpn@gmail.com
|
34
|
+
executables: []
|
35
|
+
extensions: []
|
36
|
+
extra_rdoc_files: []
|
37
|
+
files:
|
38
|
+
- .gitignore
|
39
|
+
- Gemfile
|
40
|
+
- LICENSE.txt
|
41
|
+
- README.md
|
42
|
+
- Rakefile
|
43
|
+
- lib/parse/client.rb
|
44
|
+
- lib/parse/cloud_code.rb
|
45
|
+
- lib/parse/ext/string.rb
|
46
|
+
- lib/parse/file.rb
|
47
|
+
- lib/parse/http_client.rb
|
48
|
+
- lib/parse/object.rb
|
49
|
+
- lib/parse/pointer.rb
|
50
|
+
- lib/parse/query.rb
|
51
|
+
- lib/parse/user.rb
|
52
|
+
- lib/parse/version.rb
|
53
|
+
- lib/parsecom.rb
|
54
|
+
- parsecom.gemspec
|
55
|
+
- spec/parse_object_spec.rb
|
56
|
+
- spec/parse_query_spec.rb
|
57
|
+
- spec/parse_user_spec.rb
|
58
|
+
- spec/spec_helper.rb
|
59
|
+
homepage: https://github.com/technohippy/parsecom
|
60
|
+
licenses: []
|
61
|
+
post_install_message:
|
62
|
+
rdoc_options: []
|
63
|
+
require_paths:
|
64
|
+
- lib
|
65
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
66
|
+
none: false
|
67
|
+
requirements:
|
68
|
+
- - ! '>='
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '0'
|
71
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
72
|
+
none: false
|
73
|
+
requirements:
|
74
|
+
- - ! '>='
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
requirements: []
|
78
|
+
rubyforge_project:
|
79
|
+
rubygems_version: 1.8.23
|
80
|
+
signing_key:
|
81
|
+
specification_version: 3
|
82
|
+
summary: Pure Ruby version of parse.com client
|
83
|
+
test_files:
|
84
|
+
- spec/parse_object_spec.rb
|
85
|
+
- spec/parse_query_spec.rb
|
86
|
+
- spec/parse_user_spec.rb
|
87
|
+
- spec/spec_helper.rb
|