cocoapods-bugsnag 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/cocoapods-bugsnag.gemspec +21 -0
- metadata +17 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 12564af5ff7fdcd54d48d736983657d60af39981
|
4
|
+
data.tar.gz: 3ef6efb5cdabaf4085e289780172cd468c480bd7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1b4309595c541e450cac9f177f7c1bf6819d9f0ac98056407ab75baf7d9cb4184a1859905d754fa2b6659ec2adca30d64ab9857145ff1cdaef31a3dc9086a9b7
|
7
|
+
data.tar.gz: ebe3b93e4adb511bd3831160ab18f21e63f05ea08b0cc5613c0b876b947ef47c0df53386c551c45a4d431680ecbb7bb2f4d6ccba2805d381321fd22ce09e9a25
|
@@ -0,0 +1,21 @@
|
|
1
|
+
Gem::Specification.new do |spec|
|
2
|
+
spec.name = "cocoapods-bugsnag"
|
3
|
+
spec.version = "1.0.1"
|
4
|
+
spec.homepage = "https://bugsnag.com"
|
5
|
+
spec.description = "Configures the dSYM upload phase of your project when integrated with bugsnag."
|
6
|
+
spec.summary = "To get meaningful stacktraces from your crashes, the Bugsnag service needs your dSYM file for your build. This plugin adds an upload phase to your project where needed."
|
7
|
+
spec.authors = [ "Delisa Mason" ]
|
8
|
+
spec.email = [ "delisa@bugsnag.com" ]
|
9
|
+
spec.files = [
|
10
|
+
"lib/cocoapods_bugsnag.rb",
|
11
|
+
"lib/cocoapods_plugin.rb",
|
12
|
+
"cocoapods-bugsnag.gemspec"
|
13
|
+
]
|
14
|
+
spec.test_files = [ "spec/cocoapods_bugsnag_spec.rb" ]
|
15
|
+
spec.require_paths = [ "lib" ]
|
16
|
+
spec.license = "MIT"
|
17
|
+
|
18
|
+
spec.add_dependency "cocoapods", "~> 0.39.0"
|
19
|
+
spec.add_development_dependency "rake"
|
20
|
+
spec.add_development_dependency "bacon"
|
21
|
+
end
|
metadata
CHANGED
@@ -1,15 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-bugsnag
|
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
|
- Delisa Mason
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-12-
|
11
|
+
date: 2015-12-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: cocoapods
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.39.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 0.39.0
|
13
27
|
- !ruby/object:Gem::Dependency
|
14
28
|
name: rake
|
15
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -48,6 +62,7 @@ extra_rdoc_files: []
|
|
48
62
|
files:
|
49
63
|
- lib/cocoapods_bugsnag.rb
|
50
64
|
- lib/cocoapods_plugin.rb
|
65
|
+
- cocoapods-bugsnag.gemspec
|
51
66
|
- spec/cocoapods_bugsnag_spec.rb
|
52
67
|
homepage: https://bugsnag.com
|
53
68
|
licenses:
|