naether 0.11.0-java → 0.11.1-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/Gemfile +8 -3
- data/Gemfile.lock +51 -23
- data/VERSION +1 -1
- data/{core-0.11.0.jar → core-0.11.1.jar} +0 -0
- data/doc/Naether.html +6 -6
- data/doc/Naether/Bootstrap.html +1 -1
- data/doc/Naether/Configurator.html +1 -1
- data/doc/Naether/Java.html +1 -1
- data/doc/Naether/Java/JRuby.html +1 -1
- data/doc/Naether/Java/Ruby.html +1 -1
- data/doc/Naether/Maven.html +1 -1
- data/doc/Naether/Notation.html +1 -1
- data/doc/Naether/Runtime.html +1 -1
- data/doc/_index.html +16 -16
- data/doc/class_list.html +3 -2
- data/doc/css/style.css +10 -0
- data/doc/file.README.html +17 -17
- data/doc/file_list.html +2 -1
- data/doc/frames.html +5 -7
- data/doc/index.html +17 -17
- data/doc/js/full_list.js +7 -2
- data/doc/method_list.html +119 -239
- data/doc/top-level-namespace.html +5 -5
- data/naether.gemspec +2 -14
- data/pom.xml +1 -1
- metadata +2 -40
- data/doc/Naether/s_20Ja.html +0 -607
- data/doc/Naether/s_20Ja/s_20JRu.html +0 -597
- data/doc/Naether/s_20Ja/s_20Ru.html +0 -606
- data/doc/Naether/s_20Mav.html +0 -828
- data/doc/er_A_20_20_A_20.html +0 -121
- data/doc/er_A_20_20_A_20/tstrap_A_20_20.html +0 -233
data/Gemfile
CHANGED
@@ -1,12 +1,17 @@
|
|
1
1
|
source "http://rubygems.org"
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
platform = $platform || RUBY_PLATFORM[/java/] || 'ruby'
|
4
|
+
if platform != 'java'
|
5
|
+
gem 'rjb', '~> 1.4.0'
|
6
|
+
end
|
5
7
|
|
6
8
|
group :development do
|
7
9
|
gem "rspec", "> 2.9.0"
|
8
10
|
gem "jeweler", "~> 1.8.0"
|
9
11
|
gem "yard"
|
10
12
|
gem "kramdown"
|
11
|
-
|
13
|
+
|
14
|
+
if platform == 'java'
|
15
|
+
gem 'jruby-openssl'
|
16
|
+
end
|
12
17
|
end
|
data/Gemfile.lock
CHANGED
@@ -1,41 +1,69 @@
|
|
1
1
|
GEM
|
2
2
|
remote: http://rubygems.org/
|
3
3
|
specs:
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
4
|
+
addressable (2.3.5)
|
5
|
+
bouncy-castle-java (1.5.0147)
|
6
|
+
builder (3.2.2)
|
7
|
+
diff-lcs (1.2.4)
|
8
|
+
faraday (0.8.8)
|
9
|
+
multipart-post (~> 1.2.0)
|
10
|
+
git (1.2.6)
|
11
|
+
github_api (0.10.1)
|
12
|
+
addressable
|
13
|
+
faraday (~> 0.8.1)
|
14
|
+
hashie (>= 1.2)
|
15
|
+
multi_json (~> 1.4)
|
16
|
+
nokogiri (~> 1.5.2)
|
17
|
+
oauth2
|
18
|
+
hashie (2.0.5)
|
19
|
+
highline (1.6.19)
|
20
|
+
httpauth (0.2.0)
|
21
|
+
jeweler (1.8.7)
|
22
|
+
builder
|
8
23
|
bundler (~> 1.0)
|
9
24
|
git (>= 1.2.5)
|
25
|
+
github_api (= 0.10.1)
|
26
|
+
highline (>= 1.6.15)
|
27
|
+
nokogiri (= 1.5.10)
|
10
28
|
rake
|
11
29
|
rdoc
|
12
|
-
jruby-openssl (0.
|
13
|
-
bouncy-castle-java (>= 1.5.
|
14
|
-
json (1.
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
30
|
+
jruby-openssl (0.9.0)
|
31
|
+
bouncy-castle-java (>= 1.5.0147)
|
32
|
+
json (1.8.0-java)
|
33
|
+
jwt (0.1.8)
|
34
|
+
multi_json (>= 1.5)
|
35
|
+
kramdown (1.2.0)
|
36
|
+
multi_json (1.8.0)
|
37
|
+
multi_xml (0.5.5)
|
38
|
+
multipart-post (1.2.0)
|
39
|
+
nokogiri (1.5.10-java)
|
40
|
+
oauth2 (0.9.2)
|
41
|
+
faraday (~> 0.8)
|
42
|
+
httpauth (~> 0.2)
|
43
|
+
jwt (~> 0.1.4)
|
44
|
+
multi_json (~> 1.0)
|
45
|
+
multi_xml (~> 0.5)
|
46
|
+
rack (~> 1.2)
|
47
|
+
rack (1.5.2)
|
48
|
+
rake (10.1.0)
|
49
|
+
rdoc (4.0.1)
|
19
50
|
json (~> 1.4)
|
20
|
-
|
21
|
-
|
22
|
-
rspec-
|
23
|
-
rspec-
|
24
|
-
|
25
|
-
rspec-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
yard (0.8.2.1)
|
51
|
+
rspec (2.14.1)
|
52
|
+
rspec-core (~> 2.14.0)
|
53
|
+
rspec-expectations (~> 2.14.0)
|
54
|
+
rspec-mocks (~> 2.14.0)
|
55
|
+
rspec-core (2.14.5)
|
56
|
+
rspec-expectations (2.14.3)
|
57
|
+
diff-lcs (>= 1.1.3, < 2.0)
|
58
|
+
rspec-mocks (2.14.3)
|
59
|
+
yard (0.8.7.2)
|
30
60
|
|
31
61
|
PLATFORMS
|
32
62
|
java
|
33
|
-
ruby
|
34
63
|
|
35
64
|
DEPENDENCIES
|
36
65
|
jeweler (~> 1.8.0)
|
37
66
|
jruby-openssl
|
38
67
|
kramdown
|
39
|
-
rjb (~> 1.4.0)
|
40
68
|
rspec (> 2.9.0)
|
41
69
|
yard
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.11.
|
1
|
+
0.11.1
|
Binary file
|
data/doc/Naether.html
CHANGED
@@ -6,13 +6,13 @@
|
|
6
6
|
<title>
|
7
7
|
Module: Naether
|
8
8
|
|
9
|
-
— Documentation by YARD 0.8.2
|
9
|
+
— Documentation by YARD 0.8.7.2
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
13
|
-
<link rel="stylesheet" href="css/style.css" type="text/css"
|
13
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
|
14
14
|
|
15
|
-
<link rel="stylesheet" href="css/common.css" type="text/css"
|
15
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
|
16
16
|
|
17
17
|
<script type="text/javascript" charset="utf-8">
|
18
18
|
hasFrames = window.top.frames.main ? true : false;
|
@@ -92,7 +92,7 @@
|
|
92
92
|
|
93
93
|
|
94
94
|
|
95
|
-
<strong class="classes">Classes:</strong> <span class='object_link'><a href="Naether/
|
95
|
+
<strong class="classes">Classes:</strong> <span class='object_link'><a href="Naether/sConfigurat.html" title="Naether::sConfigurat (class)">sConfigurat</a></span>, <span class='object_link'><a href="Naether/sJa.html" title="Naether::sJa (class)">sJa</a></span>, <span class='object_link'><a href="Naether/sMav.html" title="Naether::sMav (class)">sMav</a></span>, <span class='object_link'><a href="Naether/sNotati.html" title="Naether::sNotati (class)">sNotati</a></span>, <span class='object_link'><a href="Naether/sRunti.html" title="Naether::sRunti (class)">sRunti</a></span>
|
96
96
|
|
97
97
|
|
98
98
|
</p>
|
@@ -311,9 +311,9 @@ Naether::Configurat</pre>
|
|
311
311
|
</div>
|
312
312
|
|
313
313
|
<div id="footer">
|
314
|
-
Generated on Fri Sep 27 17:
|
314
|
+
Generated on Fri Sep 27 17:59:42 2013 by
|
315
315
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
316
|
-
0.8.2
|
316
|
+
0.8.7.2 (ruby-1.9.3).
|
317
317
|
</div>
|
318
318
|
|
319
319
|
</body>
|
data/doc/Naether/Bootstrap.html
CHANGED
@@ -1104,7 +1104,7 @@ result after first run.</p>
|
|
1104
1104
|
</div>
|
1105
1105
|
|
1106
1106
|
<div id="footer">
|
1107
|
-
Generated on Fri Sep 27 17:
|
1107
|
+
Generated on Fri Sep 27 17:57:01 2013 by
|
1108
1108
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
1109
1109
|
0.8.2.1 (ruby-1.9.3).
|
1110
1110
|
</div>
|
@@ -494,7 +494,7 @@
|
|
494
494
|
</div>
|
495
495
|
|
496
496
|
<div id="footer">
|
497
|
-
Generated on Fri Sep 27 17:
|
497
|
+
Generated on Fri Sep 27 17:57:01 2013 by
|
498
498
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
499
499
|
0.8.2.1 (ruby-1.9.3).
|
500
500
|
</div>
|
data/doc/Naether/Java.html
CHANGED
@@ -1198,7 +1198,7 @@ params one to one.</p>
|
|
1198
1198
|
</div>
|
1199
1199
|
|
1200
1200
|
<div id="footer">
|
1201
|
-
Generated on Fri Sep 27 17:
|
1201
|
+
Generated on Fri Sep 27 17:57:00 2013 by
|
1202
1202
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
1203
1203
|
0.8.2.1 (ruby-1.9.3).
|
1204
1204
|
</div>
|
data/doc/Naether/Java/JRuby.html
CHANGED
@@ -1199,7 +1199,7 @@ params one to one.</p>
|
|
1199
1199
|
</div>
|
1200
1200
|
|
1201
1201
|
<div id="footer">
|
1202
|
-
Generated on Fri Sep 27 17:
|
1202
|
+
Generated on Fri Sep 27 17:57:01 2013 by
|
1203
1203
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
1204
1204
|
0.8.2.1 (ruby-1.9.3).
|
1205
1205
|
</div>
|
data/doc/Naether/Java/Ruby.html
CHANGED
@@ -1305,7 +1305,7 @@ params one to one.</p>
|
|
1305
1305
|
</div>
|
1306
1306
|
|
1307
1307
|
<div id="footer">
|
1308
|
-
Generated on Fri Sep 27 17:
|
1308
|
+
Generated on Fri Sep 27 17:57:01 2013 by
|
1309
1309
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
1310
1310
|
0.8.2.1 (ruby-1.9.3).
|
1311
1311
|
</div>
|
data/doc/Naether/Maven.html
CHANGED
@@ -1227,7 +1227,7 @@
|
|
1227
1227
|
</div>
|
1228
1228
|
|
1229
1229
|
<div id="footer">
|
1230
|
-
Generated on Fri Sep 27 17:
|
1230
|
+
Generated on Fri Sep 27 17:57:00 2013 by
|
1231
1231
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
1232
1232
|
0.8.2.1 (ruby-1.9.3).
|
1233
1233
|
</div>
|
data/doc/Naether/Notation.html
CHANGED
@@ -696,7 +696,7 @@
|
|
696
696
|
</div>
|
697
697
|
|
698
698
|
<div id="footer">
|
699
|
-
Generated on Fri Sep 27 17:
|
699
|
+
Generated on Fri Sep 27 17:57:01 2013 by
|
700
700
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
701
701
|
0.8.2.1 (ruby-1.9.3).
|
702
702
|
</div>
|
data/doc/Naether/Runtime.html
CHANGED
@@ -2958,7 +2958,7 @@ jar_path</p>
|
|
2958
2958
|
</div>
|
2959
2959
|
|
2960
2960
|
<div id="footer">
|
2961
|
-
Generated on Fri Sep 27 17:
|
2961
|
+
Generated on Fri Sep 27 17:57:00 2013 by
|
2962
2962
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
2963
2963
|
0.8.2.1 (ruby-1.9.3).
|
2964
2964
|
</div>
|
data/doc/_index.html
CHANGED
@@ -4,13 +4,13 @@
|
|
4
4
|
<head>
|
5
5
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
6
6
|
<title>
|
7
|
-
Documentation by YARD 0.8.2
|
7
|
+
Documentation by YARD 0.8.7.2
|
8
8
|
|
9
9
|
</title>
|
10
10
|
|
11
|
-
<link rel="stylesheet" href="css/style.css" type="text/css"
|
11
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
|
12
12
|
|
13
|
-
<link rel="stylesheet" href="css/common.css" type="text/css"
|
13
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
|
14
14
|
|
15
15
|
<script type="text/javascript" charset="utf-8">
|
16
16
|
hasFrames = window.top.frames.main ? true : false;
|
@@ -56,7 +56,7 @@
|
|
56
56
|
|
57
57
|
<iframe id="search_frame"></iframe>
|
58
58
|
|
59
|
-
<div id="content"><h1 class="noborder title">Documentation by YARD 0.8.2
|
59
|
+
<div id="content"><h1 class="noborder title">Documentation by YARD 0.8.7.2</h1>
|
60
60
|
<div id="listing">
|
61
61
|
<h1 class="alphaindex">Alphabetic Index</h1>
|
62
62
|
|
@@ -111,49 +111,49 @@
|
|
111
111
|
<ul>
|
112
112
|
|
113
113
|
<li>
|
114
|
-
<span class='object_link'><a href="Naether/
|
114
|
+
<span class='object_link'><a href="Naether/sConfigurat.html" title="Naether::sConfigurat (class)">sConfigurat</a></span>
|
115
115
|
|
116
116
|
<small>(Naether)</small>
|
117
117
|
|
118
118
|
</li>
|
119
119
|
|
120
120
|
<li>
|
121
|
-
<span class='object_link'><a href="Naether/
|
121
|
+
<span class='object_link'><a href="Naether/sJa/sJRu.html" title="Naether::sJa::sJRu (class)">sJRu</a></span>
|
122
122
|
|
123
|
-
<small>(Naether::
|
123
|
+
<small>(Naether::sJa)</small>
|
124
124
|
|
125
125
|
</li>
|
126
126
|
|
127
127
|
<li>
|
128
|
-
<span class='object_link'><a href="Naether/
|
128
|
+
<span class='object_link'><a href="Naether/sJa.html" title="Naether::sJa (class)">sJa</a></span>
|
129
129
|
|
130
130
|
<small>(Naether)</small>
|
131
131
|
|
132
132
|
</li>
|
133
133
|
|
134
134
|
<li>
|
135
|
-
<span class='object_link'><a href="Naether/
|
135
|
+
<span class='object_link'><a href="Naether/sMav.html" title="Naether::sMav (class)">sMav</a></span>
|
136
136
|
|
137
137
|
<small>(Naether)</small>
|
138
138
|
|
139
139
|
</li>
|
140
140
|
|
141
141
|
<li>
|
142
|
-
<span class='object_link'><a href="Naether/
|
142
|
+
<span class='object_link'><a href="Naether/sNotati.html" title="Naether::sNotati (class)">sNotati</a></span>
|
143
143
|
|
144
144
|
<small>(Naether)</small>
|
145
145
|
|
146
146
|
</li>
|
147
147
|
|
148
148
|
<li>
|
149
|
-
<span class='object_link'><a href="Naether/
|
149
|
+
<span class='object_link'><a href="Naether/sJa/sRu.html" title="Naether::sJa::sRu (class)">sRu</a></span>
|
150
150
|
|
151
|
-
<small>(Naether::
|
151
|
+
<small>(Naether::sJa)</small>
|
152
152
|
|
153
153
|
</li>
|
154
154
|
|
155
155
|
<li>
|
156
|
-
<span class='object_link'><a href="Naether/
|
156
|
+
<span class='object_link'><a href="Naether/sRunti.html" title="Naether::sRunti (class)">sRunti</a></span>
|
157
157
|
|
158
158
|
<small>(Naether)</small>
|
159
159
|
|
@@ -168,7 +168,7 @@
|
|
168
168
|
<ul>
|
169
169
|
|
170
170
|
<li>
|
171
|
-
<span class='object_link'><a href="er_A_20_20_A_20/
|
171
|
+
<span class='object_link'><a href="er_A_20_20_A_20/tstrap.html" title="er\n \n ::tstrap (class)">tstrap</a></span>
|
172
172
|
|
173
173
|
<small>(er
|
174
174
|
|
@@ -188,9 +188,9 @@
|
|
188
188
|
</div>
|
189
189
|
|
190
190
|
<div id="footer">
|
191
|
-
Generated on Fri Sep 27 17:
|
191
|
+
Generated on Fri Sep 27 17:59:41 2013 by
|
192
192
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
193
|
-
0.8.2
|
193
|
+
0.8.7.2 (ruby-1.9.3).
|
194
194
|
</div>
|
195
195
|
|
196
196
|
</body>
|
data/doc/class_list.html
CHANGED
@@ -15,6 +15,7 @@
|
|
15
15
|
<script type="text/javascript" charset="utf-8" src="js/full_list.js"></script>
|
16
16
|
|
17
17
|
|
18
|
+
<title>Class List</title>
|
18
19
|
<base id="base_target" target="_parent" />
|
19
20
|
</head>
|
20
21
|
<body>
|
@@ -44,8 +45,8 @@
|
|
44
45
|
<div id="search">Search: <input type="text" /></div>
|
45
46
|
|
46
47
|
<ul id="full_list" class="class">
|
47
|
-
<li><span class='object_link'><a href="top-level-namespace.html" title=" (root)">Top Level Namespace</a></span></li>
|
48
|
-
<li><a class='toggle'></a> <span class='object_link'><a href="Naether.html" title="Naether (module)">Naether</a></span><small class='search_info'>Top Level Namespace</small></li><ul><li><span class='object_link'><a href="Naether/
|
48
|
+
<li><span class='object_link'><a href="top-level-namespace.html" title="Top Level Namespace (root)">Top Level Namespace</a></span></li>
|
49
|
+
<li><a class='toggle'></a> <span class='object_link'><a href="Naether.html" title="Naether (module)">Naether</a></span><small class='search_info'>Top Level Namespace</small></li><ul><li><span class='object_link'><a href="Naether/sConfigurat.html" title="Naether::sConfigurat (class)">sConfigurat</a></span> < Object<small class='search_info'>Naether</small></li><li><a class='toggle'></a> <span class='object_link'><a href="Naether/sJa.html" title="Naether::sJa (class)">sJa</a></span> < Object<small class='search_info'>Naether</small></li><ul><li><span class='object_link'><a href="Naether/sJa/sJRu.html" title="Naether::sJa::sJRu (class)">sJRu</a></span> < Object<small class='search_info'>Naether::sJa</small></li><li><span class='object_link'><a href="Naether/sJa/sRu.html" title="Naether::sJa::sRu (class)">sRu</a></span> < Object<small class='search_info'>Naether::sJa</small></li></ul><li><span class='object_link'><a href="Naether/sMav.html" title="Naether::sMav (class)">sMav</a></span> < Object<small class='search_info'>Naether</small></li><li><span class='object_link'><a href="Naether/sNotati.html" title="Naether::sNotati (class)">sNotati</a></span> < Object<small class='search_info'>Naether</small></li><li><span class='object_link'><a href="Naether/sRunti.html" title="Naether::sRunti (class)">sRunti</a></span> < Object<small class='search_info'>Naether</small></li></ul><li><a class='toggle'></a> <span class='object_link'><a href="er_A_20_20_A_20.html" title="er\n \n (module)">er </a></span><small class='search_info'>Top Level Namespace</small></li><ul><li><span class='object_link'><a href="er_A_20_20_A_20/tstrap.html" title="er\n \n ::tstrap (class)">tstrap</a></span> < Object<small class='search_info'>er
|
49
50
|
|
50
51
|
</small></li></ul>
|
51
52
|
|
data/doc/css/style.css
CHANGED
@@ -27,6 +27,16 @@ h2 small { font-weight: normal; font-size: 0.7em; display: block; float: right;
|
|
27
27
|
.rdoc-term { padding-right: 25px; font-weight: bold; }
|
28
28
|
.rdoc-list p { margin: 0; padding: 0; margin-bottom: 4px; }
|
29
29
|
|
30
|
+
/* style for <table> */
|
31
|
+
#filecontents table, .docstring table { border-collapse: collapse; }
|
32
|
+
#filecontents table th, #filecontents table td,
|
33
|
+
.docstring table th, .docstring table td { border: 1px solid #ccc; padding: 8px; padding-right: 17px; }
|
34
|
+
#filecontents table tr:nth-child(odd),
|
35
|
+
.docstring table tr:nth-child(odd) { background: #eee; }
|
36
|
+
#filecontents table tr:nth-child(even),
|
37
|
+
.docstring table tr:nth-child(even) { background: #fff; }
|
38
|
+
#filecontents table th, .docstring table th { background: #fff; }
|
39
|
+
|
30
40
|
/* style for <ul> */
|
31
41
|
#filecontents li > p, .docstring li > p { margin: 0px; }
|
32
42
|
#filecontents ul, .docstring ul { padding-left: 20px; }
|
data/doc/file.README.html
CHANGED
@@ -2,17 +2,17 @@
|
|
2
2
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
3
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
4
|
<head>
|
5
|
-
<meta http-equiv="Content-Type" content="text/html; charset=
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=US-ASCII" />
|
6
6
|
<title>
|
7
7
|
File: README
|
8
8
|
|
9
|
-
— Documentation by YARD 0.8.2
|
9
|
+
— Documentation by YARD 0.8.7.2
|
10
10
|
|
11
11
|
</title>
|
12
12
|
|
13
|
-
<link rel="stylesheet" href="css/style.css" type="text/css"
|
13
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
|
14
14
|
|
15
|
-
<link rel="stylesheet" href="css/common.css" type="text/css"
|
15
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
|
16
16
|
|
17
17
|
<script type="text/javascript" charset="utf-8">
|
18
18
|
hasFrames = window.top.frames.main ? true : false;
|
@@ -63,7 +63,7 @@
|
|
63
63
|
|
64
64
|
<div id="content"><div id='filecontents'><h1 id="naether">Naether</h1>
|
65
65
|
|
66
|
-
<p>Naether is a Java Dependency Resolver using Maven
|
66
|
+
<p>Naether is a Java Dependency Resolver using Maven’s <a href="https://github.com/sonatype/sonatype-aether">Aether</a>
|
67
67
|
that can be used by Ruby or Java.</p>
|
68
68
|
|
69
69
|
<p><a href="https://github.com/mguymon/naether">https://github.com/mguymon/naether</a></p>
|
@@ -84,14 +84,14 @@ that can be used by Ruby or Java.</p>
|
|
84
84
|
|
85
85
|
<p>JRuby 1.6.8 is natively supported. 1.9.3 uses <a href="http://rjb.rubyforge.org">Rjb</a> to proxy over JNI.</p>
|
86
86
|
|
87
|
-
<pre class="code ruby"><code><span class='id identifier rubyid_gem'>gem</span> <span class='id identifier rubyid_install'>install</span> <span class='id identifier rubyid_naether'>naether</span>
|
87
|
+
<pre class="code ruby"><code class="ruby"><span class='id identifier rubyid_gem'>gem</span> <span class='id identifier rubyid_install'>install</span> <span class='id identifier rubyid_naether'>naether</span>
|
88
88
|
</code></pre>
|
89
89
|
|
90
90
|
<p>The jar dependencies for Naether will automatically be downloaded when the gem installs.</p>
|
91
91
|
|
92
92
|
<h3 id="java">Java</h3>
|
93
93
|
|
94
|
-
<pre class="code ruby"><code><dependency>
|
94
|
+
<pre class="code ruby"><code class="ruby"><dependency>
|
95
95
|
<groupId>com.tobedevoured.naether</groupId>
|
96
96
|
<artifactId>naether</artifactId>
|
97
97
|
<version>0.10.0</version>
|
@@ -100,7 +100,7 @@ that can be used by Ruby or Java.</p>
|
|
100
100
|
|
101
101
|
<p>May have to add the Sonatype Repo if the sync to Maven Central is slow.</p>
|
102
102
|
|
103
|
-
<pre class="code ruby"><code><repositories>
|
103
|
+
<pre class="code ruby"><code class="ruby"><repositories>
|
104
104
|
<repository>
|
105
105
|
<id>oss.sonatype.org</id>
|
106
106
|
<name>Sonatype Repository</name>
|
@@ -120,12 +120,12 @@ that can be used by Ruby or Java.</p>
|
|
120
120
|
<p>Naether <a href="https://github.com/mguymon/naether/blob/master/jar_dependencies.yml">jar dependences</a>
|
121
121
|
must be loaded for Naether to work. This is easily done with the <a href="http://rdoc.info/gems/naether/Naether/Bootstrap">bootstrap helper</a></p>
|
122
122
|
|
123
|
-
<pre class="code ruby"><code><span class='const'>Naether</span><span class='op'>::</span><span class='const'>Bootstrap</span><span class='period'>.</span><span class='id identifier rubyid_bootstrap_local_repo'>bootstrap_local_repo</span>
|
123
|
+
<pre class="code ruby"><code class="ruby"><span class='const'>Naether</span><span class='op'>::</span><span class='const'>Bootstrap</span><span class='period'>.</span><span class='id identifier rubyid_bootstrap_local_repo'>bootstrap_local_repo</span>
|
124
124
|
</code></pre>
|
125
125
|
|
126
126
|
<h4 id="resolving-dependencies">Resolving Dependencies</h4>
|
127
127
|
|
128
|
-
<pre class="code ruby"><code><span class='id identifier rubyid_require'>require</span> <span class='tstring'><span class='tstring_beg'>8</span><span class='tstring_content'>rubygems</span><span class='tstring_end'>'</span></span>
|
128
|
+
<pre class="code ruby"><code class="ruby"><span class='id identifier rubyid_require'>require</span> <span class='tstring'><span class='tstring_beg'>8</span><span class='tstring_content'>rubygems</span><span class='tstring_end'>'</span></span>
|
129
129
|
<span class='id identifier rubyid_require'>require</span> <span class='tstring'><span class='tstring_beg'>27</span><span class='tstring_content'>naether</span><span class='tstring_end'>'</span></span>
|
130
130
|
|
131
131
|
<span class='const'>Naether</span><span class='op'>::</span><span class='const'>Bootstrap</span><span class='period'>.</span><span class='id identifier rubyid_bootstrap_local_repo'>bootstrap_local_repo</span>
|
@@ -138,7 +138,7 @@ must be loaded for Naether to work. This is easily done with the <a href="http:/
|
|
138
138
|
|
139
139
|
<p>Will output</p>
|
140
140
|
|
141
|
-
<pre class="code ruby"><code><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>ch.qos.logback:logback-core:jar:0.9.29</span><span class='tstring_end'>"</span></span><span class='comma'>,</span>
|
141
|
+
<pre class="code ruby"><code class="ruby"><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>ch.qos.logback:logback-core:jar:0.9.29</span><span class='tstring_end'>"</span></span><span class='comma'>,</span>
|
142
142
|
<span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>ch.qos.logback:logback-classic:jar:0.9.29</span><span class='tstring_end'>"</span></span><span class='comma'>,</span>
|
143
143
|
<span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>junit:junit:jar:4.8.2</span><span class='tstring_end'>"</span></span><span class='comma'>,</span>
|
144
144
|
<span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>org.slf4j:slf4j-api:jar:1.6.1</span><span class='tstring_end'>"</span></span> <span class='rbracket'>]</span>
|
@@ -149,7 +149,7 @@ must be loaded for Naether to work. This is easily done with the <a href="http:/
|
|
149
149
|
<h3 id="java-1">Java</h3>
|
150
150
|
|
151
151
|
<h4 id="resolving-dependencies-1">Resolving Dependencies</h4>
|
152
|
-
<pre class="code ruby"><code>import com.tobedevoured.naether.api.Naether;
|
152
|
+
<pre class="code ruby"><code class="ruby">import com.tobedevoured.naether.api.Naether;
|
153
153
|
import com.tobedevoured.naether.impl.NaetherImpl;
|
154
154
|
|
155
155
|
Naether naether = new NaetherImpl();
|
@@ -161,7 +161,7 @@ System.out.println( naether.getDependenciesNotation().toString() );
|
|
161
161
|
|
162
162
|
<p>Will output:</p>
|
163
163
|
|
164
|
-
<pre class="code ruby"><code><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>ch.qos.logback:logback-core:jar:0.9.29</span><span class='tstring_end'>"</span></span><span class='comma'>,</span>
|
164
|
+
<pre class="code ruby"><code class="ruby"><span class='lbracket'>[</span><span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>ch.qos.logback:logback-core:jar:0.9.29</span><span class='tstring_end'>"</span></span><span class='comma'>,</span>
|
165
165
|
<span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>ch.qos.logback:logback-classic:jar:0.9.29</span><span class='tstring_end'>"</span></span><span class='comma'>,</span>
|
166
166
|
<span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>junit:junit:jar:4.8.2</span><span class='tstring_end'>"</span></span><span class='comma'>,</span>
|
167
167
|
<span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>org.slf4j:slf4j-api:jar:1.6.1</span><span class='tstring_end'>"</span></span> <span class='rbracket'>]</span>
|
@@ -175,22 +175,22 @@ System.out.println( naether.getDependenciesNotation().toString() );
|
|
175
175
|
contributor license agreements. See the NOTICE file distributed with this
|
176
176
|
work for additional information regarding copyright ownership. The ASF
|
177
177
|
licenses this file to you under the Apache License, Version 2.0 (the
|
178
|
-
|
178
|
+
“License”); you may not use this file except in compliance with the License.
|
179
179
|
You may obtain a copy of the License at</p>
|
180
180
|
|
181
181
|
<p>http://www.apache.org/licenses/LICENSE-2.0</p>
|
182
182
|
|
183
183
|
<p>Unless required by applicable law or agreed to in writing, software
|
184
|
-
distributed under the License is distributed on an
|
184
|
+
distributed under the License is distributed on an “AS IS” BASIS, WITHOUT
|
185
185
|
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
186
186
|
License for the specific language governing permissions and limitations under
|
187
187
|
the License.</p>
|
188
188
|
</div></div>
|
189
189
|
|
190
190
|
<div id="footer">
|
191
|
-
Generated on Fri Sep 27 17:
|
191
|
+
Generated on Fri Sep 27 17:59:42 2013 by
|
192
192
|
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
193
|
-
0.8.2
|
193
|
+
0.8.7.2 (ruby-1.9.3).
|
194
194
|
</div>
|
195
195
|
|
196
196
|
</body>
|