motion-deploygate 0.3 → 0.3.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.
- checksums.yaml +4 -4
- data/README.md +3 -5
- data/ext/extconf.rb +7 -0
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: acf03704d8085fcbfa8c5accdd7dbdc2fd86f370
|
|
4
|
+
data.tar.gz: 18dec5bbff71e768f42e91d6d65c8ad9d94db5fb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 712b11a14014f89bf8ddcf312ac4ac298a2569f6151f18325bd737273189e7bf463b4750bb748dee067a388dbc38c4bab98538531ee4cbd8e52034ba1b80de00
|
|
7
|
+
data.tar.gz: b0451ea337fe4f1f14d4b9df1b286ac1ae14c2d4327cf670b2ef17900b5eefa2f6dbdf32b446346d73810dc957839777c426ec811a8368a0c69d26f3575fa3e4
|
data/README.md
CHANGED
|
@@ -18,11 +18,9 @@ Or install it yourself as:
|
|
|
18
18
|
|
|
19
19
|
## Setup
|
|
20
20
|
|
|
21
|
-
1.
|
|
21
|
+
1. Download the DeployGate SDK for iOS from https://deploygate.com/docs/ios_sdk and unpack it. Then, copy `DeployGateSDK.framework` into `vendor` directory of your RubyMotion project. Create the `vendor` directory if it does not exist.
|
|
22
22
|
|
|
23
|
-
2.
|
|
24
|
-
|
|
25
|
-
3. Configure the DeployGate SDK in your `Rakefile`. Set up `user_id`, `api_key` and `sdk` variables as following.
|
|
23
|
+
2. Configure the DeployGate SDK in your `Rakefile`. Set up `user_id`, `api_key` and `sdk` variables as following.
|
|
26
24
|
|
|
27
25
|
```ruby
|
|
28
26
|
Motion::Project::App.setup do |app|
|
|
@@ -39,7 +37,7 @@ end
|
|
|
39
37
|
### User authentication
|
|
40
38
|
|
|
41
39
|
If you would enable this feature, the testers can receive a notification when you will submit a new version to DeployGate.
|
|
42
|
-
Set up `user_infomation` and `url_scheme` variables to use the user authentication in your `Rakefile`.
|
|
40
|
+
Set up `user_infomation` and `url_scheme` variables to use the user authentication in your `Rakefile`.
|
|
43
41
|
|
|
44
42
|
```ruby
|
|
45
43
|
Motion::Project::App.setup do |app|
|
data/ext/extconf.rb
ADDED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: motion-deploygate
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version:
|
|
4
|
+
version: 0.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Watson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-05-07 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rake
|
|
@@ -28,10 +28,12 @@ description: DeployGate integration for RubyMotion projects
|
|
|
28
28
|
email:
|
|
29
29
|
- watson1978@gmail.com
|
|
30
30
|
executables: []
|
|
31
|
-
extensions:
|
|
31
|
+
extensions:
|
|
32
|
+
- ext/extconf.rb
|
|
32
33
|
extra_rdoc_files: []
|
|
33
34
|
files:
|
|
34
35
|
- README.md
|
|
36
|
+
- ext/extconf.rb
|
|
35
37
|
- lib/motion-deploygate.rb
|
|
36
38
|
homepage: https://github.com/Watson1978/motion-deploygate
|
|
37
39
|
licenses:
|