Skip to content

Commit 211f9ce

Browse files
committed
Initial port
0 parents  commit 211f9ce

Some content is hidden

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

45 files changed

+2880
-0
lines changed

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
htmldoc
2+
pkg
3+
webgen-tmp
4+
build
5+
.repl_history
6+
debugger_cmds
7+
Gemfile.lock
8+
vendor

.travis.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
os: osx
2+
osx_image: xcode10.2
3+
language: objective-c
4+
env:
5+
- TMP_DIR=./tmp # For motion repo, so it doesn't attempt to use /tmp, to which it has no access
6+
7+
before_install:
8+
- (ruby --version)
9+
- wget http://travisci.rubymotion.com/ -O RubyMotion-TravisCI.pkg
10+
- sudo installer -pkg RubyMotion-TravisCI.pkg -target /
11+
- cp -r /usr/lib/swift/*.dylib /Applications/Xcode.app/Contents/Frameworks/
12+
- touch /Applications/Xcode.app/Contents/Frameworks/.swift-5-staged
13+
- sudo mkdir -p ~/Library/RubyMotion/build
14+
- sudo chown -R travis ~/Library/RubyMotion
15+
- eval "sudo motion activate $RUBYMOTION_LICENSE"
16+
- sudo motion update && motion repo
17+
18+
gemfile:
19+
- Gemfile
20+
21+
script: bundle exec rake spec

Gemfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
source 'https://rubygems.org'
2+
3+
gem 'rake'
4+
5+
gemspec

LICENSE

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
Copyright (c) 2012 GitHub Inc. and Jerry Cheung
2+
3+
MIT License
4+
5+
Permission is hereby granted, free of charge, to any person obtaining
6+
a copy of this software and associated documentation files (the
7+
"Software"), to deal in the Software without restriction, including
8+
without limitation the rights to use, copy, modify, merge, publish,
9+
distribute, sublicense, and/or sell copies of the Software, and to
10+
permit persons to whom the Software is furnished to do so, subject to
11+
the following conditions:
12+
13+
The above copyright notice and this permission notice shall be
14+
included in all copies or substantial portions of the Software.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)