Sha256: 28e6d836f717eb03ced98bb9dc88a05ffba635678deab1b45db8b3f5c5a5ec75
Contents?: true
Size: 1.34 KB
Versions: 4
Compression:
Stored size: 1.34 KB
Contents
# encoding: utf-8 require 'rubygems' require 'rake' require 'jeweler' Jeweler::Tasks.new do |gem| # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options gem.name = "rubabel" gem.homepage = "http://github.com/princelab/rubabel" gem.license = "MIT" gem.summary = %Q{Ruby interface to the OpenBabel ruby bindings similar to pybel} gem.description = %Q{Ruby interface to the openbabel ruby bindings (or the openbabel gem). The interface attempts to be a ruby-ish analogue of pybel.} gem.email = "jtprince@gmail.com" gem.authors = ["John T. Prince"] [ ["openbabel", "~> 2.3.1.2"], ["andand", "~> 1.3.3"], ["mini_magick", "~> 3.4"] ].each do |args| gem.add_dependency(*args) end [ ["rspec", "~> 2.8.0"], ["rdoc", "~> 3.12"], ["jeweler", "~> 1.8.3"] ].each do |args| gem.add_development_dependency(*args) end end Jeweler::RubygemsDotOrgTasks.new require 'rspec/core' require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) do |spec| spec.pattern = FileList['spec/**/*_spec.rb'] end task :default => :spec require 'rdoc/task' Rake::RDocTask.new do |rdoc| version = File.exist?('VERSION') ? File.read('VERSION') : "" rdoc.rdoc_dir = 'rdoc' rdoc.title = "rubabel #{version}" rdoc.rdoc_files.include('README*') rdoc.rdoc_files.include('lib/**/*.rb') end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
rubabel-0.2.2 | Rakefile |
rubabel-0.2.1 | Rakefile |
rubabel-0.2.0 | Rakefile |
rubabel-0.1.6 | Rakefile |