18 lines
		
	
	
		
			434 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			434 B
		
	
	
	
		
			Ruby
		
	
	
	
| require 'rubygems'
 | |
| require 'rubygems/package_task'
 | |
| 
 | |
| spec = Gem::Specification.new do |s| 
 | |
|   s.name = "rconfig"
 | |
|   s.version = "1.0.1"
 | |
|   s.author = "Peter Zotov"
 | |
|   s.email = "whitequark@whitequark.ru"
 | |
|   s.platform = Gem::Platform::RUBY
 | |
|   s.summary = "libconfig bindings"
 | |
|   s.files = [ File.join('ext', 'extconf.rb'), File.join('ext', 'rconfig.c') ].to_a
 | |
|   s.extensions = 'ext/extconf.rb'
 | |
| end
 | |
|  
 | |
| Gem::PackageTask.new(spec) do |pkg|
 | |
| end
 | |
|  
 |