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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: bdadb9c5562373f5d9a2f7d9f0afed148dd26eb8
4
- data.tar.gz: cdfc6ae484c331a90911304e852daabde596c4a3
3
+ metadata.gz: e14785e3b9e05ae9f215588ee3c4193ef050eed3
4
+ data.tar.gz: c031534173ee0f3d7d882929cc4d904e8a3a845e
5
5
  SHA512:
6
- metadata.gz: b56e2780241af7beb7629490f8b601fb3b4252276e7a6d294d8dfb97c5c4a1438443567ea340caa8fb7530132b3ab02d17d53d14e2fb05edc288335ae600bf91
7
- data.tar.gz: 2195aa5a591734d678a289b439e08e7c3ef5c6a97772fcccd8d8443c33775f5d6efb3562d658121678ae9fb2c8872634fc8350cc874470ce106c5d47babe7a73
6
+ metadata.gz: 393300cfdbb82b7f41997ffbe63ba6d964a75d9759c56a1cb8078fedc467b31da199a071067e2dc3a7d489ef83108f1ebffcf89517da5193a6b447d1c91119d5
7
+ data.tar.gz: 2744e6e9df795f01f385c17e62be80b49d529e607c490d21e43d6d76bb89868a06e1e6ffe11220554b8a73b3be06bf30f80a08817f32f6e010464fcdae2dc945
data/README.md CHANGED
@@ -1,4 +1,6 @@
1
- # Motion::Installr
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.development do
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
@@ -1,5 +1,5 @@
1
1
  module Motion
2
2
  module Installr
3
- VERSION = "1.0.0"
3
+ VERSION = "1.0.1"
4
4
  end
5
5
  end
@@ -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.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-05 00:00:00.000000000 Z
11
+ date: 2014-05-18 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler