jpush_api_ruby_client 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (60) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +17 -0
  3. data/Gemfile +4 -0
  4. data/LICENSE.txt +22 -0
  5. data/README.md +45 -0
  6. data/Rakefile +1 -0
  7. data/doc/Gemfile.html +105 -0
  8. data/doc/JPushApiRubyClient/Client.html +774 -0
  9. data/doc/JPushApiRubyClient/MsgType.html +159 -0
  10. data/doc/JPushApiRubyClient/PlatformType.html +164 -0
  11. data/doc/JPushApiRubyClient/ReceiverType.html +169 -0
  12. data/doc/JPushApiRubyClient.html +166 -0
  13. data/doc/LICENSE_txt.html +121 -0
  14. data/doc/Rakefile.html +101 -0
  15. data/doc/created.rid +15 -0
  16. data/doc/doc/created_rid.html +99 -0
  17. data/doc/images/add.png +0 -0
  18. data/doc/images/arrow_up.png +0 -0
  19. data/doc/images/brick.png +0 -0
  20. data/doc/images/brick_link.png +0 -0
  21. data/doc/images/bug.png +0 -0
  22. data/doc/images/bullet_black.png +0 -0
  23. data/doc/images/bullet_toggle_minus.png +0 -0
  24. data/doc/images/bullet_toggle_plus.png +0 -0
  25. data/doc/images/date.png +0 -0
  26. data/doc/images/delete.png +0 -0
  27. data/doc/images/find.png +0 -0
  28. data/doc/images/loadingAnimation.gif +0 -0
  29. data/doc/images/macFFBgHack.png +0 -0
  30. data/doc/images/package.png +0 -0
  31. data/doc/images/page_green.png +0 -0
  32. data/doc/images/page_white_text.png +0 -0
  33. data/doc/images/page_white_width.png +0 -0
  34. data/doc/images/plugin.png +0 -0
  35. data/doc/images/ruby.png +0 -0
  36. data/doc/images/tag_blue.png +0 -0
  37. data/doc/images/tag_green.png +0 -0
  38. data/doc/images/transparent.png +0 -0
  39. data/doc/images/wrench.png +0 -0
  40. data/doc/images/wrench_orange.png +0 -0
  41. data/doc/images/zoom.png +0 -0
  42. data/doc/index.html +96 -0
  43. data/doc/jpush_api_ruby_client_gemspec.html +126 -0
  44. data/doc/js/darkfish.js +155 -0
  45. data/doc/js/jquery.js +18 -0
  46. data/doc/js/navigation.js +142 -0
  47. data/doc/js/search.js +94 -0
  48. data/doc/js/search_index.js +1 -0
  49. data/doc/js/searcher.js +228 -0
  50. data/doc/rdoc.css +595 -0
  51. data/doc/table_of_contents.html +99 -0
  52. data/example/client_example.rb +66 -0
  53. data/jpush_api_ruby_client.gemspec +25 -0
  54. data/lib/jpush_api_ruby_client/client.rb +233 -0
  55. data/lib/jpush_api_ruby_client/msg_type.rb +12 -0
  56. data/lib/jpush_api_ruby_client/platform_type.rb +14 -0
  57. data/lib/jpush_api_ruby_client/receiver_type.rb +16 -0
  58. data/lib/jpush_api_ruby_client/version.rb +3 -0
  59. data/lib/jpush_api_ruby_client.rb +8 -0
  60. metadata +158 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 3e463ad231ecaa0cbf83e47752d8589dfb40e990
4
+ data.tar.gz: 34634536d3a82e92b7d9ca431fc076ddae6c28ab
5
+ SHA512:
6
+ metadata.gz: a76b7c44054e97997b3644e08c0bb4a35a920449a56ef2a5f251a80db912aab9a8a2f303bffbeb524a7e5031bc4567485a39780a5da1ff75d4a96c45bad3eab0
7
+ data.tar.gz: 1d234a6856d9ffd9062d53f36b686ae57414d9c355267071e55e4fb438861b6aa0bb7af64b62a25bcef9dbe73ab33810dc7950e492e4ec18e1f732c3e7948cca
data/.gitignore ADDED
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ lib/bundler/man
11
+ pkg
12
+ rdoc
13
+ spec/reports
14
+ test/tmp
15
+ test/version_tmp
16
+ tmp
17
+ .idea/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in jpush_api_ruby_client.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 ouyangxian
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,45 @@
1
+ # JpushApiRubyClient
2
+
3
+ JPush API Ruby 客户端
4
+
5
+ forked from https://github.com/lanrion/jpush_ruby_sdk
6
+
7
+ 感谢作者做的先期工作
8
+
9
+ ## Installation
10
+
11
+ Add this line to your application's Gemfile:
12
+
13
+ gem 'jpush_api_ruby_client'
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ remote install
22
+
23
+ $ gem install jpush_api_ruby_client
24
+
25
+ local install
26
+
27
+ $ gem build jpush_api_ruby_client.gemspec
28
+ $ gem install jpush_api_ruby_client -l
29
+
30
+
31
+ ##Example
32
+
33
+ Detailes refer to [Example](/example/client_example.rb)
34
+
35
+ ## Usage
36
+
37
+ Detailes refer to [Doc](/doc/index.html)
38
+
39
+ ## Contributing
40
+
41
+ 1. Fork it
42
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
43
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
44
+ 4. Push to the branch (`git push origin my-new-feature`)
45
+ 5. Create new Pull Request
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
data/doc/Gemfile.html ADDED
@@ -0,0 +1,105 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>Gemfile - RDoc Documentation</title>
8
+
9
+ <link type="text/css" media="screen" href="./rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "./";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="./js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="./js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="./js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="./js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="./js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="./js/darkfish.js"></script>
21
+
22
+
23
+ <body class="file">
24
+ <nav id="metadata">
25
+ <nav id="home-section" class="section">
26
+ <h3 class="section-header">
27
+ <a href="./index.html">Home</a>
28
+ <a href="./table_of_contents.html#classes">Classes</a>
29
+ <a href="./table_of_contents.html#methods">Methods</a>
30
+ </h3>
31
+ </nav>
32
+
33
+
34
+ <nav id="search-section" class="section project-section" class="initially-hidden">
35
+ <form action="#" method="get" accept-charset="utf-8">
36
+ <h3 class="section-header">
37
+ <input type="text" name="search" placeholder="Search" id="search-field"
38
+ title="Type to search, Up and Down to navigate, Enter to load">
39
+ </h3>
40
+ </form>
41
+
42
+ <ul id="search-results" class="initially-hidden"></ul>
43
+ </nav>
44
+
45
+
46
+
47
+
48
+ <div id="project-metadata">
49
+ <nav id="fileindex-section" class="section project-section">
50
+ <h3 class="section-header">Pages</h3>
51
+
52
+ <ul>
53
+
54
+ <li class="file"><a href="./Gemfile.html">Gemfile</a>
55
+
56
+ <li class="file"><a href="./LICENSE_txt.html">LICENSE</a>
57
+
58
+ <li class="file"><a href="./Rakefile.html">Rakefile</a>
59
+
60
+ <li class="file"><a href="./doc/created_rid.html">created.rid</a>
61
+
62
+ <li class="file"><a href="./jpush_api_ruby_client_gemspec.html">jpush_api_ruby_client.gemspec</a>
63
+
64
+ </ul>
65
+ </nav>
66
+
67
+ <nav id="classindex-section" class="section project-section">
68
+ <h3 class="section-header">Class and Module Index</h3>
69
+
70
+ <ul class="link-list">
71
+
72
+ <li><a href="./JPushApiRubyClient.html">JPushApiRubyClient</a>
73
+
74
+ <li><a href="./JPushApiRubyClient/Client.html">JPushApiRubyClient::Client</a>
75
+
76
+ <li><a href="./JPushApiRubyClient/MsgType.html">JPushApiRubyClient::MsgType</a>
77
+
78
+ <li><a href="./JPushApiRubyClient/PlatformType.html">JPushApiRubyClient::PlatformType</a>
79
+
80
+ <li><a href="./JPushApiRubyClient/ReceiverType.html">JPushApiRubyClient::ReceiverType</a>
81
+
82
+ </ul>
83
+ </nav>
84
+
85
+ </div>
86
+ </nav>
87
+
88
+ <div id="documentation" class="description">
89
+
90
+ <p>source &#39;<a href="https://rubygems.org">rubygems.org</a>&#39;</p>
91
+
92
+ <p># Specify your gem&#39;s dependencies in <a
93
+ href="jpush_api_ruby_client_gemspec.html">jpush_api_ruby_client.gemspec</a>
94
+ gemspec</p>
95
+
96
+ </div>
97
+
98
+
99
+
100
+ <footer id="validator-badges">
101
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
102
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 4.0.0.
103
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
104
+ </footer>
105
+