File: commands.rb

package info (click to toggle)
ruby-compass 1.0.1~dfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 8,152 kB
  • ctags: 1,795
  • sloc: ruby: 12,901; makefile: 127; perl: 43; xml: 14; sh: 4
file content (14 lines) | stat: -rw-r--r-- 429 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
module Compass::Commands
end

require 'compass/commands/registry'

%w(base project_base default help list_frameworks 
   update_project watch_project create_project clean_project extension_command
   imports installer_command print_version project_stats stamp_pattern
   sprite validate_project write_configuration interactive unpack_extension
).each do |lib|
  require "compass/commands/#{lib}"
end

Compass.discover_extensions!