Skip to content

Commit

Permalink
Update to 1.0.0-alpha2, try to get Cocoapods working
Browse files Browse the repository at this point in the history
  • Loading branch information
rokob committed Dec 19, 2017
1 parent c8a8101 commit 525f5b1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
17 changes: 10 additions & 7 deletions Rollbar.podspec
Original file line number Diff line number Diff line change
@@ -1,24 +1,27 @@
Pod::Spec.new do |s|
s.name = "Rollbar"
s.version = "1.0.0-alpha1"
s.version = "1.0.0-alpha2"
s.summary = "Objective-C library for crash reporting and logging with Rollbar."
s.description = <<-DESC
Find, fix, and resolve errors with Rollbar.
Easily send error data using Rollbar's API.
Analyze, de-dupe, send alerts, and prepare the data for further analysis.
Search, sort, and prioritize via the Rollbar dashboard.
DESC
s.homepage = "https://rollbar.com"
s.license = { :type => "MIT", :file => "LICENSE" }

s.homepage = "https://rollbar.com"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Rollbar" => "[email protected]" }
s.social_media_url = "http://twitter.com/rollbar"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/rollbar/rollbar-ios.git", :tag => "v1.0.0-alpha1" }
s.source_files = "Rollbar",
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/rollbar/rollbar-ios.git", :tag => "v1.0.0-alpha2" }
s.source_files = "Rollbar/*.{h,m}",
"KSCrash/Source/KSCrash/**/*.{m,h,mm,c,cpp}"

s.frameworks = "SystemConfiguration",
"MessageUI",
"UIKit",
"Foundation"
s.libraries = "c++"
s.libraries = "c++", "z"
s.requires_arc = true
end
2 changes: 1 addition & 1 deletion Rollbar/RollbarNotifier.m
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

#define MAX_PAYLOAD_SIZE 128 // The maximum payload size in kb

static NSString *NOTIFIER_VERSION = @"0.2.0";
static NSString *NOTIFIER_VERSION = @"1.0.0-alpha2";
static NSString *QUEUED_ITEMS_FILE_NAME = @"rollbar.items";
static NSString *STATE_FILE_NAME = @"rollbar.state";

Expand Down

0 comments on commit 525f5b1

Please sign in to comment.