rubypython 0.2.9 → 0.2.10

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 CHANGED
@@ -1,3 +1,6 @@
1
+ == 0.2.10 2010-07-08
2
+ * Bug Fixes
3
+ * Made some changes to how the native extension is configured and build.
1
4
  == 0.2.9 2009-10-19
2
5
  * Minor Enhancements
3
6
  * Updated the C code to make it cleaner, more readable, and more maintainable.
data/README.txt CHANGED
@@ -24,6 +24,7 @@
24
24
  == REQUIREMENTS:
25
25
 
26
26
  * Python >=2.4, < 3.0
27
+ * Ruby >=1.8.7
27
28
 
28
29
  Note: Rubypython has been test on Mac OS 10.5.x and 10.6.1 as well
29
30
  as Ubuntu Jaunty 9.04.
@@ -27,10 +27,11 @@ if(!system("which python-config"))
27
27
  exit -1
28
28
  end
29
29
 
30
- unless find_library("python2.6",nil)||find_library("python2.5",nil)||find_library("python2.4",nil)
31
- puts "Could not find python libraries"
32
- exit -1
33
- end
30
+ #unless find_library("python2.6",nil)||find_library("python2.5",nil)||find_library("python2.4",nil)
31
+ # puts "Could not find python libraries"
32
+ # exit -1
33
+ #end
34
+ $LDFLAGS << " " + `python-config --ldflags`
34
35
 
35
36
  if RUBY_VERSION=~/1\.9/ then
36
37
  puts "Building for Ruby 1.9"
data/lib/rubypython.rb CHANGED
@@ -1,4 +1,4 @@
1
- require 'rubypython_bridge.so'
1
+ require 'rubypython_bridge'
2
2
  require 'rubypython/wrapper_extensions'
3
3
 
4
4
 
@@ -2,7 +2,7 @@ module RubyPython
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 2
5
- TINY = 9
5
+ TINY = 10
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
Binary file
data/website/index.html CHANGED
@@ -33,7 +33,7 @@
33
33
  <h1>rubypython</h1>
34
34
  <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/rubypython"; return false'>
35
35
  <p>Get Version</p>
36
- <a href="http://rubyforge.org/projects/rubypython" class="numbers">0.2.8</a>
36
+ <a href="http://rubyforge.org/projects/rubypython" class="numbers">0.2.9</a>
37
37
  </div>
38
38
  <h2>Is it in active development?</h2>
39
39
  The short answer: No. I started rubypython a couple of years
@@ -46,8 +46,6 @@ still come back now and again to tinker with the project.
46
46
  Nonetheless, I am always happy to help debug the code if a
47
47
  problem should arise. So don&#8217;t hesitate to contact me if you
48
48
  have trouble.
49
- Also, should anyone wish to take on the main drive of the
50
- project and move forward with it, send me an email and we&#8217;ll talk.
51
49
  <h2>What</h2>
52
50
  <p>RubyPython is a C bridge between Ruby and Python with a Ruby interface. It&#8217;s aim is to make the power of the Python&#8217;s great standard library available to Ruby programmers from within Ruby.</p>
53
51
  <p></p>
@@ -63,9 +61,6 @@ To install execute the following:
63
61
  <h2>How to submit patches</h2>
64
62
  <p>Read the <a href="http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/">8 steps for fixing other people&#8217;s code</a> and for section <a href="http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/#8b-google-groups">8b: Submit patch to Google Groups</a>, use the Google Group above.</p>
65
63
  <p>You can fetch the source from:</p>
66
- <p><a href="http://rubyforge.org/scm/?group_id=6737">http://rubyforge.org/scm/?group_id=6737</a></p>
67
- <pre>git clone git://rubyforge.org/rubypython.git</pre>
68
- <p>or pick it up from github (it&#8217;s a mirror)</p>
69
64
  <pre> git clone git://github.org/sentient6/rubypython.git</pre>
70
65
  <h3>Build and test instructions</h3>
71
66
  <pre>cd rubypython
@@ -76,7 +71,7 @@ rake install_gem</pre>
76
71
  <h2>Contact</h2>
77
72
  <p>Comments are welcome. Send an email to <a href="mailto:raineszm+rubypython@gmail.com">Zach Raines</a> email via the <a href="http://groups.google.com/group/rubypython">forum</a></p>
78
73
  <p class="coda">
79
- <a href="mailto:achatesavc+rubypython@gmail.com">Zach Raines</a>, 8th October 2009<br>
74
+ <a href="mailto:achatesavc+rubypython@gmail.com">Zach Raines</a>, 22nd April 2010<br>
80
75
  Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
81
76
  </p>
82
77
  </div>
data/website/index.txt CHANGED
@@ -13,9 +13,6 @@ h2. Is it in active development?
13
13
  problem should arise. So don't hesitate to contact me if you
14
14
  have trouble.
15
15
 
16
- Also, should anyone wish to take on the main drive of the
17
- project and move forward with it, send me an email and we'll talk.
18
-
19
16
  h2. What
20
17
 
21
18
  RubyPython is a C bridge between Ruby and Python with a Ruby interface. It's aim is to make the power of the Python's great standard library available to Ruby programmers from within Ruby.
@@ -47,12 +44,6 @@ Read the "8 steps for fixing other people's code":http://drnicwilliams.com/2007/
47
44
 
48
45
  You can fetch the source from:
49
46
 
50
- "http://rubyforge.org/scm/?group_id=6737":http://rubyforge.org/scm/?group_id=6737
51
-
52
- <pre>git clone git://rubyforge.org/rubypython.git</pre>
53
-
54
- or pick it up from github (it's a mirror)
55
-
56
47
  <pre> git clone git://github.org/sentient6/rubypython.git</pre>
57
48
 
58
49
 
metadata CHANGED
@@ -1,7 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubypython
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.9
4
+ hash: 3
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 2
9
+ - 10
10
+ version: 0.2.10
5
11
  platform: ruby
6
12
  authors:
7
13
  - Zach Raines
@@ -9,19 +15,41 @@ autorequire:
9
15
  bindir: bin
10
16
  cert_chain: []
11
17
 
12
- date: 2009-10-19 00:00:00 -04:00
18
+ date: 2010-07-08 00:00:00 -04:00
13
19
  default_executable:
14
20
  dependencies:
15
21
  - !ruby/object:Gem::Dependency
16
- name: hoe
22
+ name: rubyforge
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ hash: 7
30
+ segments:
31
+ - 2
32
+ - 0
33
+ - 4
34
+ version: 2.0.4
17
35
  type: :development
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
36
+ version_requirements: *id001
37
+ - !ruby/object:Gem::Dependency
38
+ name: hoe
39
+ prerelease: false
40
+ requirement: &id002 !ruby/object:Gem::Requirement
41
+ none: false
20
42
  requirements:
21
43
  - - ">="
22
44
  - !ruby/object:Gem::Version
23
- version: 2.3.3
24
- version:
45
+ hash: 21
46
+ segments:
47
+ - 2
48
+ - 6
49
+ - 1
50
+ version: 2.6.1
51
+ type: :development
52
+ version_requirements: *id002
25
53
  description: A bridge between ruby and python
26
54
  email:
27
55
  - achatesavc+rubypython@gmail.com
@@ -99,6 +127,8 @@ files:
99
127
  - website/template.html.erb
100
128
  has_rdoc: true
101
129
  homepage: http://rubypython.rubyforge.org
130
+ licenses: []
131
+
102
132
  post_install_message: |+
103
133
 
104
134
  For more information on RubyPython, see http://rubypython.rubyforge.org
@@ -113,28 +143,35 @@ rdoc_options:
113
143
  - README.txt
114
144
  require_paths:
115
145
  - lib
146
+ - ext/rubypyapi
116
147
  - ext/rubypython_bridge
117
148
  required_ruby_version: !ruby/object:Gem::Requirement
149
+ none: false
118
150
  requirements:
119
151
  - - ">="
120
152
  - !ruby/object:Gem::Version
153
+ hash: 3
154
+ segments:
155
+ - 0
121
156
  version: "0"
122
- version:
123
157
  required_rubygems_version: !ruby/object:Gem::Requirement
158
+ none: false
124
159
  requirements:
125
160
  - - ">="
126
161
  - !ruby/object:Gem::Version
162
+ hash: 3
163
+ segments:
164
+ - 0
127
165
  version: "0"
128
- version:
129
166
  requirements:
130
167
  - Python, ~>2.4
131
168
  rubyforge_project: rubypython
132
- rubygems_version: 1.3.1
169
+ rubygems_version: 1.3.7
133
170
  signing_key:
134
- specification_version: 2
171
+ specification_version: 3
135
172
  summary: A bridge between ruby and python
136
173
  test_files:
137
- - test/test_rubypython.rb
138
174
  - test/test_helper.rb
139
- - test/test_session.rb
175
+ - test/test_rubypython.rb
140
176
  - test/test_rubypython_bridge_extn.rb
177
+ - test/test_session.rb