Skip to content
This repository has been archived by the owner on Jan 11, 2022. It is now read-only.

Commit

Permalink
Prepping for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
halostatue committed Mar 18, 2011
1 parent 468beaf commit 0ee4196
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion Manifest.txt
Expand Up @@ -26,13 +26,13 @@ lib/rubypython/pythonerror.rb
lib/rubypython/pythonexec.rb
lib/rubypython/rubypyproxy.rb
lib/rubypython/type.rb
lib/rubypython/version.rb
spec/basic_spec.rb
spec/callback_spec.rb
spec/conversion_spec.rb
spec/legacy_spec.rb
spec/pymainclass_spec.rb
spec/pyobject_spec.rb
spec/python_helpers/basics.py
spec/python_helpers/objects.py
spec/pythonerror_spec.rb
spec/refcnt_spec.rb
Expand Down
25 changes: 13 additions & 12 deletions Rakefile
Expand Up @@ -8,26 +8,27 @@ Hoe.plugin :gemspec
Hoe.plugin :git
Hoe.plugin :hg

Hoe.spec 'rubypython' do
Hoe.spec 'rubypython' do |spec|
spec.rubyforge_name = spec.name

developer('Steeve Morin', 'swiuzzz+rubypython@gmail.com')
developer('Austin Ziegler', 'austin@rubyforge.org')
developer('Zach Raines', 'raineszm+rubypython@gmail.com')

self.rubyforge_name = 'rubypython'
self.remote_rdoc_dir = 'rdoc'
rsync_args << ' --exclude=statsvn/'
spec.remote_rdoc_dir = 'rdoc'
spec.rsync_args << ' --exclude=statsvn/'

self.history_file = 'History.rdoc'
self.readme_file = 'README.rdoc'
self.extra_rdoc_files = FileList["*.rdoc"].to_a
spec.history_file = 'History.rdoc'
spec.readme_file = 'README.rdoc'
spec.extra_rdoc_files = FileList["*.rdoc"].to_a

self.extra_deps << ['ffi', '~> 1.0.7']
self.extra_deps << ['blankslate', '>= 2.1.2.3']
spec.extra_deps << ['ffi', '~> 1.0.7']
spec.extra_deps << ['blankslate', '>= 2.1.2.3']

self.extra_dev_deps << ['rspec', '~> 2.0']
self.extra_dev_deps << ['tilt', '~> 1.0']
spec.extra_dev_deps << ['rspec', '~> 2.0']
spec.extra_dev_deps << ['tilt', '~> 1.0']

self.spec_extras[:requirements] = [ "Python, ~> 2.4" ]
spec.spec_extras[:requirements] = [ "Python, ~> 2.4" ]
end

namespace :website do
Expand Down

0 comments on commit 0ee4196

Please sign in to comment.