Skip to content

Commit f2232bd

Browse files
committed
3.0.0
1 parent c2f9710 commit f2232bd

File tree

162 files changed

+5344
-24078
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

162 files changed

+5344
-24078
lines changed

.cocoapods.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
highlight_color: "#ff4700"
2+
highlight_dark_color: "#cc3900"

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*.pbxproj merge=union
2+
*.strings text diff

.gitignore

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Xcode
2+
.DS_Store
3+
*/build/*
4+
*.pbxuser
5+
!default.pbxuser
6+
*.mode1v3
7+
!default.mode1v3
8+
*.mode2v3
9+
!default.mode2v3
10+
*.perspectivev3
11+
!default.perspectivev3
12+
xcuserdata
13+
profile
14+
*.moved-aside
15+
DerivedData
16+
.idea/
17+
*.hmap
18+
PebbleKit.xcworkspace
19+
20+
# CocoaPods
21+
Pods
22+
Podfile.lock

.travis.yml

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
language: objective-c
2+
3+
branches:
4+
only:
5+
master
6+
7+
env: export LANG=en_US.UTF-8
8+
9+
script: bin/test

Gemfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'cocoapods'
4+
gem 'xcpretty'

PebbleKit-iOS.docset/Contents/Info.plist

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929
<key>DocSetPublisherName</key>
3030
<string>Pebble Technology Corp.</string>
3131
<key>NSHumanReadableCopyright</key>
32-
<string>Copyright © 2014 Pebble Technology Corp.. All rights reserved.</string>
32+
<string>Copyright © 2015 Pebble Technology Corp.. All rights reserved.</string>
3333
</dict>
3434
</plist>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
6+
<title></title>
7+
8+
<link rel="stylesheet" href="../css/style.css">
9+
<meta name="viewport" content="initial-scale=1, maximum-scale=1.4">
10+
11+
</head>
12+
<body class="appledoc">
13+
<header>
14+
<div class="container" class="hide-in-xcode">
15+
16+
<h1 id="library-title">
17+
<a href="../index.html">PebbleKit iOS </a>
18+
</h1>
19+
20+
<p id="developer-home">
21+
<a href="../index.html">Pebble Technology Corp.</a>
22+
</p>
23+
24+
</div>
25+
</header>
26+
27+
<aside>
28+
<div class="container">
29+
<nav>
30+
<ul id="header-buttons" role="toolbar">
31+
<li><a href="../index.html">Index</a></li>
32+
<li><a href="../hierarchy.html">Hierarchy</a></li>
33+
34+
<li id="on-this-page" role="navigation">
35+
<label>
36+
On This Page
37+
38+
<div class="chevron">
39+
<div class="chevy chevron-left"></div>
40+
<div class="chevy chevron-right"></div>
41+
</div>
42+
43+
<select id="jump-to">
44+
<option value="top">Jump To&#133;</option>
45+
46+
47+
48+
49+
50+
</select>
51+
</label>
52+
</li>
53+
</ul>
54+
</nav>
55+
</div>
56+
</aside>
57+
58+
<article>
59+
<div id="overview_contents" class="container">
60+
<div id="content">
61+
<main role="main">
62+
<h1 class="title"></h1>
63+
64+
65+
66+
67+
68+
69+
70+
71+
</main>
72+
73+
<footer>
74+
<div class="footer-copyright">
75+
76+
<p class="copyright">Copyright &copy; 2015 Pebble Technology Corp. All rights reserved. Updated: 2015-10-08</p>
77+
78+
79+
</div>
80+
</footer>
81+
</div>
82+
</div>
83+
</article>
84+
85+
<script src="../js/script.js"></script>
86+
</body>
87+
</html>

0 commit comments

Comments
 (0)