stamina-core 0.5.0 → 0.5.1

Sign up to get free protection for your applications and to get access to all the features.
data/CHANGELOG.md CHANGED
@@ -1,4 +1,10 @@
1
- # 0.5.0 / FIX ME
1
+ # 0.5.1 / 2012-02-24
2
+
3
+ * Bugfixes
4
+
5
+ * Fixes external requires in the different gems (no such file to load sinatra)
6
+
7
+ # 0.5.0 / 2012-02-24
2
8
 
3
9
  * Breaking features.
4
10
 
@@ -1 +1,2 @@
1
+ require 'quickl'
1
2
  require_relative 'stamina/core'
@@ -1,5 +1,4 @@
1
1
  require_relative 'version'
2
- require_relative 'loader'
3
2
  require_relative 'errors'
4
3
  require_relative 'ext/math'
5
4
  require_relative 'markable'
@@ -3,7 +3,7 @@ module Stamina
3
3
 
4
4
  MAJOR = 0
5
5
  MINOR = 5
6
- TINY = 0
6
+ TINY = 1
7
7
 
8
8
  def self.to_s
9
9
  [ MAJOR, MINOR, TINY ].join('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: stamina-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2012-02-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: quickl
16
- requirement: &70173945608140 !ruby/object:Gem::Requirement
16
+ requirement: &70326370553740 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,7 +21,7 @@ dependencies:
21
21
  version: 0.4.3
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *70173945608140
24
+ version_requirements: *70326370553740
25
25
  description: ! "Stamina is an automaton and regular inference toolkit initially developped
26
26
  for the \nbaseline of the Stamina Competition (stamina.chefbe.net)."
27
27
  email:
@@ -59,7 +59,6 @@ files:
59
59
  - lib/stamina-core/stamina/engine.rb
60
60
  - lib/stamina-core/stamina/errors.rb
61
61
  - lib/stamina-core/stamina/ext/math.rb
62
- - lib/stamina-core/stamina/loader.rb
63
62
  - lib/stamina-core/stamina/markable.rb
64
63
  - lib/stamina-core/stamina/utils/decorate.rb
65
64
  - lib/stamina-core/stamina/utils.rb
@@ -1,3 +0,0 @@
1
- require "quickl"
2
- require "citrus"
3
- require "sinatra"