oryx 0.1.0 → 0.1.1
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.md +3 -4
- data/lib/oryx/version.rb +1 -1
- data/oryx.gemspec +1 -1
- metadata +3 -3
data/README.md
CHANGED
@@ -4,7 +4,7 @@ C-Flat to x86 compiler.
|
|
4
4
|
## Progress
|
5
5
|
|
6
6
|
- 20 Feb 13
|
7
|
-
+ Oryx 0.1.
|
7
|
+
+ Oryx 0.1.1
|
8
8
|
+ Lexer complete
|
9
9
|
|
10
10
|
## C-Flat
|
@@ -32,9 +32,8 @@ For more details try
|
|
32
32
|
|
33
33
|
$ oryx -h
|
34
34
|
|
35
|
-
|
36
|
-
|
37
|
-
$ man oryx
|
35
|
+
## See Also
|
36
|
+
`bin/oryx.markdown`
|
38
37
|
|
39
38
|
## Contributing
|
40
39
|
As this is a course project pull requests will be ignored.
|
data/lib/oryx/version.rb
CHANGED
data/oryx.gemspec
CHANGED
@@ -15,7 +15,7 @@ Gem::Specification.new do |gem|
|
|
15
15
|
|
16
16
|
gem.files = `git ls-files`.split($/)
|
17
17
|
gem.files += Dir['man/man?/*.?']
|
18
|
-
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
18
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) unless !f and f["markdown"]}
|
19
19
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
20
20
|
gem.require_paths = ["lib"]
|
21
21
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: oryx
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -150,7 +150,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
150
150
|
version: '0'
|
151
151
|
segments:
|
152
152
|
- 0
|
153
|
-
hash:
|
153
|
+
hash: 2601944800396312341
|
154
154
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
155
155
|
none: false
|
156
156
|
requirements:
|
@@ -159,7 +159,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
159
159
|
version: '0'
|
160
160
|
segments:
|
161
161
|
- 0
|
162
|
-
hash:
|
162
|
+
hash: 2601944800396312341
|
163
163
|
requirements: []
|
164
164
|
rubyforge_project:
|
165
165
|
rubygems_version: 1.8.23
|