Skip to content

Commit

Permalink
Fixed bug in Resources file, defining plugin namespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
halfbaked committed Oct 2, 2012
1 parent 33ede13 commit 7fc086c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion FontAwesomeResourcesGrailsPlugin.groovy
@@ -1,6 +1,6 @@
class FontAwesomeResourcesGrailsPlugin {
// the plugin version
def version = "2.0"
def version = "2.0.1"
// the version or versions of Grails the plugin is designed for
def grailsVersion = "2.0 > *"
// the other plugins this plugin depends on
Expand Down
5 changes: 3 additions & 2 deletions application.properties
@@ -1,5 +1,6 @@
#Grails Metadata file
#Wed Jun 27 13:48:17 CEST 2012
app.grails.version=2.0.1
#Tue Oct 02 11:55:09 UTC 2012
app.grails.version=2.1.0
app.name=font-awesome-resources
plugins.hibernate=2.1.0
plugins.rest-client-builder=1.0.2
2 changes: 2 additions & 0 deletions grails-app/conf/Config.groovy
Expand Up @@ -22,3 +22,5 @@ log4j = {

warn 'org.mortbay.log'
}
grails.views.default.codec="none" // none, html, base64
grails.views.gsp.encoding="UTF-8"
2 changes: 1 addition & 1 deletion grails-app/conf/FontAwesomePluginResources.groovy
@@ -1,7 +1,7 @@
modules = {

'font-awesome' {
resource url:[dir: 'less', file: 'font-awesome.less'], attrs:[rel: "stylesheet/less", type:'css']
resource url:[plugin: 'font-awesome-resources', dir: 'less', file: 'font-awesome.less'], attrs:[rel: "stylesheet/less", type:'css']
}

}

0 comments on commit 7fc086c

Please sign in to comment.