Sha256: 872e4c22e509ddb5e140f293e195f889354d23ce3541449a7f67926fa9a568f4
Contents?: true
Size: 1.4 KB
Versions: 5
Compression:
Stored size: 1.4 KB
Contents
require 'rubygems' require 'rake' begin require 'jeweler' Jeweler::Tasks.new do |gem| gem.name = "rautomation" gem.summary = %Q{Automate windows and their controls through user-friendly API with Ruby} gem.description = %Q{RAutomation is a small and easy to use library for helping out to automate windows and their controls for automated testing. RAutomation provides: * Easy to use and user-friendly API (inspired by Watir http://www.watir.com) * Cross-platform compatibility * Easy extensibility - with small scripting effort it's possible to add support for not yet supported platforms or technologies} gem.email = "jarmo.p@gmail.com" gem.homepage = "http://github.com/jarmo/RAutomation" gem.authors = ["Jarmo Pertman"] gem.add_development_dependency "rspec", "~>2.3" ignored_files = [] ignored_files << ".gitignore" << ".gemspec" << "features" << "IAccessibleDLL.sdf" gem.files = `git ls-files`.strip.split($/).delete_if {|f| f =~ Regexp.union(*ignored_files)} end Jeweler::GemcutterTasks.new rescue LoadError puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler" end require 'rspec/core/rake_task' RSpec::Core::RakeTask.new(:spec) RSpec::Core::RakeTask.new(:rcov) do |spec| spec.rcov = true end task :spec => :check_dependencies task :default => :spec require 'yard' YARD::Rake::YardocTask.new
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
rautomation-0.6.3 | Rakefile |
rautomation-0.6.2 | Rakefile |
rautomation-0.6.1 | Rakefile |
rautomation-0.6.0 | Rakefile |
rautomation-0.5.1 | Rakefile |