-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #33 from dtrenz/develop
RC 0.3.0
- Loading branch information
Showing
19 changed files
with
433 additions
and
340 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -21,3 +21,6 @@ DerivedData | |
|
||
# CocoaPods | ||
Pods/ | ||
|
||
# Jazzy | ||
docs/ |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
2.3 |
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,23 +1,25 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "BugShaker" | ||
s.version = "0.2.1" | ||
s.summary = "Shake to submit a bug report (w/ screenshot) via email." | ||
s.description = <<-DESC | ||
BugShaker allows your users to simply submit bug reports by shaking the device. | ||
When a shake is detected, the current screen state is captured and the user is | ||
prompted to submit a bug report via a mail composer with the screenshot attached. | ||
DESC | ||
s.homepage = "https://github.com/detroit-labs/BugShaker" | ||
s.screenshots = [ | ||
"https://raw.githubusercontent.com/dtrenz/BugShaker/develop/Screenshots/screenshot-1.png", | ||
"https://raw.githubusercontent.com/dtrenz/BugShaker/develop/Screenshots/screenshot-2.png", | ||
] | ||
s.license = "Apache 2.0" | ||
s.author = { "Dan Trenz" => "dtrenz@gmail.com" } | ||
s.source = { :git => "https://github.com/detroit-labs/BugShaker.git", :tag => s.version.to_s } | ||
s.social_media_url = "https://twitter.com/dtrenz" | ||
s.platform = :ios, "8.3" | ||
s.requires_arc = true | ||
s.source_files = "Sources/**/*" | ||
s.frameworks = "UIKit", "MessageUI" | ||
Pod::Spec.new do |spec| | ||
spec.name = 'BugShaker' | ||
spec.version = '0.3.0' | ||
spec.license = { :type => 'Apache 2.0' } | ||
spec.homepage = 'https://github.com/detroit-labs/BugShaker' | ||
spec.documentation_url = 'http://dtrenz.github.io/BugShaker/' | ||
spec.authors = { 'Dan Trenz' => 'dtrenz@gmail.com' } | ||
spec.summary = 'Shake to submit a bug report (w/ screenshot) via email.' | ||
spec.source = { :git => 'https://github.com/detroit-labs/BugShaker.git', :tag => spec.version.to_s } | ||
spec.source_files = 'Sources/*.swift' | ||
spec.platform = :ios, '9.0' | ||
spec.frameworks = 'UIKit', 'MessageUI' | ||
spec.requires_arc = true | ||
spec.description = <<-DESC | ||
BugShaker allows your users to simply submit bug reports by shaking the device. | ||
When a shake is detected, the current screen state is captured and the user is | ||
prompted to submit a bug report via a mail composer with the screenshot attached. | ||
DESC | ||
spec.screenshots = [ | ||
'https://raw.githubusercontent.com/dtrenz/BugShaker/develop/Screenshots/screenshot-1.png', | ||
'https://raw.githubusercontent.com/dtrenz/BugShaker/develop/Screenshots/screenshot-2.png', | ||
] | ||
spec.social_media_url = 'https://twitter.com/dtrenz' | ||
spec.source_files = 'Sources/**/*' | ||
end |
Large diffs are not rendered by default.
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
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
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,7 +1,16 @@ | ||
source "https://github.com/CocoaPods/Specs.git" | ||
source 'https://github.com/CocoaPods/Specs.git' | ||
use_frameworks! | ||
platform :ios, '9.3' | ||
|
||
target "BugShakerTests", :exclusive => true do | ||
pod "Quick", "~> 0.9.1" | ||
pod "Nimble", "3.2.0" | ||
target 'BugShakerTests' do | ||
pod 'Quick', '< 0.10' | ||
pod 'Nimble', '< 5.0' | ||
end | ||
|
||
post_install do | installer | | ||
installer.pods_project.targets.each do |target| | ||
target.build_configurations.each do |config| | ||
config.build_settings['SWIFT_VERSION'] = '2.3' | ||
end | ||
end | ||
end |
Oops, something went wrong.