rubypython 0.5.0 → 0.5.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.
Files changed (5) hide show
  1. data/.hgtags +1 -0
  2. data/History.rdoc +1 -1
  3. data/Rakefile +1 -0
  4. data/lib/rubypython.rb +1 -1
  5. metadata +25 -9
data/.hgtags CHANGED
@@ -5,3 +5,4 @@
5
5
  fe1fe7136461a92e4012cd7c8f23c8c446d4fbc1 v0.2.11
6
6
  746fffb7ee3db61278d592c303939daeb6a17a03 v0.3.1
7
7
  e61cfeb18e14c8d0d86e68459bf7957535c4452b v0.3.2
8
+ 0e18cecdd4b7d6261a708a9b60b80a4794efac89 r0.5.0
data/History.rdoc CHANGED
@@ -1,4 +1,4 @@
1
- === 0.5.0 / 2011-03-dd
1
+ === 0.5.1 / 2011-03-17
2
2
  * Major Enhancements:
3
3
  * Procs and methods can be passed to Python. [raineszm]
4
4
  * Python to Ruby inheritance: A Ruby class can inherit from a Python class
data/Rakefile CHANGED
@@ -7,6 +7,7 @@ Hoe.plugin :doofus
7
7
  Hoe.plugin :gemspec
8
8
  Hoe.plugin :git
9
9
  Hoe.plugin :hg
10
+ Hoe.plugin :rubyforge
10
11
 
11
12
  Hoe.spec 'rubypython' do |spec|
12
13
  spec.rubyforge_name = spec.name
data/lib/rubypython.rb CHANGED
@@ -15,7 +15,7 @@
15
15
  # puts cPickle.dumps("RubyPython is awesome!").rubify
16
16
  # RubyPython.stop
17
17
  module RubyPython
18
- VERSION = '0.5.0' #:nodoc:
18
+ VERSION = '0.5.1' #:nodoc:
19
19
 
20
20
  # Do not load the FFI interface by default. Wait until the user asks for
21
21
  # it.
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubypython
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
4
+ hash: 9
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 5
9
- - 0
10
- version: 0.5.0
9
+ - 1
10
+ version: 0.5.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Steeve Morin
@@ -54,9 +54,25 @@ dependencies:
54
54
  type: :runtime
55
55
  version_requirements: *id002
56
56
  - !ruby/object:Gem::Dependency
57
- name: rspec
57
+ name: rubyforge
58
58
  prerelease: false
59
59
  requirement: &id003 !ruby/object:Gem::Requirement
60
+ none: false
61
+ requirements:
62
+ - - ">="
63
+ - !ruby/object:Gem::Version
64
+ hash: 7
65
+ segments:
66
+ - 2
67
+ - 0
68
+ - 4
69
+ version: 2.0.4
70
+ type: :development
71
+ version_requirements: *id003
72
+ - !ruby/object:Gem::Dependency
73
+ name: rspec
74
+ prerelease: false
75
+ requirement: &id004 !ruby/object:Gem::Requirement
60
76
  none: false
61
77
  requirements:
62
78
  - - ~>
@@ -67,11 +83,11 @@ dependencies:
67
83
  - 0
68
84
  version: "2.0"
69
85
  type: :development
70
- version_requirements: *id003
86
+ version_requirements: *id004
71
87
  - !ruby/object:Gem::Dependency
72
88
  name: tilt
73
89
  prerelease: false
74
- requirement: &id004 !ruby/object:Gem::Requirement
90
+ requirement: &id005 !ruby/object:Gem::Requirement
75
91
  none: false
76
92
  requirements:
77
93
  - - ~>
@@ -82,11 +98,11 @@ dependencies:
82
98
  - 0
83
99
  version: "1.0"
84
100
  type: :development
85
- version_requirements: *id004
101
+ version_requirements: *id005
86
102
  - !ruby/object:Gem::Dependency
87
103
  name: hoe
88
104
  prerelease: false
89
- requirement: &id005 !ruby/object:Gem::Requirement
105
+ requirement: &id006 !ruby/object:Gem::Requirement
90
106
  none: false
91
107
  requirements:
92
108
  - - ">="
@@ -98,7 +114,7 @@ dependencies:
98
114
  - 1
99
115
  version: 2.9.1
100
116
  type: :development
101
- version_requirements: *id005
117
+ version_requirements: *id006
102
118
  description: |-
103
119
  RubyPython is a bridge between the Ruby and Python interpreters. It embeds a
104
120
  running Python interpreter in the Ruby application's process using FFI and