Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CocoaPods support. #2

Merged
merged 2 commits into from
Jan 31, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions Bolts.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Pod::Spec.new do |s|
s.name = "Bolts"
s.version = "1.0.0"
s.summary = "Bolts is a collection of low-level libraries designed to make developing mobile apps easier."
s.description = <<-DESC
Bolts was designed by Parse and Facebook for our own internal use, and we have decided to open source these libraries to make them available to others. Using these libraries does not require using any Parse services. Nor do they require having a Parse or Facebook developer account.

The first component in Bolts is "tasks", which make organization of complex asynchronous code more manageable. A task is kind of like a JavaScript Promise, but available for iOS and Android.

For more information, see the [Bolts iOS API Reference](http://boltsframework.github.io/docs/ios/).
DESC
s.homepage = "https://github.com/BoltsFramework"
s.license = "BSD"
s.authors = { "Bryan Klimt" => "[email protected]", "David Poll" => "[email protected]" }
s.source = { :git => "https://github.com/BoltsFramework/Bolts-iOS.git", :tag => s.version.to_s }

s.requires_arc = true

s.source_files = 'Bolts'

s.public_header_files = 'Bolts/**/*.h'
end
5 changes: 3 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# Contributing to MyProject
# Contributing to Bolts
We want to make contributing to this project as easy and transparent as
possible.

## Pull Requests
We actively welcome your pull requests.

1. Fork the repo and create your branch from `master`.
2. If you've added code that should be tested, add tests
2. If you've added code that should be tested, add tests.
3. If you've changed APIs, update the documentation.
4. Ensure the test suite passes.
5. Make sure your code lints.
Expand Down
7 changes: 7 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -262,3 +262,10 @@ For common cases, such as dispatching on the main thread, we have provided defau
}];
```

# Installation

You can download the latest framework files from our [Releases page](https://github.com/BoltsFramework/Bolts-iOS/releases).

Bolts is also available through [CocoaPods](http://cocoapods.org). To install it simply add the following line to your Podfile:

pod "Bolts"