Skip to content

Commit 68bc9b3

Browse files
committed
initial commit
0 parents  commit 68bc9b3

File tree

3 files changed

+148
-0
lines changed

3 files changed

+148
-0
lines changed

.gitignore

Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
### JetBrains template
2+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
3+
4+
*.iml
5+
6+
## Directory-based project format:
7+
.idea/
8+
# if you remove the above rule, at least ignore the following:
9+
10+
# User-specific stuff:
11+
# .idea/workspace.xml
12+
# .idea/tasks.xml
13+
# .idea/dictionaries
14+
15+
# Sensitive or high-churn files:
16+
# .idea/dataSources.ids
17+
# .idea/dataSources.xml
18+
# .idea/sqlDataSources.xml
19+
# .idea/dynamic.xml
20+
# .idea/uiDesigner.xml
21+
22+
# Gradle:
23+
# .idea/gradle.xml
24+
# .idea/libraries
25+
26+
# Mongo Explorer plugin:
27+
# .idea/mongoSettings.xml
28+
29+
## File-based project format:
30+
*.ipr
31+
*.iws
32+
33+
## Plugin-specific files:
34+
35+
# IntelliJ
36+
/out/
37+
38+
# mpeltonen/sbt-idea plugin
39+
.idea_modules/
40+
41+
# JIRA plugin
42+
atlassian-ide-plugin.xml
43+
44+
# Crashlytics plugin (for Android Studio and IntelliJ)
45+
com_crashlytics_export_strings.xml
46+
crashlytics.properties
47+
crashlytics-build.properties
48+
### Linux template
49+
*~
50+
51+
# KDE directory preferences
52+
.directory
53+
54+
# Linux trash folder which might appear on any partition or disk
55+
.Trash-*
56+
### Vim template
57+
[._]*.s[a-w][a-z]
58+
[._]s[a-w][a-z]
59+
*.un~
60+
Session.vim
61+
.netrwhist
62+
*~
63+
### Windows template
64+
# Windows image file caches
65+
Thumbs.db
66+
ehthumbs.db
67+
68+
# Folder config file
69+
Desktop.ini
70+
71+
# Recycle Bin used on file shares
72+
$RECYCLE.BIN/
73+
74+
# Windows Installer files
75+
*.cab
76+
*.msi
77+
*.msm
78+
*.msp
79+
80+
# Windows shortcuts
81+
*.lnk
82+
### OSX template
83+
.DS_Store
84+
.AppleDouble
85+
.LSOverride
86+
87+
# Icon must end with two \r
88+
Icon
89+
90+
# Thumbnails
91+
._*
92+
93+
# Files that might appear in the root of a volume
94+
.DocumentRevisions-V100
95+
.fseventsd
96+
.Spotlight-V100
97+
.TemporaryItems
98+
.Trashes
99+
.VolumeIcon.icns
100+
101+
# Directories potentially created on remote AFP share
102+
.AppleDB
103+
.AppleDesktop
104+
Network Trash Folder
105+
Temporary Items
106+
.apdisk
107+
### SublimeText template
108+
# cache files for sublime text
109+
*.tmlanguage.cache
110+
*.tmPreferences.cache
111+
*.stTheme.cache
112+
113+
# workspace files are user-specific
114+
*.sublime-workspace
115+
116+
# project files should be checked into the repository, unless a significant
117+
# proportion of contributors will probably not be using SublimeText
118+
# *.sublime-project
119+
120+
# sftp configuration file
121+
sftp-config.json
122+
### NetBeans template
123+
nbproject/private/
124+
build/
125+
nbbuild/
126+
dist/
127+
nbdist/
128+
nbactions.xml
129+
nb-configuration.xml
130+
.nb-gradle/
131+
132+
### Composer template
133+
/vendor/

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
Sclable Array Functions
2+
=======================
3+
4+
An introduction.

composer.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"name": "sclable/array-functions",
3+
"license": "MIT",
4+
"authors": [
5+
{
6+
"name": "Michael Rutz",
7+
"email": "[email protected]"
8+
}
9+
],
10+
"require": {}
11+
}

0 commit comments

Comments
 (0)