You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by jv...@apache.org on 2006/11/20 04:12:06 UTC

svn commit: r477014 - in /maven/sandbox/issue/rissue/bin: create.sh jira_shell.rb

Author: jvanzyl
Date: Sun Nov 19 19:12:06 2006
New Revision: 477014

URL: http://svn.apache.org/viewvc?view=rev&rev=477014
Log:
o script to create plugin project

Added:
    maven/sandbox/issue/rissue/bin/create.sh   (with props)
    maven/sandbox/issue/rissue/bin/jira_shell.rb   (with props)

Added: maven/sandbox/issue/rissue/bin/create.sh
URL: http://svn.apache.org/viewvc/maven/sandbox/issue/rissue/bin/create.sh?view=auto&rev=477014
==============================================================================
--- maven/sandbox/issue/rissue/bin/create.sh (added)
+++ maven/sandbox/issue/rissue/bin/create.sh Sun Nov 19 19:12:06 2006
@@ -0,0 +1,11 @@
+#!/bin/sh
+
+./create_project.rb create \
+-n "Maven 2.x Remote Resources Plugin" \
+-k MRRESOURCES \
+-d "Maven 2.x Remote Resources Plugin" \
+-u "http://jira.codehaus.org/browse/MRRESOURCES" \
+-l  jason \
+-s 10591 \
+-p 10572 \
+-w 10050

Propchange: maven/sandbox/issue/rissue/bin/create.sh
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/sandbox/issue/rissue/bin/create.sh
------------------------------------------------------------------------------
    svn:executable = *

Propchange: maven/sandbox/issue/rissue/bin/create.sh
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/sandbox/issue/rissue/bin/jira_shell.rb
URL: http://svn.apache.org/viewvc/maven/sandbox/issue/rissue/bin/jira_shell.rb?view=auto&rev=477014
==============================================================================
--- maven/sandbox/issue/rissue/bin/jira_shell.rb (added)
+++ maven/sandbox/issue/rissue/bin/jira_shell.rb Sun Nov 19 19:12:06 2006
@@ -0,0 +1,14 @@
+#!/usr/bin/ruby -w
+
+require 'readline'
+
+# create commands and then allow the commands to be used by
+# - command line
+# - interactive shell
+# - UI
+
+line = 0
+loop do
+  eval Readline.readline( '%.3d> ' % line, true)
+  line += 1
+end

Propchange: maven/sandbox/issue/rissue/bin/jira_shell.rb
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/sandbox/issue/rissue/bin/jira_shell.rb
------------------------------------------------------------------------------
    svn:executable = *

Propchange: maven/sandbox/issue/rissue/bin/jira_shell.rb
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"