Skip to content

Commit

Permalink
renamed to flying cow
Browse files Browse the repository at this point in the history
  • Loading branch information
dnoseda committed Jul 19, 2011
1 parent 7eb41f5 commit 3463401
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 1,271 deletions.
37 changes: 21 additions & 16 deletions UiPerformanceGrailsPlugin.groovy → FlyingcowGrailsPlugin.groovy
Expand Up @@ -8,22 +8,27 @@ import com.studentsonly.grails.plugins.uiperformance.postprocess.CssTagPostProce
import com.studentsonly.grails.plugins.uiperformance.postprocess.ImageTagPostProcessor
import com.studentsonly.grails.plugins.uiperformance.postprocess.JsTagPostProcessor

class UiPerformanceGrailsPlugin {

String version = '1.3.2'
String grailsVersion = '1.0 > *'
Map dependsOn = [:]
List pluginExcludes = [
'lib/build/*.jar',
'lib/easymock.jar',
'src/groovy/com/studentsonly/grails/plugins/uiperformance/taglib/AbstractTaglibTest.groovy'
]

String author = 'Burt Beckwith'
String authorEmail = 'burt@burtbeckwith.com'
String title = 'Grails UI Performance Plugin'
String description = "Taglibs and Filter to implement some of the Yahoo performance team's 14 rules"
String documentation = 'http://grails.org/plugin/ui-performance'
class FlyingcowGrailsPlugin {
// the plugin version
def version = "0.1"
// the version or versions of Grails the plugin is designed for
def grailsVersion = "1.3.5 > *"
// the other plugins this plugin depends on
def dependsOn = [:]
// resources that are excluded from plugin packaging
def pluginExcludes = [
"grails-app/views/error.gsp"
]

// TODO Fill in these fields
def author = "Damian Noseda"
def authorEmail = "dnoseda@gmail.com"
def title = "Front Performance, based on uiperformance from Burt Beckwith (http://www.grails.org/plugin/ui-performance)"
def description = '''\\
Front Performance, based on uiperformance from Burt Beckwith (http://www.grails.org/plugin/ui-performance) with additionals goodies
'''

def documentation = "http://grails.org/plugin/flyingcow"

private static final String COMPRESSING_FILTER_CLASS =
'com.planetj.servlet.filter.compression.CompressingFilter'
Expand Down
5 changes: 2 additions & 3 deletions application.properties
@@ -1,7 +1,6 @@
#Grails Metadata file
#Fri Nov 26 10:09:18 ART 2010
#Tue Jul 19 11:06:38 ART 2011
app.grails.version=1.3.5
app.name=UiPerformance
plugins.code-coverage=1.1.6
app.name=flyingcow
plugins.hibernate=1.3.5
plugins.tomcat=1.3.5
18 changes: 0 additions & 18 deletions plugin.xml

This file was deleted.

0 comments on commit 3463401

Please sign in to comment.