motion-wechat 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,15 +1,7 @@
1
1
  ---
2
- !binary "U0hBMQ==":
3
- metadata.gz: !binary |-
4
- ZGExN2E3MDA5Mzc4YjFmZmMyNjE3NjQ4ZTI4NzdjNjg4OTVmN2MxNg==
5
- data.tar.gz: !binary |-
6
- NGQwOTMxYzNhNzI3ZDQxNTk5YWNmMDdkNmU0NWQ3ODEwZWEyMDNjMg==
2
+ SHA1:
3
+ metadata.gz: 6a409062ddf8847ec76ba44d7ae20f22a348dd64
4
+ data.tar.gz: 05889ac31ada26aeff34b322394079af15225937
7
5
  SHA512:
8
- metadata.gz: !binary |-
9
- M2NlMGI1ODJkYTgzNTFjNDc1NzA3ZTUyOTFmYjFjMWI4MjQxNWJmMzVmNjBm
10
- ZGZlZWZkNzA2YjFhNjIzNDAzMjE2NGJhNDc0N2MyODRiZDZlZjgyZjA3MTAw
11
- ZTNkZTNlOGQ0ODE4MjUyM2RjZGJhMjViNWUzMzJlNGQ5NzNkODA=
12
- data.tar.gz: !binary |-
13
- MjIxMzc2NDI5YmYyMGU2N2Q1MDE1NzlhMjI3MTVjZDNjNGExOTRkMjZiNWY1
14
- MmUzZmVhNWMyZmFlYjliZjFjNWEyNmFkNjZmNGFlZDM0MjI5Yzg5YTUxZDYy
15
- M2JlYTc5NzZhZTJiNjFmMTEwYzllNmMyYjRlMTFkYTJlYjRiMDQ=
6
+ metadata.gz: 0dc82eb924adcabbb06435befe515d61abcc3d5f8d83f90ee66e4e7a626ee90329f4385f88fed4bb9e30a2b3b6e40d7daa78a36131a0b418643a2e4085b04322
7
+ data.tar.gz: af65871c625af76f838d17f8dbcc745ffa1cc544364fefa59773365d955ad2673a69abd2f85d7976870f26765f1b3c19388ee8ec9939ff7ef7b5aa273be75d08
data/README.md CHANGED
@@ -3,13 +3,13 @@ WechatSDK for RubyMotion
3
3
 
4
4
  - RubyMotion wrapper for [WechatSDK](https://open.weixin.qq.com)
5
5
  - Improving ...
6
+ - Update** not use pod, use vendor
6
7
 
7
8
  ## Setup
8
9
 
9
- Add WechatMotion to your Gemfile, and run `bundle install`:
10
+ Add MotionWechat to your Gemfile, and run `bundle install`:
10
11
  ```ruby
11
- gem 'motion-cocoapods'
12
- gem 'wechat-motion'
12
+ gem 'motion-wechat'
13
13
  ```
14
14
 
15
15
  Edit the Rakefile of your RubyMotion project and add the following require line:
@@ -19,12 +19,8 @@ require 'bundler'
19
19
  Bundler.require
20
20
  ```
21
21
 
22
- Then add WeChatSDK to your pods list and setup configuration in your Rakefile:
22
+ Then setup configuration in your Rakefile:
23
23
  ```ruby
24
- app.pods do
25
- pod 'WeChatSDK'
26
- end
27
-
28
24
  MotionWechat::Config.setup(app, 'app_key', 'app_secret')
29
25
  ```
30
26
 
data/lib/motion-wechat.rb CHANGED
@@ -9,9 +9,6 @@ Motion::Project::App.setup do |app|
9
9
  app.files.unshift(file)
10
10
  end
11
11
 
12
- app.pods ||= Motion::Project::CocoaPods.new(app)
13
- app.pods do
14
- pod 'WeChatSDK'
15
- end
12
+ app.vendor_project 'vendor/SDKExport', :static
16
13
 
17
14
  end
@@ -1,3 +1,3 @@
1
1
  module MotionWechat
2
- VERSION = '0.0.2'
2
+ VERSION = '0.0.3'
3
3
  end
metadata CHANGED
@@ -1,40 +1,26 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: motion-wechat
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Qi He
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-09-07 00:00:00.000000000 Z
12
- dependencies:
13
- - !ruby/object:Gem::Dependency
14
- name: motion-cocoapods
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - ~>
18
- - !ruby/object:Gem::Version
19
- version: '1.5'
20
- type: :runtime
21
- prerelease: false
22
- version_requirements: !ruby/object:Gem::Requirement
23
- requirements:
24
- - - ~>
25
- - !ruby/object:Gem::Version
26
- version: '1.5'
11
+ date: 2014-09-11 00:00:00.000000000 Z
12
+ dependencies: []
27
13
  description: Rubymotion gem to easily use WeChatSDK
28
14
  email: qhe@heyook.com
29
15
  executables: []
30
16
  extensions: []
31
17
  extra_rdoc_files: []
32
18
  files:
33
- - README.md
34
- - lib/motion-wechat.rb
35
19
  - lib/motion-wechat/api.rb
36
20
  - lib/motion-wechat/config.rb
37
21
  - lib/motion-wechat/version.rb
22
+ - lib/motion-wechat.rb
23
+ - README.md
38
24
  - spec/motion-wechat/api_spec.rb
39
25
  - spec/motion-wechat/config_spec.rb
40
26
  homepage: http://github.com/he9qi/motion-wechat
@@ -47,17 +33,17 @@ require_paths:
47
33
  - lib
48
34
  required_ruby_version: !ruby/object:Gem::Requirement
49
35
  requirements:
50
- - - ! '>='
36
+ - - '>='
51
37
  - !ruby/object:Gem::Version
52
38
  version: '0'
53
39
  required_rubygems_version: !ruby/object:Gem::Requirement
54
40
  requirements:
55
- - - ! '>='
41
+ - - '>='
56
42
  - !ruby/object:Gem::Version
57
43
  version: '0'
58
44
  requirements: []
59
45
  rubyforge_project:
60
- rubygems_version: 2.2.2
46
+ rubygems_version: 2.0.14
61
47
  signing_key:
62
48
  specification_version: 4
63
49
  summary: Rubymotion wrapper for WeChatSDK