Skip to content

Commit 35f2461

Browse files
committed
Import clean version of my code for github
0 parents  commit 35f2461

File tree

258 files changed

+30785
-0
lines changed

Some content is hidden

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

258 files changed

+30785
-0
lines changed

Diff for: .gitignore

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
/.DS_Store
2+
/public/gen/*
3+
/*.swp
4+
/node_modules/*/
5+
#!/node_modules/derby/
6+
#!/node_modules/racer/
7+
#!/node_modules/racer-db-mongo/
8+
#!/node_modules/derby-auth/
9+
10+
# Ignore Idea workspace.xml
11+
/.idea/*.iws
12+
/.idea/workspace.xml
13+
/.idea/tasks.xml
14+
15+
# Cache
16+
/.sass-cache/*
17+

Diff for: .idea/.name

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: .idea/codeStyleSettings.xml

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: .idea/dictionaries/razer.xml

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: .idea/encodings.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: .idea/inspectionProfiles/Project_Default.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: .idea/inspectionProfiles/profiles_settings.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: .idea/misc.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: .idea/modules.xml

+9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: .idea/scopes/scope_settings.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: .idea/tff.iml

+15
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: .idea/vcs.xml

+7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: Gemfile

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
source "http://rubygems.org"
2+
3+
group :development do
4+
gem 'compass', '>= 0.13.alpha.0' # Depends on Sass, will be installed automatically.
5+
gem 'compass-validator' # So you can `compass validate`.
6+
gem 'oily_png' # Faster Compass sprite generation.
7+
gem 'css_parser' # Helps `compass stats` output statistics.
8+
gem 'guard-compass' # Compile on sass/scss change.
9+
gem 'guard-livereload' # Browser reload.
10+
gem 'yajl-ruby' # Faster JSON with LiveReload in the browser.
11+
gem 'guard-haml'
12+
gem 'guard-coffeescript'
13+
gem 'zurb-foundation'
14+
gem 'compass-normalize'
15+
gem 'animate-sass' # Sass animations. http://daneden.me/animate/
16+
gem 'animate', '>= 0.2.beta.0' # Compass animations
17+
gem 'sass-globbing'
18+
gem 'sassy-buttons'
19+
end

Diff for: Guardfile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
#guard start -p
2+
3+
notification :off
4+
5+
if File.exists?("./config.rb")
6+
guard 'compass' do
7+
watch %r{sass/.+\.s[ac]ss$}
8+
end
9+
end
10+
11+
guard 'haml', input: 'haml', output: 'views' do
12+
watch %r{haml/.+\.(html|haml)}
13+
end
14+
15+
guard 'livereload' do
16+
watch %r{public/css/.+\.css$}
17+
end

0 commit comments

Comments
 (0)