├── .gitignore ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin ├── console └── setup ├── breakfast.gemspec ├── lib ├── breakfast.rb ├── breakfast │ ├── brunch_watcher.rb │ ├── compilation_listener.rb │ ├── helper.rb │ ├── live_reload_channel.rb │ ├── local_environment.rb │ ├── manifest.rb │ ├── railtie.rb │ ├── status_channel.rb │ └── version.rb ├── generators │ └── breakfast │ │ ├── install_generator.rb │ │ └── templates │ │ ├── app.js │ │ ├── app.scss │ │ ├── brunch-config.js │ │ └── package.json └── tasks │ └── breakfast.rake ├── node_package ├── .eslintrc.json ├── .npmignore ├── package.json └── src │ ├── breakfast-rails.js │ ├── live-reload.js │ ├── settings.js │ └── status-bar.js └── spec ├── acceptance └── install_spec.rb ├── breakfast ├── compilation_listener_spec.rb └── manifest_spec.rb ├── breakfast_spec.rb └── spec_helper.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --format documentation 2 | --color 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/console: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/bin/console -------------------------------------------------------------------------------- /bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/bin/setup -------------------------------------------------------------------------------- /breakfast.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/breakfast.gemspec -------------------------------------------------------------------------------- /lib/breakfast.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/lib/breakfast.rb -------------------------------------------------------------------------------- /lib/breakfast/brunch_watcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/lib/breakfast/brunch_watcher.rb -------------------------------------------------------------------------------- /lib/breakfast/compilation_listener.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/lib/breakfast/compilation_listener.rb -------------------------------------------------------------------------------- /lib/breakfast/helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/lib/breakfast/helper.rb -------------------------------------------------------------------------------- /lib/breakfast/live_reload_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/lib/breakfast/live_reload_channel.rb -------------------------------------------------------------------------------- /lib/breakfast/local_environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/lib/breakfast/local_environment.rb -------------------------------------------------------------------------------- /lib/breakfast/manifest.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/lib/breakfast/manifest.rb -------------------------------------------------------------------------------- /lib/breakfast/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/lib/breakfast/railtie.rb -------------------------------------------------------------------------------- /lib/breakfast/status_channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/lib/breakfast/status_channel.rb -------------------------------------------------------------------------------- /lib/breakfast/version.rb: -------------------------------------------------------------------------------- 1 | module Breakfast 2 | VERSION = "0.6.6" 3 | end 4 | -------------------------------------------------------------------------------- /lib/generators/breakfast/install_generator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/lib/generators/breakfast/install_generator.rb -------------------------------------------------------------------------------- /lib/generators/breakfast/templates/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/lib/generators/breakfast/templates/app.js -------------------------------------------------------------------------------- /lib/generators/breakfast/templates/app.scss: -------------------------------------------------------------------------------- 1 | // Your applications SCSS file 2 | body { 3 | } 4 | -------------------------------------------------------------------------------- /lib/generators/breakfast/templates/brunch-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/lib/generators/breakfast/templates/brunch-config.js -------------------------------------------------------------------------------- /lib/generators/breakfast/templates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/lib/generators/breakfast/templates/package.json -------------------------------------------------------------------------------- /lib/tasks/breakfast.rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/lib/tasks/breakfast.rake -------------------------------------------------------------------------------- /node_package/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/node_package/.eslintrc.json -------------------------------------------------------------------------------- /node_package/.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | -------------------------------------------------------------------------------- /node_package/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/node_package/package.json -------------------------------------------------------------------------------- /node_package/src/breakfast-rails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/node_package/src/breakfast-rails.js -------------------------------------------------------------------------------- /node_package/src/live-reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/node_package/src/live-reload.js -------------------------------------------------------------------------------- /node_package/src/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/node_package/src/settings.js -------------------------------------------------------------------------------- /node_package/src/status-bar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/node_package/src/status-bar.js -------------------------------------------------------------------------------- /spec/acceptance/install_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/spec/acceptance/install_spec.rb -------------------------------------------------------------------------------- /spec/breakfast/compilation_listener_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/spec/breakfast/compilation_listener_spec.rb -------------------------------------------------------------------------------- /spec/breakfast/manifest_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/spec/breakfast/manifest_spec.rb -------------------------------------------------------------------------------- /spec/breakfast_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/spec/breakfast_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/devlocker/breakfast/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------