sfp 0.3.17 → 0.3.18
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/.travis.yml +22 -0
- data/Gemfile.1.8.7 +5 -0
- data/README.md +10 -4
- data/Rakefile +0 -5
- data/VERSION +1 -1
- data/lib/sfp/SfpLangLexer.rb +1 -1
- data/lib/sfp/SfpLangParser.rb +3039 -3013
- data/sfp.gemspec +2 -2
- data/src/SfpLang.g +1 -1
- metadata +7 -6
data/.travis.yml
CHANGED
|
@@ -2,12 +2,34 @@ language: ruby
|
|
|
2
2
|
|
|
3
3
|
gemfile:
|
|
4
4
|
- Gemfile
|
|
5
|
+
- Gemfile.1.8.7
|
|
5
6
|
|
|
6
7
|
rvm:
|
|
8
|
+
- 1.8.7
|
|
7
9
|
- 1.9.2
|
|
8
10
|
- 1.9.3
|
|
9
11
|
- 2.0.0
|
|
12
|
+
- jruby-18mode
|
|
10
13
|
- jruby-19mode
|
|
11
14
|
|
|
15
|
+
matrix:
|
|
16
|
+
exclude:
|
|
17
|
+
- rvm: 1.8.7
|
|
18
|
+
gemfile: Gemfile
|
|
19
|
+
- rvm: 1.9.2
|
|
20
|
+
gemfile: Gemfile.1.8.7
|
|
21
|
+
- rvm: 1.9.3
|
|
22
|
+
gemfile: Gemfile.1.8.7
|
|
23
|
+
- rvm: 2.0.0
|
|
24
|
+
gemfile: Gemfile.1.8.7
|
|
25
|
+
- rvm: jruby-18mode
|
|
26
|
+
gemfile: Gemfile
|
|
27
|
+
- rvm: jruby-19mode
|
|
28
|
+
gemfile: Gemfile.1.8.7
|
|
29
|
+
- rvm: rbx-18mode
|
|
30
|
+
gemfile: Gemfile
|
|
31
|
+
- rvm: rbx-19mode
|
|
32
|
+
gemfile: Gemfile.1.8.7
|
|
33
|
+
|
|
12
34
|
notifications:
|
|
13
35
|
email: false
|
data/Gemfile.1.8.7
ADDED
data/README.md
CHANGED
|
@@ -3,7 +3,7 @@ SFP Language Parser
|
|
|
3
3
|
- Author: Herry (herry13@gmail.com)
|
|
4
4
|
- [BSD License](../master/LICENSE)
|
|
5
5
|
|
|
6
|
-
[](https://travis-ci.org/herry13/sfp-ruby)
|
|
7
7
|
[](https://badge.fury.io/rb/sfp)
|
|
8
8
|
|
|
9
9
|
A Ruby script and library for parsing [SFP language](https://github.com/herry13/nuri/wiki/SFP-language), a declarative language to specify a planning task.
|
|
@@ -17,16 +17,22 @@ This is a spin-out project from [Nuri](https://github.com/herry13/nuri).
|
|
|
17
17
|
|
|
18
18
|
To install
|
|
19
19
|
----------
|
|
20
|
+
- Ruby 1.8.7
|
|
20
21
|
|
|
21
|
-
|
|
22
|
+
$ gem install json
|
|
23
|
+
$ gem install sfp
|
|
24
|
+
|
|
25
|
+
- Ruby 1.9.x and 2.x
|
|
26
|
+
|
|
27
|
+
$ gem install sfp
|
|
22
28
|
|
|
23
29
|
|
|
24
30
|
Requirements
|
|
25
31
|
------------
|
|
26
32
|
- Ruby (>= 1.8.7)
|
|
27
33
|
- Ruby Gems
|
|
28
|
-
- antlr3
|
|
29
|
-
- json
|
|
34
|
+
- antlr3
|
|
35
|
+
- json (using Ruby 1.8.7 only)
|
|
30
36
|
|
|
31
37
|
|
|
32
38
|
To use as a command line
|
data/Rakefile
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.3.
|
|
1
|
+
0.3.18
|