├── .gitignore ├── LICENSE ├── README.md ├── Rakefile ├── lib ├── sassy_noise.rb └── sassy_noise │ └── sass_extensions.rb ├── sassy_noise.gemspec ├── spec ├── lib │ └── sassy_noise_spec.rb └── spec_helper.rb ├── stylesheets ├── _sassy-noise.scss └── sassy-noise │ └── _sassy-noise.scss └── templates └── project └── manifest.rb /.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | .sass-cache/* 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antsa/sassy_noise/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antsa/sassy_noise/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antsa/sassy_noise/HEAD/Rakefile -------------------------------------------------------------------------------- /lib/sassy_noise.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antsa/sassy_noise/HEAD/lib/sassy_noise.rb -------------------------------------------------------------------------------- /lib/sassy_noise/sass_extensions.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antsa/sassy_noise/HEAD/lib/sassy_noise/sass_extensions.rb -------------------------------------------------------------------------------- /sassy_noise.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antsa/sassy_noise/HEAD/sassy_noise.gemspec -------------------------------------------------------------------------------- /spec/lib/sassy_noise_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antsa/sassy_noise/HEAD/spec/lib/sassy_noise_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antsa/sassy_noise/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /stylesheets/_sassy-noise.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antsa/sassy_noise/HEAD/stylesheets/_sassy-noise.scss -------------------------------------------------------------------------------- /stylesheets/sassy-noise/_sassy-noise.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antsa/sassy_noise/HEAD/stylesheets/sassy-noise/_sassy-noise.scss -------------------------------------------------------------------------------- /templates/project/manifest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antsa/sassy_noise/HEAD/templates/project/manifest.rb --------------------------------------------------------------------------------