mirror of
				https://github.com/rest-client/rest-client.git
				synced 2022-11-09 13:49:40 -05:00 
			
		
		
		
	- Make rdoc a development dependency. - Allow any rdoc through 4.x. - Relax version contstraints on ffi and netrc.
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			557 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			557 B
		
	
	
	
		
			Ruby
		
	
	
	
	
	
#
 | 
						|
# Gemspec for Windows platforms. We can't put these in the main gemspec because
 | 
						|
# it results in bundler platform hell when trying to build the gem.
 | 
						|
#
 | 
						|
# Set $BUILD_PLATFORM when calling gem build with this gemspec to build for
 | 
						|
# Windows platforms like x86-mingw32.
 | 
						|
#
 | 
						|
s = eval(File.read(File.join(File.dirname(__FILE__), 'rest-client.gemspec')))
 | 
						|
 | 
						|
platform = ENV['BUILD_PLATFORM'] || RUBY_PLATFORM
 | 
						|
 | 
						|
case platform
 | 
						|
when /(mingw32|mswin32)/
 | 
						|
  # ffi is needed for RestClient::Windows::RootCerts
 | 
						|
  s.add_dependency('ffi', '~> 1.9')
 | 
						|
  s.platform = platform
 | 
						|
end
 | 
						|
 | 
						|
s
 |