fcsh 0.1.0 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +9 -9
- data/VERSION +1 -1
- metadata +2 -2
data/README.rdoc
CHANGED
@@ -1,18 +1,18 @@
|
|
1
1
|
= fcsh
|
2
2
|
|
3
|
-
Wrapper for FCSH.
|
3
|
+
Ruby Wrapper for FCSH.
|
4
4
|
|
5
5
|
== Usage
|
6
6
|
|
7
|
-
@fcsh = Fcsh.new
|
8
|
-
target_id = @fcsh.mxmlc "main.mxml"
|
9
|
-
@fcsh.errors.each do |error|
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
7
|
+
@fcsh = Fcsh.new
|
8
|
+
target_id = @fcsh.mxmlc "main.mxml"
|
9
|
+
@fcsh.errors.each do |error|
|
10
|
+
if error.level == "warn"
|
11
|
+
puts "WARNING"
|
12
|
+
elsif error.level == "error"
|
13
|
+
puts "ERROR"
|
14
|
+
end
|
14
15
|
end
|
15
|
-
end
|
16
16
|
|
17
17
|
|
18
18
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.2.0
|