Tagged Questions
Grape lets you quickly add maven repository dependencies to your classpath.
7
votes
6answers
7k views
Getting Groovy's Grape Going!
I've tried to use the new Groovy Grape capability in Groovy 1.6-beta-2 but I get an error message;
unable to resolve class com.jidesoft.swing.JideSplitButton
from the Groovy Console ...
4
votes
2answers
478 views
grape doesn't work in Eclipse
groovy eclipse plugin version: 1.7.5.xx-20101020-1000-e36-release.
import com.jidesoft.swing.JideSplitButton
@Grab(group='com.jidesoft', module='jide-oss', version='[2.2.1,2.3.0)')
public class ...
3
votes
2answers
482 views
How to add public API to a Rails app?
I'd like to open my Rails 2.3 app (hosted on Heroku) to developers. I thought of two ways of doing this:
Using the respond_to |format| of the app, and a before_filter only allowing authorized ...
2
votes
1answer
313 views
Groovy 1.8 @Grab fails unless I manually call grape resolve
When running a script that is using grape system to @Grab a dependency in the ibiblio repo, it fails till I manually call grape resolve from the command line. After that, it's in the local cache and ...
2
votes
2answers
338 views
Disable automatic download for Groovy grapes
A sample script ss.groovy:
@Grab(group='org.codehaus.groovy.modules.http-builder',
module='http-builder',
version='0.5.0')
import groovyx.net.http.HTTPBuilder
println('done')
for ...
1
vote
1answer
52 views
Understanding how to authenticate users from Android to Rails app
I have a rails application, and I authenticate users to the application using Devise.
The question is that I'm building an Android application and I want to understand how is the flow of ...
1
vote
1answer
59 views
Groovy Grape in high volume applications
I have seen examples of Groovy Grape being used for scripts to perform FTPs and other basic scripting tasks. Is anyone using Groovy Grape in applications that execute a high volume of transactions? ...
1
vote
1answer
205 views
groovy grape verbose
Is there a way to print Ivy output when using Groovy Grape.
when I use Grape, it's just hanging there till finishes downloading all dependencies. I would like to know what it's happening and what ...
1
vote
1answer
1k views
Groovy with Grape and AntBuilder classloader problem
I wanted to use groovy for a little ftp script and found this post http://www.hhhhq.org/blog/2009/05/01/ftp-using-groovy-and-ant/
Since there were several dependencies I wanted to use Grape. All ...
0
votes
0answers
32 views
I got 'Document is empty' when using grape
all
I got the error when using grape.
This page contains the following errors:
error on line 1 at column 1: Document is empty
Below is a rendering of the page up to the first error.
in fact, My ...
0
votes
0answers
9 views
Is it possible to disable the popup dialog when using grape to developing API
Just as the title.
I want to build API using plugin grape.
I'm using something like this.
class MyApp < Grape::API
http_basic do |user_name, password|
#check user name and password.
...
0
votes
0answers
132 views
NoMethodError: undefined method `columns_hash' for nil:NilClass
I'm using the Grape microframework to create an API and in my rspec tests I keep getting this error:
NoMethodError:
undefined method `columns_hash' for nil:NilClass
I can view the page being ...
0
votes
1answer
107 views
How to use Grape with Oracle driver?
In my groovy script, I have this code :
@Grapes([
@Grab(group='com.oracle', module='ojdbc14', version='10.2.0.3.0')
])
When I run the script, I receive an error message :
...
0
votes
1answer
213 views
Accessing compiled routes in Grape / Rack::Mount::Route
I'm trying to generate a list of all routes generated by my subclass of Grape::API (MyApi).
I can get close by calling:
MyApi.send(:route_set).instance_variable_get(:@routes)
which gives me an ...
0
votes
1answer
151 views
Groovy isn't able to load a library installed with Grape
Can someone explain why Groovy isn't able to find a JDBC driver even if I've already installed the dependency using Grape?
$ grape --version
Groovy Version: 1.7.7 JVM: 1.6.0_20
$ grape install ...
0
votes
1answer
350 views
How to set a custom Maven repository manager in Grape
I would like to use grape to install a library by command-line. So I've issued the command:
grape -V install org.apache.derby derby 10.5.3.0
Grape should use the Maven repository located at ...
0
votes
2answers
244 views
How to get groovy grape script startup going faster
I've noticed there is like a 10 second hit using a groovy script with Grape annotations on my OSX box. Is it always this way? Can I make grape favor its cache (the depedencies are definitely already ...
0
votes
1answer
777 views
Groovy servlet can't find JAR files in Tomcat
I've created a groovlet that will act as a sort of HTTP proxy. It accepts GET requests and then makes web service calls based on the URL provided in the request.
Here's the code I've got so far:
...
0
votes
1answer
560 views
Groovy + Antbuilder: How to use Grape to with taskdef?
This is related to . I'm trying to dynamically add the maven-ant-tasks jars with Grape, simulating this:
<taskdef uri="antlib:org.apache.maven.artifact.ant"
...