Created
December 13, 2013 18:00
-
-
Save alanhogan/7948405 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if Rails.env.development? | |
class DevtoolsController < ApplicationController | |
def modules | |
@modules = Dir["app/assets/stylesheets/nri-modules/*.css.*"].map do |filename| | |
filename =~ %r{/([^/]+)\.css} | |
$1 | |
end | |
render layout: 'text' | |
end | |
def module | |
@module_name = params[:module_name] | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment