Class: Blueprint::Compressor
- Inherits:
-
Object
- Object
- Blueprint::Compressor
- Defined in:
- lib/template/css/blueprint/lib/blueprint/compressor.rb
Constant Summary collapse
- TEST_FILES =
["index.html", "parts/elements.html", "parts/forms.html", "parts/grid.html", "parts/sample.html"]
Instance Attribute Summary collapse
-
#custom_css ⇒ Object
Returns the value of attribute custom_css.
-
#custom_layout ⇒ Object
Returns the value of attribute custom_layout.
-
#custom_path ⇒ Object
readonly
Returns the value of attribute custom_path.
-
#destination_path ⇒ Object
Returns the value of attribute destination_path.
-
#loaded_from_settings ⇒ Object
readonly
Returns the value of attribute loaded_from_settings.
-
#namespace ⇒ Object
Returns the value of attribute namespace.
-
#plugins ⇒ Object
Returns the value of attribute plugins.
-
#project_name ⇒ Object
Returns the value of attribute project_name.
-
#script_name ⇒ Object
readonly
Returns the value of attribute script_name.
-
#semantic_classes ⇒ Object
Returns the value of attribute semantic_classes.
Instance Method Summary collapse
-
#generate! ⇒ Object
generates output CSS based on any args passed in overwrites any existing CSS, as well as grid.png and tests.
-
#initialize ⇒ Compressor
constructor
constructor.
-
#options ⇒ Object
:nodoc:#.
Constructor Details
#initialize ⇒ Compressor
constructor
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 |
# File 'lib/template/css/blueprint/lib/blueprint/compressor.rb', line 22 def initialize # set up defaults @script_name = File.basename($0) @loaded_from_settings = false @settings_file = Blueprint::SETTINGS_FILE self.namespace = "" self.destination_path = Blueprint::BLUEPRINT_ROOT_PATH self.custom_layout = CustomLayout.new self.project_name = nil self.custom_css = {} self.semantic_classes = {} self.plugins = [] self..parse!(ARGV) initialize_project_from_yaml(self.project_name) end |
Instance Attribute Details
#custom_css ⇒ Object
Returns the value of attribute custom_css.
11 12 13 |
# File 'lib/template/css/blueprint/lib/blueprint/compressor.rb', line 11 def custom_css @custom_css end |
#custom_layout ⇒ Object
Returns the value of attribute custom_layout.
11 12 13 |
# File 'lib/template/css/blueprint/lib/blueprint/compressor.rb', line 11 def custom_layout @custom_layout end |
#custom_path ⇒ Object (readonly)
Returns the value of attribute custom_path.
12 13 14 |
# File 'lib/template/css/blueprint/lib/blueprint/compressor.rb', line 12 def custom_path @custom_path end |
#destination_path ⇒ Object
Returns the value of attribute destination_path.
12 13 14 |
# File 'lib/template/css/blueprint/lib/blueprint/compressor.rb', line 12 def destination_path @destination_path end |
#loaded_from_settings ⇒ Object (readonly)
Returns the value of attribute loaded_from_settings.
12 13 14 |
# File 'lib/template/css/blueprint/lib/blueprint/compressor.rb', line 12 def loaded_from_settings @loaded_from_settings end |
#namespace ⇒ Object
Returns the value of attribute namespace.
11 12 13 |
# File 'lib/template/css/blueprint/lib/blueprint/compressor.rb', line 11 def namespace @namespace end |
#plugins ⇒ Object
Returns the value of attribute plugins.
11 12 13 |
# File 'lib/template/css/blueprint/lib/blueprint/compressor.rb', line 11 def plugins @plugins end |
#project_name ⇒ Object
Returns the value of attribute project_name.
11 12 13 |
# File 'lib/template/css/blueprint/lib/blueprint/compressor.rb', line 11 def project_name @project_name end |
#script_name ⇒ Object (readonly)
Returns the value of attribute script_name.
12 13 14 |
# File 'lib/template/css/blueprint/lib/blueprint/compressor.rb', line 12 def script_name @script_name end |
#semantic_classes ⇒ Object
Returns the value of attribute semantic_classes.
11 12 13 |
# File 'lib/template/css/blueprint/lib/blueprint/compressor.rb', line 11 def semantic_classes @semantic_classes end |
Instance Method Details
#generate! ⇒ Object
generates output CSS based on any args passed in overwrites any existing CSS, as well as grid.png and tests
41 42 43 44 45 46 |
# File 'lib/template/css/blueprint/lib/blueprint/compressor.rb', line 41 def generate! output_header # information to the user (in the console) describing custom settings generate_css_files # loops through Blueprint::CSS_FILES to generate output CSS generate_tests # updates HTML with custom namespaces in order to test the generated library. TODO: have tests kick out to custom location # informs the user that the CSS generation process is complete end |
#options ⇒ Object
:nodoc:#
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/template/css/blueprint/lib/blueprint/compressor.rb', line 48 def #:nodoc:# OptionParser.new do |o| o.set_summary_indent(" ") o. = "Usage: #{@script_name} [options]" o.define_head "Blueprint Compressor" o.separator "" o.separator "options" o.on( "-fSETTINGS_FILE", "--settings_file=SETTINGS_FILE", String, "Specify a non-default settings file path.") { |file| @settings_file = file } o.on( "-oOUTPUT_PATH", "--output_path=OUTPUT_PATH", String, "Define a different path to output generated CSS files to.") { |path| self.destination_path = path } o.on( "-nBP_NAMESPACE", "--namespace=BP_NAMESPACE", String, "Define a namespace prepended to all Blueprint classes (e.g. .your-ns-span-24)") { |ns| self.namespace = ns } o.on( "-pPROJECT_NAME", "--project=PROJECT_NAME", String, "If using the settings.yml file, PROJECT_NAME is the project name you want to export") {|project| @project_name = project } o.on( "--column_width=COLUMN_WIDTH", Integer, "Set a new column width (in pixels) for the output grid") {|cw| self.custom_layout.column_width = cw } o.on( "--gutter_width=GUTTER_WIDTH", Integer, "Set a new gutter width (in pixels) for the output grid") {|gw| self.custom_layout.gutter_width = gw } o.on( "--column_count=COLUMN_COUNT", Integer, "Set a new column count for the output grid") {|cc| self.custom_layout.column_count = cc } #o.on("-v", "--verbose", "Turn on verbose output.") { |$verbose| } o.on("-h", "--help", "Show this help message.") { puts o; exit } end end |