-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Version 1.0.0-rc.0 * handle NSNull in json argument (#170) * support both web and native, and full rollbar.js config (#171) * Use platform specific imports for Rollbar.js (#172) * rename Rollbar.js file to Client.js * update ts type definitions * use platform specific import for Rollbar.js * feat: replace rollbar-ios with rollbar-apple (#175) * downgrade release from rc to beta * pin RollbarNotifier to 3.0.3 * update yarn.lock
- Loading branch information
Showing
23 changed files
with
611 additions
and
495 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'RollbarReactNative' | ||
s.version = '0.9.3' | ||
s.version = '1.0.0-beta.0' | ||
s.summary = 'RollbarReactNative' | ||
s.description = <<-DESC | ||
RollbarReactNative is a library for interacting with the Rollbar | ||
|
@@ -10,12 +10,13 @@ Pod::Spec.new do |s| | |
s.license = 'MIT' | ||
s.author = { 'Rollbar' => '[email protected]' } | ||
s.platform = :ios, '7.0' | ||
s.source = { :git => 'https://github.com/author/RollbarReactNative.git', :tag => 'v0.8.0' } | ||
s.source = { :git => 'https://github.com/rollbar/rollbar-react-native.git', :tag => '1.0.0-beta.0' } | ||
s.requires_arc = true | ||
|
||
s.dependency 'React-Core' | ||
s.dependency 'Rollbar', '~> 1.12.8' | ||
|
||
s.dependency 'RollbarNotifier', '3.0.3' | ||
s.source_files = 'ios/RollbarReactNative.{h,m}' | ||
s.public_header_files = 'ios/RollbarReactNative.h' | ||
|
||
s.compiler_flags = '-fmodules', '-fcxx-modules' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
'use strict' | ||
module.exports = require('./lib/Rollbar'); | ||
module.exports = require('./lib/Client'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.