Skip to content

Commit 93409c1

Browse files
christoph-jerolimova7ul
authored andcommitted
Fix podspec for integration with CocoaPods (#10)
* Fix podspec * Use version 2.1.0, as in package.json
1 parent e317a39 commit 93409c1

File tree

1 file changed

+6
-10
lines changed

1 file changed

+6
-10
lines changed
Lines changed: 6 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,20 @@
11

22
Pod::Spec.new do |s|
33
s.name = "ReactNativeExceptionHandler"
4-
s.version = "1.0.0"
5-
s.summary = "ReactNativeExceptionHandler"
4+
s.summary = "A react native module that lets you to register a global error handler that can capture fatal/non fatal uncaught exceptions"
5+
s.version = "2.1.0"
66
s.description = <<-DESC
7-
ReactNativeExceptionHandler
7+
A react native module that lets you to register a global error handler that can capture fatal/non fatal uncaught exceptions.
8+
The module helps prevent abrupt crashing of RN Apps without a graceful message to the user.
89
DESC
9-
s.homepage = ""
10+
s.homepage = "https://github.com/master-atul/react-native-exception-handler"
1011
s.license = "MIT"
11-
# s.license = { :type => "MIT", :file => "FILE_LICENSE" }
12-
s.author = { "author" => "[email protected]" }
12+
s.author = { "Atul R" => "[email protected]" }
1313
s.platform = :ios, "7.0"
1414
s.source = { :git => "https://github.com/author/ReactNativeExceptionHandler.git", :tag => "master" }
1515
s.source_files = "ReactNativeExceptionHandler/**/*.{h,m}"
1616
s.requires_arc = true
1717

18-
1918
s.dependency "React"
20-
#s.dependency "others"
2119

2220
end
23-
24-

0 commit comments

Comments
 (0)