forked from danielmahon/gift
-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from esalter/master
add support for git clean
- Loading branch information
Showing
20 changed files
with
179 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Assignment: | ||
number = 42 | ||
opposite = true | ||
|
||
# Conditions: | ||
number = -42 if opposite | ||
|
||
# Functions: | ||
square = (x) -> x * x | ||
|
||
# Arrays: | ||
list = [1, 2, 3, 4, 5] | ||
|
||
# Objects: | ||
math = | ||
root: Math.sqrt | ||
square: square | ||
cube: (x) -> x * square x | ||
|
||
# Splats: | ||
race = (winner, runners...) -> | ||
print winner, runners | ||
|
||
# Existence: | ||
alert "I knew it!" if elvis? | ||
|
||
# Array comprehensions: | ||
cubes = (math.cube num for num in list) |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
grade = (student) -> | ||
if student.excellentWork | ||
"A+" | ||
else if student.okayStuff | ||
if student.triedHard then "B" else "B-" | ||
else | ||
"C" | ||
|
||
eldest = if 24 > 21 then "Liz" else "Ike" |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
var cubes, list, math, num, number, opposite, race, square, | ||
__slice = [].slice; | ||
|
||
number = 42; | ||
|
||
opposite = true; | ||
|
||
if (opposite) { | ||
number = -42; | ||
} | ||
|
||
square = function(x) { | ||
return x * x; | ||
}; | ||
|
||
list = [1, 2, 3, 4, 5]; | ||
|
||
math = { | ||
root: Math.sqrt, | ||
square: square, | ||
cube: function(x) { | ||
return x * square(x); | ||
} | ||
}; | ||
|
||
race = function() { | ||
var runners, winner; | ||
winner = arguments[0], runners = 2 <= arguments.length ? __slice.call(arguments, 1) : []; | ||
return print(winner, runners); | ||
}; | ||
|
||
if (typeof elvis !== "undefined" && elvis !== null) { | ||
alert("I knew it!"); | ||
} | ||
|
||
cubes = (function() { | ||
var _i, _len, _results; | ||
_results = []; | ||
for (_i = 0, _len = list.length; _i < _len; _i++) { | ||
num = list[_i]; | ||
_results.push(math.cube(num)); | ||
} | ||
return _results; | ||
})(); |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ref: refs/heads/master |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[core] | ||
repositoryformatversion = 0 | ||
filemode = true | ||
bare = false | ||
logallrefupdates = true |
Binary file not shown.
Binary file added
BIN
+194 Bytes
test/fixtures/clean/git.git/objects/14/e5a1a3a459e05d486b98df2802ee4b30c33995
Binary file not shown.
Binary file added
BIN
+295 Bytes
test/fixtures/clean/git.git/objects/41/2d321c36a34331125a77493b5dd41f5313a568
Binary file not shown.
Binary file added
BIN
+28 Bytes
test/fixtures/clean/git.git/objects/55/80d8a9feeadf1c36a73a2778c62206314aebac
Binary file not shown.
3 changes: 3 additions & 0 deletions
3
test/fixtures/clean/git.git/objects/56/02c1d7079f5ff3f49f341722c6d5baf93bb26e
This file contains 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
Binary file added
BIN
+21 Bytes
test/fixtures/clean/git.git/objects/c2/dfadf4d76bea7fbe28086d95aa0c803237539e
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
P pack-70f08ce8f755306c59b6d804345abf334b5586f8.pack | ||
|
Binary file added
BIN
+1.38 KB
test/fixtures/clean/git.git/objects/pack/pack-70f08ce8f755306c59b6d804345abf334b5586f8.idx
Binary file not shown.
Binary file added
BIN
+1.46 KB
test/fixtures/clean/git.git/objects/pack/pack-70f08ce8f755306c59b6d804345abf334b5586f8.pack
Binary file not shown.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
40216d142a8bf81e327f510990f2357dfd404486 |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
bdc76865cfc1d089ee4e238035a5860357c36506 |
Empty file.
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
abc |
This file contains 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