Skip to content

Commit 16e086b

Browse files
committedJun 6, 2012
skeleton
0 parents  commit 16e086b

File tree

11 files changed

+87
-0
lines changed

11 files changed

+87
-0
lines changed
 

‎.gitignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.gem
2+
.bundle
3+
Gemfile.lock
4+
pkg/*

‎Gemfile

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
source "http://rubygems.org"
2+
3+
# Specify your gem's dependencies in UI.gemspec
4+
gemspec

‎Rakefile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
require "bundler/gem_tasks"
2+
include Rake::DSL
3+
4+
task :default => [:compile, :test]
5+
gem 'rake-compiler', '>= 0.4.1'
6+
require 'rake/extensiontask'
7+
Rake::ExtensionTask.new('ui')
8+

‎ext/ui/extconf.rb

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
require 'mkmf'
2+
$CFLAGS = "#{$CFLAGS} -Werror -I/usr/include/YaST2"
3+
4+
unless have_library('yui')
5+
STDERR.puts "Cannot find libyui"
6+
STDERR.puts "Is libyui-devel installed ?"
7+
exit 1
8+
end
9+
10+
find_header 'YUI.h', '/usr/include/YaST2/yui'
11+
create_makefile('ui')

‎ext/ui/ui.c

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#include "ui.h"
2+
3+
void init_UI() {
4+
5+
}

‎ext/ui/ui.h

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
#include <ruby.h>

‎lib/ui.rb

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
require "UI/version"
2+
3+
module UI
4+
# Your code goes here...
5+
end

‎lib/ui/version.rb

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module UI
2+
VERSION = "0.0.1"
3+
end

‎test/helper.rb

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
require 'test/unit'
2+
3+

‎test/test_basic.rb

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
require File.expand_path(File.join(File.dirname(__FILE__), 'helper'))
2+
require 'pp'
3+
4+
class BasicTest < Test::Unit::Testcase
5+
6+
def setup
7+
raise "Hello"
8+
end
9+
10+
def test_hello
11+
raise "Hello"
12+
end
13+
14+
15+
end

‎ui.gemspec

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# -*- encoding: utf-8 -*-
2+
$:.push File.expand_path("../lib", __FILE__)
3+
require "ui/version"
4+
5+
Gem::Specification.new do |s|
6+
s.name = "ui"
7+
s.version = UI::VERSION
8+
s.authors = ["Duncan Mac-Vicar P."]
9+
s.email = ["dmacvicar@suse.de"]
10+
s.homepage = ""
11+
s.summary = %q{TODO: Write a gem summary}
12+
s.description = %q{TODO: Write a gem description}
13+
14+
s.rubyforge_project = "UI"
15+
16+
s.files = `git ls-files`.split("\n")
17+
s.test_files = `git ls-files -- {test,spec,features}/test_*`.split("\n")
18+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
19+
s.require_paths = ["lib"]
20+
21+
# specify any dependencies here; for example:
22+
# s.add_development_dependency "rspec"
23+
# s.add_runtime_dependency "rest-client"
24+
s.add_development_dependency("rake-compiler", [">= 0.8"])
25+
s.extensions << 'ext/ui/extconf.rb'
26+
27+
end

0 commit comments

Comments
 (0)
Please sign in to comment.