fcsh 0.1.0 → 0.2.0
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/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
|