This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ; ModuleID = 'main_module' | |
| %String = type { i32, i32, i32, i8 } | |
| %"Array(Int32)" = type { i32, i32, i32, i32* } | |
| %Fiber = type { i32, i8*, %"(( -> Nil) | ( -> Void))", i8*, i8*, i8*, %Fiber*, %Fiber* } | |
| %"(( -> Nil) | ( -> Void))" = type { i32, [2 x i64] } | |
| %"Array(Pointer(Void))" = type { i32, i32, i32, i8** } | |
| %"->" = type { i8*, i8* } | |
| %"Array(Fiber)" = type { i32, i32, i32, %Fiber** } | |
| %"Event::Base" = type { i8* } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -Xss2m | |
| -Xms512m | |
| -Xmx4096m | |
| -XX:NewSize=128m | |
| -XX:MaxNewSize=128m | |
| -XX:MaxPermSize=350m | |
| -XX:ReservedCodeCacheSize=96m | |
| -XX:+UseCompressedOops |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local hotkey = require "mjolnir.hotkey" | |
| local window = require "mjolnir.window" | |
| local screen = require "mjolnir.screen" | |
| local modifier = {"cmd", "alt", "ctrl"} | |
| -- left half | |
| hotkey.bind(modifier, "left", function() | |
| local win = window.focusedwindow() | |
| local screenFrame = screen.mainscreen():frame() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| local hotkey = require "mjolnir.hotkey" | |
| local window = require "mjolnir.window" | |
| local screen = require "mjolnir.screen" | |
| local grid = require "mjolnir.bg.grid" | |
| grid.MARGINX = 0 | |
| grid.MARGINY = 0 | |
| grid.GRIDWIDTH = 8 | |
| grid.GRIDHEIGHT = 8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import <Specta/Specta.h> | |
| #import <Specta/Expecta.h> | |
| #import "MyClass.h" | |
| @interface MyClass (Spec) | |
| @end | |
| SpecBegin(MyClass) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #set( $ClassName = $NAME.substring(0, $NAME.indexOf("Spec")) ) | |
| #import <Specta/Specta.h> | |
| #import <Specta/Expecta.h> | |
| #import "${ClassName}.h" | |
| @interface ${ClassName} (Spec) | |
| @end | |
| SpecBegin(${ClassName}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ClassName = $NAME.substring(0, $NAME.indexOf("Spec")) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## OS X Finder | |
| .DS_Store | |
| ## Build generated | |
| build/ | |
| DerivedData | |
| ## Various settings | |
| *.pbxuser | |
| !default.pbxuser |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| carthage_installed() { | |
| command -v carthage >/dev/null | |
| } | |
| install_dependencies() { | |
| carthage update --platform iOS --use-submodules --no-use-binaries | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| language: objective-c | |
| before_install: | |
| - brew update | |
| - brew install carthage | |
| xcode_workspace: LIBRARY_NAME.xcworkspace | |
| xcode_scheme: SPECS_SCHEME | |
| osx_image: xcode7.2 | |
| xcode_sdk: iphonesimulator9.2 | |
| env: | |
| global: |
OlderNewer