├── .gitignore ├── .ruby-gemset ├── .ruby-version ├── Gemfile ├── Gemfile.lock ├── Gruntfile.coffee ├── README.md ├── coffee └── app.coffee ├── config.rb ├── data └── index.yml ├── features ├── placeholder.feature └── step_definitions │ └── placeholder_steps.coffee ├── opt-imgs ├── .gitignore └── test-image.jpg ├── package.json ├── partials ├── _footer.hbs ├── _header.hbs ├── _home-page.hbs └── index.hbs ├── public ├── .htaccess ├── apple-touch-icon-114x114-precomposed.png ├── apple-touch-icon-57x57-precomposed.png ├── apple-touch-icon-72x72-precomposed.png ├── apple-touch-icon-precomposed.png ├── crossdomain.xml ├── favicon.ico ├── humans.txt ├── js │ ├── jquery-1.9.1.min.js │ └── modernizr.js ├── robots.txt └── sbx_144x144.png ├── scss ├── _colors.scss ├── _general-extends.scss ├── _general-mixins.scss ├── _general-variables.scss ├── _normalize.scss ├── mq-base.scss └── no-mq-base.scss └── specs ├── SomeHelper.coffee ├── SomeSpec.coffee └── lib └── jasmine-fixture.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/.gitignore -------------------------------------------------------------------------------- /.ruby-gemset: -------------------------------------------------------------------------------- 1 | Project-Name 2 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.0.0-p247 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'http://rubygems.org' 2 | 3 | gem "compass" 4 | -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /Gruntfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/Gruntfile.coffee -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/README.md -------------------------------------------------------------------------------- /coffee/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/coffee/app.coffee -------------------------------------------------------------------------------- /config.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/config.rb -------------------------------------------------------------------------------- /data/index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/data/index.yml -------------------------------------------------------------------------------- /features/placeholder.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/features/placeholder.feature -------------------------------------------------------------------------------- /features/step_definitions/placeholder_steps.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/features/step_definitions/placeholder_steps.coffee -------------------------------------------------------------------------------- /opt-imgs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /opt-imgs/test-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/opt-imgs/test-image.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/package.json -------------------------------------------------------------------------------- /partials/_footer.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/partials/_footer.hbs -------------------------------------------------------------------------------- /partials/_header.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/partials/_header.hbs -------------------------------------------------------------------------------- /partials/_home-page.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/partials/_home-page.hbs -------------------------------------------------------------------------------- /partials/index.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/partials/index.hbs -------------------------------------------------------------------------------- /public/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/public/.htaccess -------------------------------------------------------------------------------- /public/apple-touch-icon-114x114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/public/apple-touch-icon-114x114-precomposed.png -------------------------------------------------------------------------------- /public/apple-touch-icon-57x57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/public/apple-touch-icon-57x57-precomposed.png -------------------------------------------------------------------------------- /public/apple-touch-icon-72x72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/public/apple-touch-icon-72x72-precomposed.png -------------------------------------------------------------------------------- /public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/public/apple-touch-icon-precomposed.png -------------------------------------------------------------------------------- /public/crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/public/crossdomain.xml -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/humans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/public/humans.txt -------------------------------------------------------------------------------- /public/js/jquery-1.9.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/public/js/jquery-1.9.1.min.js -------------------------------------------------------------------------------- /public/js/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/public/js/modernizr.js -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/sbx_144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/public/sbx_144x144.png -------------------------------------------------------------------------------- /scss/_colors.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scss/_general-extends.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/scss/_general-extends.scss -------------------------------------------------------------------------------- /scss/_general-mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/scss/_general-mixins.scss -------------------------------------------------------------------------------- /scss/_general-variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/scss/_general-variables.scss -------------------------------------------------------------------------------- /scss/_normalize.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scss/mq-base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/scss/mq-base.scss -------------------------------------------------------------------------------- /scss/no-mq-base.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/scss/no-mq-base.scss -------------------------------------------------------------------------------- /specs/SomeHelper.coffee: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /specs/SomeSpec.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/specs/SomeSpec.coffee -------------------------------------------------------------------------------- /specs/lib/jasmine-fixture.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sparkbox/project-init/HEAD/specs/lib/jasmine-fixture.js --------------------------------------------------------------------------------