cocoapods-bugsnag 1.0.1 → 2.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +18 -0
- data/README.md +33 -0
- data/cocoapods-bugsnag.gemspec +3 -2
- metadata +19 -15
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 03323e28f4927af96c80f00685544abf5c66b48b
|
4
|
+
data.tar.gz: 978fdad28707388565f5573f627f2c3baa717675
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b38221b6f79feadc1e01bf9a20284759c932a288d06bdbcb7d3bfad8634f0350063485b88656087e0fcc469d3402ddd4e1079c7a13c5fc0edc5c3c0347e76e4b
|
7
|
+
data.tar.gz: d1ee5c8de92e02e61493fe6234c1b6ae83c94e90e1ebad433722d128b16620e670efa3592dda676ae2108c43c852142ee9602e45d541f888d7072f144b33117e
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
2.0.0 (30 Jun 2016)
|
2
|
+
=====
|
3
|
+
|
4
|
+
Version update to support CocoaPods 1.0
|
5
|
+
|
6
|
+
1.0.1 (23 Dec 2015)
|
7
|
+
=====
|
8
|
+
|
9
|
+
### Bug Fixes
|
10
|
+
|
11
|
+
* Fix for missing specification warning during `pod install`
|
12
|
+
| [7d70389](https://github.com/bugsnag/cocoapods-bugsnag/commit/7d70389af31b2b8807195aca3dae0e62140ff176)
|
13
|
+
|
14
|
+
|
15
|
+
1.0.0 (19 Dec 2015)
|
16
|
+
=====
|
17
|
+
|
18
|
+
Initial Release
|
data/README.md
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
# cocoapods-bugsnag
|
2
|
+
|
3
|
+
A [CocoaPods](https://cocoapods.org) plugin for integrating Cocoa projects with
|
4
|
+
[Bugsnag](https://bugsnag.com), an error tracking and resolution tool.
|
5
|
+
|
6
|
+
## Installation
|
7
|
+
|
8
|
+
`cocoapods-bugsnag` is available via [RubyGems](https://rubygems.org). To
|
9
|
+
install, run:
|
10
|
+
|
11
|
+
gem install cocoapods-bugsnag
|
12
|
+
|
13
|
+
### Installing from Source
|
14
|
+
|
15
|
+
1. Clone this repository
|
16
|
+
2. Run `bundle install` from the root of the repository (installing
|
17
|
+
[bundler](http://bundler.io) if needed)
|
18
|
+
3. Build the gem using `gem build cocoapods-bugsnag.gemspec`
|
19
|
+
4. Install the gem using `gem install cocoapods-bugsnag-<version>.gem`
|
20
|
+
|
21
|
+
## Usage
|
22
|
+
|
23
|
+
The [Bugsnag reporting library for Cocoa](https://github.com/bugsnag/bugsnag-cocoa)
|
24
|
+
is available via CocoaPods. Once you have added Bugsnag to your Podfile, running
|
25
|
+
`pod install` will add a build phase to your project workspace to upload your
|
26
|
+
[dSYM](http://noverse.com/blog/2010/03/how-to-deal-with-an-iphone-crash-report/)
|
27
|
+
files so the Bugsnag service can provide you with symbolicated stack traces.
|
28
|
+
|
29
|
+
## Support
|
30
|
+
|
31
|
+
* [Search open and closed issues](https://github.com/bugsnag/cocoapods-bugsnag/issues?utf8=✓&q=is%3Aissue)
|
32
|
+
for similar problems
|
33
|
+
* [Open an issue](https://github.com/bugsnag/cocoapods-bugsnag/issues/new)
|
data/cocoapods-bugsnag.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = "cocoapods-bugsnag"
|
3
|
-
spec.version = "
|
3
|
+
spec.version = "2.0.0"
|
4
4
|
spec.homepage = "https://bugsnag.com"
|
5
5
|
spec.description = "Configures the dSYM upload phase of your project when integrated with bugsnag."
|
6
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."
|
@@ -11,11 +11,12 @@ Gem::Specification.new do |spec|
|
|
11
11
|
"lib/cocoapods_plugin.rb",
|
12
12
|
"cocoapods-bugsnag.gemspec"
|
13
13
|
]
|
14
|
+
spec.extra_rdoc_files = [ "README.md", "CHANGELOG.md" ]
|
14
15
|
spec.test_files = [ "spec/cocoapods_bugsnag_spec.rb" ]
|
15
16
|
spec.require_paths = [ "lib" ]
|
16
17
|
spec.license = "MIT"
|
17
18
|
|
18
|
-
spec.add_dependency "cocoapods", "~>
|
19
|
+
spec.add_dependency "cocoapods", "~> 1.0"
|
19
20
|
spec.add_development_dependency "rake"
|
20
21
|
spec.add_development_dependency "bacon"
|
21
22
|
end
|
metadata
CHANGED
@@ -1,55 +1,55 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-bugsnag
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 2.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Delisa Mason
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2016-06-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cocoapods
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - ~>
|
17
|
+
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: '1.0'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - ~>
|
24
|
+
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: '1.0'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- -
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
33
|
version: '0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- -
|
38
|
+
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: bacon
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- -
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '0'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- -
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
55
|
description: Configures the dSYM upload phase of your project when integrated with
|
@@ -58,11 +58,15 @@ email:
|
|
58
58
|
- delisa@bugsnag.com
|
59
59
|
executables: []
|
60
60
|
extensions: []
|
61
|
-
extra_rdoc_files:
|
61
|
+
extra_rdoc_files:
|
62
|
+
- README.md
|
63
|
+
- CHANGELOG.md
|
62
64
|
files:
|
65
|
+
- CHANGELOG.md
|
66
|
+
- README.md
|
67
|
+
- cocoapods-bugsnag.gemspec
|
63
68
|
- lib/cocoapods_bugsnag.rb
|
64
69
|
- lib/cocoapods_plugin.rb
|
65
|
-
- cocoapods-bugsnag.gemspec
|
66
70
|
- spec/cocoapods_bugsnag_spec.rb
|
67
71
|
homepage: https://bugsnag.com
|
68
72
|
licenses:
|
@@ -74,17 +78,17 @@ require_paths:
|
|
74
78
|
- lib
|
75
79
|
required_ruby_version: !ruby/object:Gem::Requirement
|
76
80
|
requirements:
|
77
|
-
- -
|
81
|
+
- - ">="
|
78
82
|
- !ruby/object:Gem::Version
|
79
83
|
version: '0'
|
80
84
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
81
85
|
requirements:
|
82
|
-
- -
|
86
|
+
- - ">="
|
83
87
|
- !ruby/object:Gem::Version
|
84
88
|
version: '0'
|
85
89
|
requirements: []
|
86
90
|
rubyforge_project:
|
87
|
-
rubygems_version: 2.
|
91
|
+
rubygems_version: 2.4.5
|
88
92
|
signing_key:
|
89
93
|
specification_version: 4
|
90
94
|
summary: To get meaningful stacktraces from your crashes, the Bugsnag service needs
|