আপনার সিস্টেমে রুবি থাকলে আপনি এটি করতে পারেন:
http://unixgods.org/~tilo/Ruby/Using_Variables_in_CSS_Files_with_Ruby_on_Rails.html
এটি রেলগুলির জন্য তৈরি করা হয়েছিল, তবে কীভাবে এটি একা দাঁড়ানোর জন্য এটি পরিবর্তন করতে হয় তা নীচে দেখুন।
আপনি এই পদ্ধতিটি রেলগুলি থেকে स्वतंत्रভাবে ব্যবহার করতে পারেন, একটি ছোট রুবি র্যাপার স্ক্রিপ্ট লিখে যা সাইট_সেটিংস.আরবি এর সাথে একত্রে কাজ করে এবং আপনার সিএসএস-পাথগুলি অ্যাকাউন্টে নেয় এবং যা আপনি যখনই নিজের সিএসএস পুনরায় উত্পন্ন করতে চান প্রতিবার কল করতে পারেন (উদাঃ সাইট শুরু করার সময়)
আপনি রুবিকে যে কোনও অপারেটিং সিস্টেমে চালাতে পারেন, সুতরাং এটি মোটামুটি স্বাধীনভাবে হওয়া উচিত।
যেমন মোড়ক: জেনারেট_সিএসএস.আরবি (যখনই আপনার সিএসএস তৈরি করার দরকার হয় তখন এই স্ক্রিপ্টটি চালান)
#/usr/bin/ruby # preferably Ruby 1.9.2 or higher
require './site_settings.rb' # assuming your site_settings file is on the same level
CSS_IN_PATH = File.join( PATH-TO-YOUR-PROJECT, 'css-input-files')
CSS_OUT_PATH = File.join( PATH-TO-YOUR-PROJECT, 'static' , 'stylesheets' )
Site.generate_CSS_files( CSS_IN_PATH , CSS_OUT_PATH )
সাইট_সেটিংস.আরবিতে জেনারেট_সিএসএস_ফাইল পদ্ধতিটি এরপরে এভাবে পরিবর্তন করা দরকার:
module Site
# ... see above link for complete contents
# Module Method which generates an OUTPUT CSS file *.css for each INPUT CSS file *.css.in we find in our CSS directory
# replacing any mention of Color Constants , e.g. #SomeColor# , with the corresponding color code defined in Site::Color
#
# We will only generate CSS files if they are deleted or the input file is newer / modified
#
def self.generate_CSS_files(input_path = File.join( Rails.root.to_s , 'public' ,'stylesheets') ,
output_path = File.join( Rails.root.to_s , 'public' ,'stylesheets'))
# assuming all your CSS files live under "./public/stylesheets"
Dir.glob( File.join( input_path, '*.css.in') ).each do |filename_in|
filename_out = File.join( output_path , File.basename( filename_in.sub(/.in$/, '') ))
# if the output CSS file doesn't exist, or the the input CSS file is newer than the output CSS file:
if (! File.exists?(filename_out)) || (File.stat( filename_in ).mtime > File.stat( filename_out ).mtime)
# in this case, we'll need to create the output CSS file fresh:
puts " processing #{filename_in}\n --> generating #{filename_out}"
out_file = File.open( filename_out, 'w' )
File.open( filename_in , 'r' ).each do |line|
if line =~ /^\s*\/\*/ || line =~ /^\s+$/ # ignore empty lines, and lines starting with a comment
out_file.print(line)
next
end
while line =~ /#(\w+)#/ do # substitute all the constants in each line
line.sub!( /#\w+#/ , Site::Color.const_get( $1 ) ) # with the color the constant defines
end
out_file.print(line)
end
out_file.close
end # if ..
end
end # def self.generate_CSS_files
end # module Site