├── .gitignore ├── Gemfile ├── LICENSE.md ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── bower.json ├── core ├── _shevy.scss └── shevy │ ├── _functions.scss │ ├── _mixins.scss │ └── _variables.scss ├── docs ├── assets │ ├── css │ │ └── main.css │ ├── images │ │ ├── favicon.png │ │ ├── logo_full_compact.svg │ │ ├── logo_full_inline.svg │ │ ├── logo_light_compact.svg │ │ └── logo_light_inline.svg │ └── js │ │ ├── main.js │ │ ├── main.min.js │ │ ├── search.js │ │ ├── sidebar.js │ │ └── vendor │ │ ├── fuse.min.js │ │ ├── jquery.min.js │ │ └── prism.min.js └── index.html ├── lib ├── shevy.rb └── shevy │ ├── generator.rb │ └── version.rb ├── package.json ├── sache.json └── shevy.gemspec /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .sass-cache/ 3 | demo/css/style.css.map 4 | *.gem -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/bin/setup -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/bower.json -------------------------------------------------------------------------------- /core/_shevy.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/core/_shevy.scss -------------------------------------------------------------------------------- /core/shevy/_functions.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/core/shevy/_functions.scss -------------------------------------------------------------------------------- /core/shevy/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/core/shevy/_mixins.scss -------------------------------------------------------------------------------- /core/shevy/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/core/shevy/_variables.scss -------------------------------------------------------------------------------- /docs/assets/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/docs/assets/css/main.css -------------------------------------------------------------------------------- /docs/assets/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/docs/assets/images/favicon.png -------------------------------------------------------------------------------- /docs/assets/images/logo_full_compact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/docs/assets/images/logo_full_compact.svg -------------------------------------------------------------------------------- /docs/assets/images/logo_full_inline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/docs/assets/images/logo_full_inline.svg -------------------------------------------------------------------------------- /docs/assets/images/logo_light_compact.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/docs/assets/images/logo_light_compact.svg -------------------------------------------------------------------------------- /docs/assets/images/logo_light_inline.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/docs/assets/images/logo_light_inline.svg -------------------------------------------------------------------------------- /docs/assets/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/docs/assets/js/main.js -------------------------------------------------------------------------------- /docs/assets/js/main.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/docs/assets/js/main.min.js -------------------------------------------------------------------------------- /docs/assets/js/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/docs/assets/js/search.js -------------------------------------------------------------------------------- /docs/assets/js/sidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/docs/assets/js/sidebar.js -------------------------------------------------------------------------------- /docs/assets/js/vendor/fuse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/docs/assets/js/vendor/fuse.min.js -------------------------------------------------------------------------------- /docs/assets/js/vendor/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/docs/assets/js/vendor/jquery.min.js -------------------------------------------------------------------------------- /docs/assets/js/vendor/prism.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/docs/assets/js/vendor/prism.min.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/docs/index.html -------------------------------------------------------------------------------- /lib/shevy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/lib/shevy.rb -------------------------------------------------------------------------------- /lib/shevy/generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/lib/shevy/generator.rb -------------------------------------------------------------------------------- /lib/shevy/version.rb: -------------------------------------------------------------------------------- 1 | module Shevy 2 | VERSION = "2.1.0" 3 | end 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/package.json -------------------------------------------------------------------------------- /sache.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/sache.json -------------------------------------------------------------------------------- /shevy.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyleshevlin/shevy/HEAD/shevy.gemspec --------------------------------------------------------------------------------