most 0.7.4 → 0.7.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/History.txt +5 -0
- data/Rakefile +2 -1
- data/lib/most/submissions/cpp_sample.rb +1 -1
- data/lib/most.rb +3 -1
- metadata +1 -1
data/History.txt
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
== 0.7.4 2009-26-12
|
|
2
|
+
* Now it is possible to load the Most library in order to get an ability to load serialized reports
|
|
3
|
+
require 'most'
|
|
4
|
+
report = YAML.load_file('report.yml')
|
|
5
|
+
|
|
1
6
|
== 0.7.4 2009-26-11
|
|
2
7
|
* Fixed minor Gem problems
|
|
3
8
|
* The "Numeric" class was extended with the following useful methods for the "MemoryOut" module:
|
data/Rakefile
CHANGED
|
@@ -29,9 +29,10 @@ Hoe.plugin :newgem
|
|
|
29
29
|
# Generate all the Rake tasks
|
|
30
30
|
# Run 'rake -T' to see list of generated tasks (from gem root directory)
|
|
31
31
|
$hoe = Hoe.spec Most::UNIX_NAME do
|
|
32
|
+
self.version = Most::VERSION
|
|
32
33
|
self.developer Most::AUTHOR, Most::EMAIL
|
|
33
|
-
self.post_install_message = File.read('PostInstall.txt')
|
|
34
34
|
|
|
35
|
+
self.post_install_message = File.read('PostInstall.txt')
|
|
35
36
|
self.readme_file = 'README.txt'
|
|
36
37
|
|
|
37
38
|
self.extra_deps = [['sys-proctable', '>= 0.9.0'],
|
|
@@ -3,7 +3,7 @@ submission do
|
|
|
3
3
|
|
|
4
4
|
entities :source_file => path('main.cpp'), :executable => path('main.exe')
|
|
5
5
|
|
|
6
|
-
options :tests => {:report => {:differences => true, :time => true, :specs =>
|
|
6
|
+
options :tests => {:report => {:differences => true, :time => true, :specs => false},
|
|
7
7
|
:steps => {:break => {:unsuccessful => true}}}
|
|
8
8
|
|
|
9
9
|
YAML.load_file('tests.yml').each_with_index do |specs, i|
|
data/lib/most.rb
CHANGED
|
@@ -33,10 +33,12 @@ require 'most/helpers/hash'
|
|
|
33
33
|
|
|
34
34
|
require 'most/interfaces/meta_programmable'
|
|
35
35
|
|
|
36
|
+
require 'most/structures/submission'
|
|
37
|
+
|
|
36
38
|
module Most
|
|
37
39
|
FULL_NAME = 'Most, the Core'
|
|
38
40
|
UNIX_NAME = 'most'
|
|
39
|
-
VERSION = '0.7.
|
|
41
|
+
VERSION = '0.7.5'
|
|
40
42
|
|
|
41
43
|
AUTHOR = 'Toksaitov Dmitrii Alexandrovich'
|
|
42
44
|
|