Skip to content
This repository was archived by the owner on Dec 8, 2022. It is now read-only.

Commit 7e8e1aa

Browse files
committed
first late commit, response correctly handled
0 parents  commit 7e8e1aa

Some content is hidden

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

61 files changed

+6825
-0
lines changed

.DS_Store

8 KB
Binary file not shown.

.bowerrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"directory": "bower_components"
3+
}

.editorconfig

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
8+
[*]
9+
10+
# Change these settings to your own preference
11+
indent_style = space
12+
indent_size = 2
13+
14+
# We recommend you to keep these unchanged
15+
end_of_line = lf
16+
charset = utf-8
17+
trim_trailing_whitespace = true
18+
insert_final_newline = true
19+
20+
[*.md]
21+
trim_trailing_whitespace = false

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
node_modules
2+
dist
3+
.tmp
4+
bower_components

.yo-rc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"generator-mocha": {}
3+
}

Gemfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# encoding: utf-8
2+
3+
source 'https://rubygems.org'
4+
5+
group :development do
6+
gem 'rake'
7+
gem 'guard'
8+
gem 'guard-coffeescript', github: 'guard/guard-coffeescript'
9+
gem 'guard-sass'
10+
gem 'capistrano'
11+
gem 'capistrano-scm-copy', github: "tryphon/capistrano-scm-copy"
12+
gem 'libnotify'
13+
gem 'guard-jasmine'
14+
end

Gemfile.lock

Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
GIT
2+
remote: git://github.com/guard/guard-coffeescript.git
3+
revision: eb47da1e236c244cf8217ee577170bb8c6ae12df
4+
specs:
5+
guard-coffeescript (2.0.1)
6+
coffee-script (>= 2.2.0)
7+
guard (>= 2.1.0)
8+
guard-compat (~> 1.1)
9+
10+
GIT
11+
remote: git://github.com/tryphon/capistrano-scm-copy.git
12+
revision: eb6a937d3a5f667fa2a78a743ba2f39a6c166111
13+
specs:
14+
capistrano-scm-copy (0.4.0)
15+
capistrano (~> 3.0)
16+
17+
GEM
18+
remote: https://rubygems.org/
19+
specs:
20+
capistrano (3.4.0)
21+
i18n
22+
rake (>= 10.0.0)
23+
sshkit (~> 1.3)
24+
childprocess (0.5.6)
25+
ffi (~> 1.0, >= 1.0.11)
26+
coderay (1.1.0)
27+
coffee-script (2.4.1)
28+
coffee-script-source
29+
execjs
30+
coffee-script-source (1.9.1.1)
31+
colorize (0.7.7)
32+
execjs (2.5.2)
33+
ffi (1.9.10)
34+
formatador (0.2.5)
35+
guard (2.12.9)
36+
formatador (>= 0.2.4)
37+
listen (>= 2.7, <= 4.0)
38+
lumberjack (~> 1.0)
39+
nenv (~> 0.1)
40+
notiffany (~> 0.0)
41+
pry (>= 0.9.12)
42+
shellany (~> 0.0)
43+
thor (>= 0.18.1)
44+
guard-compat (1.2.1)
45+
guard-jasmine (2.0.6)
46+
childprocess (~> 0.5)
47+
guard (~> 2.8)
48+
guard-compat (~> 1.2)
49+
jasmine (~> 2.2)
50+
multi_json (~> 1.1)
51+
thor (~> 0.19)
52+
tilt
53+
guard-sass (1.6.0)
54+
guard (>= 2.8.0)
55+
sass (>= 3.1)
56+
i18n (0.7.0)
57+
jasmine (2.3.0)
58+
jasmine-core (~> 2.3)
59+
phantomjs
60+
rack (>= 1.2.1)
61+
rake
62+
jasmine-core (2.3.4)
63+
libnotify (0.9.1)
64+
ffi (>= 1.0.11)
65+
listen (3.0.3)
66+
rb-fsevent (>= 0.9.3)
67+
rb-inotify (>= 0.9)
68+
lumberjack (1.0.9)
69+
method_source (0.8.2)
70+
multi_json (1.11.2)
71+
nenv (0.2.0)
72+
net-scp (1.2.1)
73+
net-ssh (>= 2.6.5)
74+
net-ssh (2.9.2)
75+
notiffany (0.0.6)
76+
nenv (~> 0.1)
77+
shellany (~> 0.0)
78+
phantomjs (1.9.8.0)
79+
pry (0.10.1)
80+
coderay (~> 1.1.0)
81+
method_source (~> 0.8.1)
82+
slop (~> 3.4)
83+
rack (1.6.4)
84+
rake (10.4.2)
85+
rb-fsevent (0.9.5)
86+
rb-inotify (0.9.5)
87+
ffi (>= 0.5.0)
88+
sass (3.4.16)
89+
shellany (0.0.1)
90+
slop (3.6.0)
91+
sshkit (1.7.1)
92+
colorize (>= 0.7.0)
93+
net-scp (>= 1.1.2)
94+
net-ssh (>= 2.8.0)
95+
thor (0.19.1)
96+
tilt (2.0.1)
97+
98+
PLATFORMS
99+
ruby
100+
101+
DEPENDENCIES
102+
capistrano
103+
capistrano-scm-copy!
104+
guard
105+
guard-coffeescript!
106+
guard-jasmine
107+
guard-sass
108+
libnotify
109+
rake
110+
111+
BUNDLED WITH
112+
1.10.5

0 commit comments

Comments
 (0)