Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jbeuckm committed Oct 26, 2013
0 parents commit c3506fa
Show file tree
Hide file tree
Showing 66 changed files with 5,541 additions and 0 deletions.
18 changes: 18 additions & 0 deletions #manifest#
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#
# this is your module manifest and used by Titanium
# during compilation, packaging, distribution, etc.
#
version: 0.1
apiversion: 2
description: Implements iBeacon interface as in https\://github.com/nicHiBeacons
author: Joe Beuckman
license: No
copyright: No


# these should not be edited
name: TiBeacons
moduleid: org.beuckman.tibeacons
guid: 8d388e36-9093-4df8-a4d3-1db3621f04c0
platform: iphone
minsdk: 3.1.3.GA
Binary file added .DS_Store
Binary file not shown.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
tmp
bin
build
*.zip
23 changes: 23 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>TiBeacons</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.appcelerator.titanium.core.builder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.aptana.ide.core.unifiedBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.appcelerator.titanium.mobile.module.nature</nature>
<nature>com.aptana.projects.webnature</nature>
</natures>
</projectDescription>
2 changes: 2 additions & 0 deletions .settings/com.aptana.editor.common.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
eclipse.preferences.version=1
selectUserAgents=com.appcelerator.titanium.mobile.module.nature\:iphone
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Place your change log text here. This file will be incorporated with your app at package time.
2 changes: 2 additions & 0 deletions Classes/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
OrgBeuckmanTibeacons.h
OrgBeuckmanTibeacons.m
17 changes: 17 additions & 0 deletions Classes/OrgBeuckmanTibeaconsModule.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/**
* Your Copyright Here
*
* Appcelerator Titanium is Copyright (c) 2009-2010 by Appcelerator, Inc.
* and licensed under the Apache Public License (version 2)
*/
#import "TiModule.h"

@import CoreLocation;
@import CoreBluetooth;

@interface OrgBeuckmanTibeaconsModule : TiModule <CLLocationManagerDelegate, CBPeripheralManagerDelegate>
{

}

@end
Loading

0 comments on commit c3506fa

Please sign in to comment.