naether 0.12.1-java → 0.12.2-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/VERSION +1 -1
- data/{core-0.12.1.jar → core-0.12.2.jar} +0 -0
- data/lib/naether/maven.rb +3 -2
- data/pom.xml +1 -1
- metadata +3 -27
- data/doc/Naether/Bootstrap.html +0 -1113
- data/doc/Naether/Configurator.html +0 -503
- data/doc/Naether/Java/JRuby.html +0 -1208
- data/doc/Naether/Java/Ruby.html +0 -1330
- data/doc/Naether/Java.html +0 -1207
- data/doc/Naether/Maven.html +0 -1375
- data/doc/Naether/Notation.html +0 -705
- data/doc/Naether/Runtime.html +0 -2967
- data/doc/Naether.html +0 -320
- data/doc/_index.html +0 -189
- data/doc/class_list.html +0 -56
- data/doc/css/common.css +0 -1
- data/doc/css/full_list.css +0 -57
- data/doc/css/style.css +0 -338
- data/doc/file.README.html +0 -199
- data/doc/file_list.html +0 -56
- data/doc/frames.html +0 -26
- data/doc/index.html +0 -199
- data/doc/js/app.js +0 -214
- data/doc/js/full_list.js +0 -178
- data/doc/js/jquery.js +0 -4
- data/doc/method_list.html +0 -427
- data/doc/top-level-namespace.html +0 -112
- data/naether.gemspec +0 -111
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.12.
|
1
|
+
0.12.2
|
Binary file
|
data/lib/naether/maven.rb
CHANGED
@@ -152,12 +152,13 @@ module Naether
|
|
152
152
|
def invoke( *opts )
|
153
153
|
#defaults
|
154
154
|
config = {
|
155
|
-
|
155
|
+
# Checks ENV for maven home, otherwise defaults /usr/share/maven
|
156
|
+
:maven_home => ENV['maven.home'] || ENV['MAVEN_HOME'] || '/usr/share/maven',
|
156
157
|
:local_repo => File.expand_path('~/.m2/repository')
|
157
158
|
}
|
158
159
|
|
159
160
|
if opts.last.is_a? Hash
|
160
|
-
config =
|
161
|
+
config = config.merge( opts.pop )
|
161
162
|
end
|
162
163
|
goals = opts
|
163
164
|
|
data/pom.xml
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
<modelVersion>4.0.0</modelVersion>
|
4
4
|
<groupId>com.tobedevoured.naether</groupId>
|
5
5
|
<artifactId>core</artifactId>
|
6
|
-
<version>0.12.
|
6
|
+
<version>0.12.2</version>
|
7
7
|
<name>Naether</name>
|
8
8
|
<packaging>jar</packaging>
|
9
9
|
<url>https://github.com/mguymon/naether</url>
|
metadata
CHANGED
@@ -2,14 +2,14 @@
|
|
2
2
|
name: naether
|
3
3
|
version: !ruby/object:Gem::Version
|
4
4
|
prerelease:
|
5
|
-
version: 0.12.
|
5
|
+
version: 0.12.2
|
6
6
|
platform: java
|
7
7
|
authors:
|
8
8
|
- Michael Guymon
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2013-10-
|
12
|
+
date: 2013-10-03 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rspec
|
@@ -186,30 +186,7 @@ files:
|
|
186
186
|
- README.md
|
187
187
|
- Rakefile
|
188
188
|
- VERSION
|
189
|
-
- core-0.12.
|
190
|
-
- doc/Naether.html
|
191
|
-
- doc/Naether/Bootstrap.html
|
192
|
-
- doc/Naether/Configurator.html
|
193
|
-
- doc/Naether/Java.html
|
194
|
-
- doc/Naether/Java/JRuby.html
|
195
|
-
- doc/Naether/Java/Ruby.html
|
196
|
-
- doc/Naether/Maven.html
|
197
|
-
- doc/Naether/Notation.html
|
198
|
-
- doc/Naether/Runtime.html
|
199
|
-
- doc/_index.html
|
200
|
-
- doc/class_list.html
|
201
|
-
- doc/css/common.css
|
202
|
-
- doc/css/full_list.css
|
203
|
-
- doc/css/style.css
|
204
|
-
- doc/file.README.html
|
205
|
-
- doc/file_list.html
|
206
|
-
- doc/frames.html
|
207
|
-
- doc/index.html
|
208
|
-
- doc/js/app.js
|
209
|
-
- doc/js/full_list.js
|
210
|
-
- doc/js/jquery.js
|
211
|
-
- doc/method_list.html
|
212
|
-
- doc/top-level-namespace.html
|
189
|
+
- core-0.12.2.jar
|
213
190
|
- jar_dependencies.yml
|
214
191
|
- lib/naether.rb
|
215
192
|
- lib/naether/bootstrap.rb
|
@@ -220,7 +197,6 @@ files:
|
|
220
197
|
- lib/naether/maven.rb
|
221
198
|
- lib/naether/notation.rb
|
222
199
|
- lib/naether/runtime.rb
|
223
|
-
- naether.gemspec
|
224
200
|
- pom.xml
|
225
201
|
homepage: http://github.com/mguymon/naether
|
226
202
|
licenses:
|