motion-fabric 0.4 → 0.5
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/lib/motion-fabric.rb +4 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e83fc3b225b1ec4d3b1e546dbc739af849142c35
|
|
4
|
+
data.tar.gz: 5e08fae2357fd556715bab9b4f27d2c50703422e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0be175a2a9d4a8889354ca45a3834698671738afc1310621f953b79f8705b6597010bad57ec0db6c04c228f1596af86d6c78c3859f1dc98705da414018194c49
|
|
7
|
+
data.tar.gz: 5fed7cd8be906df435579d9b61af182cfbc4cbb7bb4e19a89035764fc3bc1ab17e5f8f633933b490aa91d42348e8e9b4eac5aa7c8fcea676724f797ca3bfe9a2
|
data/lib/motion-fabric.rb
CHANGED
|
@@ -88,7 +88,7 @@ Motion::Project::App.setup do |app|
|
|
|
88
88
|
end
|
|
89
89
|
|
|
90
90
|
def fabric_setup(&block)
|
|
91
|
-
pods_root = Motion::Project::CocoaPods::PODS_ROOT
|
|
91
|
+
pods_root = File.absolute_path(Motion::Project::CocoaPods::PODS_ROOT)
|
|
92
92
|
api_key = App.config.fabric.api_key
|
|
93
93
|
build_secret = App.config.fabric.build_secret
|
|
94
94
|
|
|
@@ -136,6 +136,9 @@ namespace :fabric do
|
|
|
136
136
|
task :upload do
|
|
137
137
|
App.config.fabric.beta_block.call if App.config.fabric.beta_block
|
|
138
138
|
|
|
139
|
+
# Crashlytics builds do not need this entitlement
|
|
140
|
+
App.config.entitlements['get-task-allow'] = false
|
|
141
|
+
|
|
139
142
|
file = File.join(Dir.tmpdir, 'motion-fabric.rb')
|
|
140
143
|
open(file, 'w') { |io| io.write 'CRASHLYTICS_BETA = true' }
|
|
141
144
|
App.config.files << file
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: motion-fabric
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: '0.
|
|
4
|
+
version: '0.5'
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- HipByte
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-04-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: motion-cocoapods
|
|
@@ -51,8 +51,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
51
51
|
version: '0'
|
|
52
52
|
requirements: []
|
|
53
53
|
rubyforge_project:
|
|
54
|
-
rubygems_version: 2.4.5
|
|
54
|
+
rubygems_version: 2.4.5.1
|
|
55
55
|
signing_key:
|
|
56
56
|
specification_version: 4
|
|
57
57
|
summary: motion-fabric allows you to easily integrate Fabric in your RubyMotion applications.
|
|
58
58
|
test_files: []
|
|
59
|
+
has_rdoc:
|