rubypython 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.2.1 2008-08-02
2
+ * 1 Bug Fix
3
+ * Incorrect require fixed
4
+
1
5
  == 0.2.0 2008-08-02
2
6
  * 3 major enhancements
3
7
  * RubyPython can now effectively convert or wrap most types from Python.
data/lib/rubypython.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'rubypython_bridge.so'
2
- require 'wrapper_extension'
2
+ require 'rubypython/wrapper_extensions'
3
3
 
4
4
 
5
5
  =begin rdoc
@@ -2,7 +2,7 @@ module RubyPython
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 2
5
- TINY = 0
5
+ TINY = 1
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
data/website/index.html CHANGED
@@ -43,26 +43,13 @@
43
43
  <h2>Demonstration of usage</h2>
44
44
  <h2>Forum</h2>
45
45
  <p><a href="http://groups.google.com/group/rubypython">http://groups.google.com/group/rubypython</a></p>
46
- <p><span class="caps">TODO</span> &#8211; create Google Group &#8211; rubypython</p>
47
46
  <h2>How to submit patches</h2>
48
47
  <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>
49
48
  <p>You can fetch the source from either:</p>
50
49
  <ul>
51
- <li>rubyforge: <span class="caps">MISSING</span> IN <span class="caps">ACTION</span></li>
50
+ <li>rubyforge: <a href="http://rubyforge.org/scm/?group_id=6737">http://rubyforge.org/scm/?group_id=6737</a></li>
52
51
  </ul>
53
- <p><span class="caps">TODO</span> &#8211; You can not created a RubyForge project, OR have not run <code>rubyforge config</code><br />
54
- yet to refresh your local rubyforge data with this projects&#8217; id information.</p>
55
- <p>When you do this, this message will magically disappear!</p>
56
- <p>Or you can hack website/index.txt and make it all go away!!</p>
57
- <ul>
58
- <li>github: <a href="http://github.com/GITHUB_USERNAME/rubypython/tree/master">http://github.com/GITHUB_USERNAME/rubypython/tree/master</a></li>
59
- </ul>
60
- <pre>git clone git://github.com/GITHUB_USERNAME/rubypython.git</pre>
61
- <p><span class="caps">TODO</span> &#8211; add &#8220;github_username: username&#8221; to ~/.rubyforge/user-config.yml and newgem will reuse it for future projects.</p>
62
- <ul>
63
- <li>gitorious: <a href="git://gitorious.org/rubypython/mainline.git">git://gitorious.org/rubypython/mainline.git</a></li>
64
- </ul>
65
- <pre>git clone git://gitorious.org/rubypython/mainline.git</pre>
52
+ <pre>git clone git://rubyforge.org/rubypython.git</pre>
66
53
  <h3>Build and test instructions</h3>
67
54
  <pre>cd rubypython
68
55
  rake test
data/website/index.txt CHANGED
@@ -21,44 +21,17 @@ h2. Forum
21
21
 
22
22
  "http://groups.google.com/group/rubypython":http://groups.google.com/group/rubypython
23
23
 
24
- TODO - create Google Group - rubypython
25
-
26
24
  h2. How to submit patches
27
25
 
28
26
  Read the "8 steps for fixing other people's code":http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/ and for section "8b: Submit patch to Google Groups":http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/#8b-google-groups, use the Google Group above.
29
27
 
30
28
  You can fetch the source from either:
31
29
 
32
- <% if rubyforge_project_id %>
33
30
 
34
- * rubyforge: "http://rubyforge.org/scm/?group_id=<%= rubyforge_project_id %>":http://rubyforge.org/scm/?group_id=<%= rubyforge_project_id %>
31
+ * rubyforge: "http://rubyforge.org/scm/?group_id=6737":http://rubyforge.org/scm/?group_id=6737
35
32
 
36
33
  <pre>git clone git://rubyforge.org/rubypython.git</pre>
37
34
 
38
- <% else %>
39
-
40
- * rubyforge: MISSING IN ACTION
41
-
42
- TODO - You can not created a RubyForge project, OR have not run <code>rubyforge config</code>
43
- yet to refresh your local rubyforge data with this projects' id information.
44
-
45
- When you do this, this message will magically disappear!
46
-
47
- Or you can hack website/index.txt and make it all go away!!
48
-
49
- <% end %>
50
-
51
- * github: "http://github.com/GITHUB_USERNAME/rubypython/tree/master":http://github.com/GITHUB_USERNAME/rubypython/tree/master
52
-
53
- <pre>git clone git://github.com/GITHUB_USERNAME/rubypython.git</pre>
54
-
55
-
56
- TODO - add "github_username: username" to ~/.rubyforge/user-config.yml and newgem will reuse it for future projects.
57
-
58
-
59
- * gitorious: "git://gitorious.org/rubypython/mainline.git":git://gitorious.org/rubypython/mainline.git
60
-
61
- <pre>git clone git://gitorious.org/rubypython/mainline.git</pre>
62
35
 
63
36
  h3. Build and test instructions
64
37
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubypython
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Zach Raines