nudge 0.2.4 → 0.2.5
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/Rakefile +2 -1
- data/VERSION +1 -1
- data/lib/nudge.rb +5 -1
- data/spec/nudge_spec.rb +0 -0
- metadata +4 -3
data/Rakefile
CHANGED
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.5
|
data/lib/nudge.rb
CHANGED
|
@@ -26,4 +26,8 @@ Dir.glob(File.dirname(__FILE__) + '/instructions/name/*') {|file| require file}
|
|
|
26
26
|
|
|
27
27
|
Dir.glob(File.dirname(__FILE__) + '/instructions/conversion/*') {|file| require file}
|
|
28
28
|
|
|
29
|
-
include NudgeType
|
|
29
|
+
include NudgeType
|
|
30
|
+
|
|
31
|
+
def Nudge.gem_root
|
|
32
|
+
File.dirname(__FILE__) + '/..'
|
|
33
|
+
end
|
data/spec/nudge_spec.rb
ADDED
|
File without changes
|
metadata
CHANGED
|
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
|
5
5
|
segments:
|
|
6
6
|
- 0
|
|
7
7
|
- 2
|
|
8
|
-
-
|
|
9
|
-
version: 0.2.
|
|
8
|
+
- 5
|
|
9
|
+
version: 0.2.5
|
|
10
10
|
platform: ruby
|
|
11
11
|
authors:
|
|
12
12
|
- Bill Tozier
|
|
@@ -16,7 +16,7 @@ autorequire:
|
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
18
|
|
|
19
|
-
date: 2010-04-
|
|
19
|
+
date: 2010-04-30 00:00:00 -04:00
|
|
20
20
|
default_executable: nudge
|
|
21
21
|
dependencies:
|
|
22
22
|
- !ruby/object:Gem::Dependency
|
|
@@ -595,6 +595,7 @@ test_files:
|
|
|
595
595
|
- spec/interpreter/stack_spec.rb
|
|
596
596
|
- spec/interpreter/types_spec.rb
|
|
597
597
|
- spec/interpreter/value_point_spec.rb
|
|
598
|
+
- spec/nudge_spec.rb
|
|
598
599
|
- spec/parsers/nudge_program_parser_spec.rb
|
|
599
600
|
- spec/spec_helper.rb
|
|
600
601
|
- spec/support/shared_examples.rb
|