Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jarib committed Sep 9, 2011
0 parents commit 7790327
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
*.gem
.bundle
Gemfile.lock
pkg/*
4 changes: 4 additions & 0 deletions Gemfile
@@ -0,0 +1,4 @@
source "http://rubygems.org"

# Specify your gem's dependencies in nativedriver.gemspec
gemspec
1 change: 1 addition & 0 deletions Rakefile
@@ -0,0 +1 @@
require 'bundler/gem_tasks'
5 changes: 5 additions & 0 deletions lib/nativedriver.rb
@@ -0,0 +1,5 @@
require "nativedriver/version"

module NativeDriver
# Your code goes here...
end
3 changes: 3 additions & 0 deletions lib/nativedriver/version.rb
@@ -0,0 +1,3 @@
module NativeDriver
VERSION = "0.0.1"
end
20 changes: 20 additions & 0 deletions nativedriver.gemspec
@@ -0,0 +1,20 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "nativedriver/version"

Gem::Specification.new do |s|
s.name = "nativedriver"
s.version = NativeDriver::VERSION
s.authors = ["Jari Bakken"]
s.email = ["jari.bakken@gmail.com"]
s.homepage = "http://code.google.com/p/nativedriver/"
s.summary = %q{Native mobile application GUI automation}
s.description = %q{Ruby bindings for NativeDriver}

s.rubyforge_project = "nativedriver"

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end

0 comments on commit 7790327

Please sign in to comment.