Skip to content
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.

Commit

Permalink
Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Renskers committed May 25, 2012
1 parent d71615f commit 866401e
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 6 deletions.
1 change: 1 addition & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Kevin Renskers - https://github.com/kevinrenskers https://twitter.com/#!/mixedcase
19 changes: 19 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Copyright (c) 2012 Kevin Renskers (http://mixedcase.nl/)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
48 changes: 45 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,46 @@
raven-objc
==========
# raven-objc

Sentry client for Objective-c
Objective-c client for [Sentry](https://www.getsentry.com/welcome/).


## Installation
1. Get the code: `git clone git://github.com/kevinrenskers/raven-objc`
2. Drag the `Raven` subfolder to your project. Check both "copy items into destination group's folder" and your target.

Alternatively you can add this code as a Git submodule:

1. `cd [your project root]`
2. `git submodule add git://github.com/kevinrenskers/raven-objc`
3. Drag the `Raven` subfolder to your project. Uncheck the "copy items into destination group's folder" box, do check your target.


## How to get started
TODO


## Requirements

### ARC Support
RemoteConfig requires ARC support and should run on iOS 4.0 and higher.


## Issues and questions
Have a bug? Please create an issue on GitHub!

https://github.com/kevinrenskers/raven-objc/issues


## Contributing
raven-objc is an open source project and your contribution is very much appreciated.

1. Check for [open issues](https://github.com/kevinrenskers/raven-objc/issues) or [open a fresh issue](https://github.com/kevinrenskers/raven-objc/issues/new) to start a discussion around a feature idea or a bug.
2. Fork the [repository on Github](https://github.com/kevinrenskers/raven-objc) and make your changes on the **develop** branch (or branch off of it).
3. Make sure to add yourself to AUTHORS and send a pull request.


## Credits
TODO


## License
raven-objc is available under the MIT license. See the LICENSE file for more info.
12 changes: 9 additions & 3 deletions Raven.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,10 @@
/* End PBXContainerItemProxy section */

/* Begin PBXFileReference section */
0A46FE99156FA72300D97F26 /* Raven.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Raven.app; sourceTree = BUILT_PRODUCTS_DIR; };
0A33DE37156FA9D500AB3299 /* README.md */ = {isa = PBXFileReference; lastKnownFileType = text; path = README.md; sourceTree = "<group>"; };
0A33DE39156FAA0B00AB3299 /* AUTHORS */ = {isa = PBXFileReference; lastKnownFileType = text; path = AUTHORS; sourceTree = "<group>"; };
0A33DE3A156FAA0B00AB3299 /* LICENSE */ = {isa = PBXFileReference; lastKnownFileType = text; path = LICENSE; sourceTree = "<group>"; };
0A46FE99156FA72300D97F26 /* RavenExample.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = RavenExample.app; sourceTree = BUILT_PRODUCTS_DIR; };
0A46FE9D156FA72300D97F26 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
0A46FE9F156FA72300D97F26 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
0A46FEA1156FA72300D97F26 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
Expand Down Expand Up @@ -89,13 +92,16 @@
0A46FEC1156FA72300D97F26 /* RavenTests */,
0A46FE9C156FA72300D97F26 /* Frameworks */,
0A46FE9A156FA72300D97F26 /* Products */,
0A33DE39156FAA0B00AB3299 /* AUTHORS */,
0A33DE3A156FAA0B00AB3299 /* LICENSE */,
0A33DE37156FA9D500AB3299 /* README.md */,
);
sourceTree = "<group>";
};
0A46FE9A156FA72300D97F26 /* Products */ = {
isa = PBXGroup;
children = (
0A46FE99156FA72300D97F26 /* Raven.app */,
0A46FE99156FA72300D97F26 /* RavenExample.app */,
0A46FEBA156FA72300D97F26 /* RavenTests.octest */,
);
name = Products;
Expand Down Expand Up @@ -181,7 +187,7 @@
);
name = RavenExample;
productName = Raven;
productReference = 0A46FE99156FA72300D97F26 /* Raven.app */;
productReference = 0A46FE99156FA72300D97F26 /* RavenExample.app */;
productType = "com.apple.product-type.application";
};
0A46FEB9156FA72300D97F26 /* RavenTests */ = {
Expand Down

0 comments on commit 866401e

Please sign in to comment.