motion-deploygate 0.2 → 0.2.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 +6 -4
- data/lib/motion-deploygate.rb +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4cef457d80b0371abefbf8019394969508a98ffb
|
4
|
+
data.tar.gz: 922c351f4b2af96660905ee04f7d622f0eef9295
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 69c453e127d9a31ff6c81376818f578a33be08c144a9a63ad96234382d2d94cbfe0a1b907f3183301553e90e02cf259536bb96176bd8482fa3937b33435e1c55
|
7
|
+
data.tar.gz: 14e6f73eda5bf2c8d5bf6a9e11c439e11f75763a26d2bf390262cb1403ec018f45536865683a5d3f4a71646df2157870f8a6e85299c9fdf6023c5ebb7cd71cda
|
data/README.md
CHANGED
@@ -27,10 +27,12 @@ Or install it yourself as:
|
|
27
27
|
```ruby
|
28
28
|
Motion::Project::App.setup do |app|
|
29
29
|
...
|
30
|
-
app.
|
31
|
-
|
32
|
-
|
33
|
-
|
30
|
+
app.development do
|
31
|
+
app.deploygate.user_id = '<user_id>'
|
32
|
+
app.deploygate.api_key = '<api_key>'
|
33
|
+
app.deploygate.user_infomation = true # or false
|
34
|
+
app.deploygate.sdk = 'vendor/DeployGateSDK.framework'
|
35
|
+
end
|
34
36
|
...
|
35
37
|
end
|
36
38
|
```
|
data/lib/motion-deploygate.rb
CHANGED
@@ -64,9 +64,9 @@ EOF
|
|
64
64
|
data = File.read(file)
|
65
65
|
new_data = []
|
66
66
|
data.each_line do |line|
|
67
|
-
#
|
68
|
-
if line.strip == "
|
69
|
-
new_data << "
|
67
|
+
# replace "typedef enum" declaration to avoid http://hipbyte.myjetbrains.com/youtrack/issue/RM-479
|
68
|
+
if line.strip == "typedef enum DeployGateSDKOption : NSUInteger {"
|
69
|
+
new_data << "typedef enum DeployGateSDKOption {\n"
|
70
70
|
else
|
71
71
|
new_data << line
|
72
72
|
end
|
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.2.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-04-
|
11
|
+
date: 2014-04-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|