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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -4
  3. data/lib/motion-deploygate.rb +3 -3
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 488b78ab90ce3975eeb43aa12c8c489c71084d95
4
- data.tar.gz: ce79232eb0a6ca344ee4f6b20f22db6e682bb947
3
+ metadata.gz: 4cef457d80b0371abefbf8019394969508a98ffb
4
+ data.tar.gz: 922c351f4b2af96660905ee04f7d622f0eef9295
5
5
  SHA512:
6
- metadata.gz: 7cd4a11a1c7a5df62193d4a336ddcf128e6f838280e84370f2da33c161776de49ab18a000a1e287366a9794bc8841b0759d3dd0efd9392d412c6a154cbbf8939
7
- data.tar.gz: 02cd0d1e645277525a9663fc9a17f5a737a234ae1248ac13600ef264d4dc9aa1af94db4dafa6dbed18cc9c05013eb7d5552baaa988f46060bb3d2b9d26ea67b7
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.deploygate.user_id = '<user_id>'
31
- app.deploygate.api_key = '<api_key>'
32
- app.deploygate.user_infomation = true # or false
33
- app.deploygate.sdk = 'vendor/DeployGateSDK.framework'
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
  ```
@@ -64,9 +64,9 @@ EOF
64
64
  data = File.read(file)
65
65
  new_data = []
66
66
  data.each_line do |line|
67
- # comment out "@property(nonatomic) DeployGateSDKOption options;" line
68
- if line.strip == "@property(nonatomic) DeployGateSDKOption options;"
69
- new_data << "// #{line}"
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: '0.2'
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-23 00:00:00.000000000 Z
11
+ date: 2014-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake