forked from jruby-gradle/jruby-gradle-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Ensure all new classes have reasonable groovydoc/javadoc (jruby-gradl…
- Loading branch information
Showing
14 changed files
with
410 additions
and
202 deletions.
There are no files selected for viewing
This file contains 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
13 changes: 13 additions & 0 deletions
13
core-plugin/src/main/groovy/com/github/jrubygradle/core/GemDependency.java
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,20 @@ | ||
package com.github.jrubygradle.core; | ||
|
||
/** Description of a transitive GEM dependency. | ||
* | ||
* @since 2.0 | ||
*/ | ||
public interface GemDependency { | ||
|
||
/** Name of transitive GEM dependency. | ||
* | ||
* @return GEM name | ||
*/ | ||
String getName(); | ||
|
||
/** Version requirements that is requested upon this transitive dependency. | ||
* | ||
* @return Version requirements in GEM format. | ||
*/ | ||
String getRequirements(); | ||
} |
This file contains 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
Oops, something went wrong.