motion-installr 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -2
- data/lib/motion/installr/version.rb +1 -1
- data/lib/motion/project/installr.rb +1 -1
- 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: e14785e3b9e05ae9f215588ee3c4193ef050eed3
|
4
|
+
data.tar.gz: c031534173ee0f3d7d882929cc4d904e8a3a845e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 393300cfdbb82b7f41997ffbe63ba6d964a75d9759c56a1cb8078fedc467b31da199a071067e2dc3a7d489ef83108f1ebffcf89517da5193a6b447d1c91119d5
|
7
|
+
data.tar.gz: 2744e6e9df795f01f385c17e62be80b49d529e607c490d21e43d6d76bb89868a06e1e6ffe11220554b8a73b3be06bf30f80a08817f32f6e010464fcdae2dc945
|
data/README.md
CHANGED
@@ -1,4 +1,6 @@
|
|
1
|
-
|
1
|
+
[![Gem Version](https://badge.fury.io/rb/motion-installr.svg)](http://badge.fury.io/rb/motion-installr)
|
2
|
+
|
3
|
+
# motion-installr
|
2
4
|
|
3
5
|
Just like motion-testflight and motion-hockeyapp, motion-installr is a gem to make it easy to configure your application for ad-hoc distribution, but unlike the overly complicated TestFlight and HockeyApp, everything is super easy with Installr. Also I'm not being paid to run this, I just really like Installr.
|
4
6
|
|
@@ -35,7 +37,7 @@ Inside of your setup block in your Rakefile, configure the following.
|
|
35
37
|
```ruby
|
36
38
|
Motion::Project::App.setup do |app|
|
37
39
|
# ...
|
38
|
-
app.
|
40
|
+
app.installrapp do
|
39
41
|
app.codesign_certificate = 'iPhone Distribution: Jane Doe (S0M3T3AM1D)'
|
40
42
|
app.provisioning_profile = '/path/to/your/provisioning/profile.mobileprovision'
|
41
43
|
app.entitlements['get-task-allow'] = false
|
@@ -28,7 +28,7 @@ namespace 'installr' do
|
|
28
28
|
|
29
29
|
curl = "curl https://www.installrapp.com/apps.json -H \"X-InstallrAppToken: #{App.config.installr_api_token}\" -F qqfile=@\"#{App.config.archive}\" -F releaseNotes=\"#{release_notes}\" -F notify=true"
|
30
30
|
|
31
|
-
App.info 'Run', curl
|
31
|
+
App.info 'Run', curl.gsub(App.config.installr_api_token, '*********')
|
32
32
|
sh curl
|
33
33
|
end
|
34
34
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: motion-installr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jack Dean Watson-Hamblin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-05-
|
11
|
+
date: 2014-05-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|