ambit 0.10 → 0.10.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. data/History.txt +4 -0
  2. data/README.rdoc +1 -1
  3. data/README.txt +1 -1
  4. data/lib/ambit.rb +1 -1
  5. metadata +23 -7
@@ -1,3 +1,7 @@
1
+ === 0.10.1 / 2011-04-26
2
+
3
+ * Updated repo path -- no functional change.
4
+
1
5
  === 0.10 / 2011-04-26
2
6
 
3
7
  * Add Ambit::unmark! and Ambit::unmark_all!, which can be used to undo the
@@ -1,6 +1,6 @@
1
1
  = ambit
2
2
 
3
- https://github.com/jimwise/ruby/tree/master/ambit
3
+ https://github.com/jimwise/ambit
4
4
 
5
5
  Author:: Jim Wise (mailto:jwise@draga.com)
6
6
  Copyright:: Copyright (c) 2011 Jim Wise
data/README.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  = ambit
2
2
 
3
- https://github.com/jimwise/ruby/tree/master/ambit
3
+ https://github.com/jimwise/ambit
4
4
 
5
5
  Author:: Jim Wise (mailto:jwise@draga.com)
6
6
  Copyright:: Copyright (c) 2011 Jim Wise
@@ -7,7 +7,7 @@
7
7
 
8
8
  module Ambit
9
9
 
10
- VERSION = '0.10'
10
+ VERSION = '0.10.1'
11
11
 
12
12
  # A ChoicesExhausted exception is raised if the outermost choose invocation of
13
13
  # a Generator has run out of choices, indicating that no (more) solutions are possible.
metadata CHANGED
@@ -1,12 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ambit
3
3
  version: !ruby/object:Gem::Version
4
- hash: 31
4
+ hash: 53
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 10
9
- version: "0.10"
9
+ - 1
10
+ version: 0.10.1
10
11
  platform: ruby
11
12
  authors:
12
13
  - Jim Wise
@@ -14,12 +15,27 @@ autorequire:
14
15
  bindir: bin
15
16
  cert_chain: []
16
17
 
17
- date: 2011-09-22 00:00:00 Z
18
+ date: 2012-01-10 00:00:00 Z
18
19
  dependencies:
19
20
  - !ruby/object:Gem::Dependency
20
- name: hoe
21
+ name: rdoc
21
22
  prerelease: false
22
23
  requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ~>
27
+ - !ruby/object:Gem::Version
28
+ hash: 19
29
+ segments:
30
+ - 3
31
+ - 10
32
+ version: "3.10"
33
+ type: :development
34
+ version_requirements: *id001
35
+ - !ruby/object:Gem::Dependency
36
+ name: hoe
37
+ prerelease: false
38
+ requirement: &id002 !ruby/object:Gem::Requirement
23
39
  none: false
24
40
  requirements:
25
41
  - - ~>
@@ -30,7 +46,7 @@ dependencies:
30
46
  - 12
31
47
  version: "2.12"
32
48
  type: :development
33
- version_requirements: *id001
49
+ version_requirements: *id002
34
50
  description: |-
35
51
  This is an all-ruby implementation of choose/fail nondeterministic
36
52
  programming with branch cut, as described in Chapter 22 of Paul Graham's
@@ -64,7 +80,7 @@ files:
64
80
  - lib/ambit.rb
65
81
  - test/test_ambit.rb
66
82
  - .gemtest
67
- homepage: https://github.com/jimwise/ruby/tree/master/ambit
83
+ homepage: https://github.com/jimwise/ambit
68
84
  licenses: []
69
85
 
70
86
  post_install_message:
@@ -94,7 +110,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
94
110
  requirements: []
95
111
 
96
112
  rubyforge_project: ambit
97
- rubygems_version: 1.8.5
113
+ rubygems_version: 1.8.13
98
114
  signing_key:
99
115
  specification_version: 3
100
116
  summary: This is an all-ruby implementation of choose/fail nondeterministic programming with branch cut, as described in Chapter 22 of Paul Graham's <em>On Lisp</em>[1], or Section 4.3 of <em>SICP</em>[2]