| 
									
										
										
										
											2015-11-16 23:18:31 +08:00
										 |  |  | class Pathname | 
					
						
							|  |  |  |   def cp(dst) | 
					
						
							| 
									
										
										
										
											2016-07-16 22:16:13 +01:00
										 |  |  |     odeprecated "Pathname#cp", "FileUtils.cp" | 
					
						
							| 
									
										
										
										
											2015-11-16 23:18:31 +08:00
										 |  |  |     if file? | 
					
						
							|  |  |  |       FileUtils.cp to_s, dst | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |       FileUtils.cp_r to_s, dst | 
					
						
							|  |  |  |     end | 
					
						
							|  |  |  |     dst | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   def chmod_R(perms) | 
					
						
							| 
									
										
										
										
											2016-07-16 22:16:13 +01:00
										 |  |  |     odeprecated "Pathname#chmod_R", "FileUtils.chmod_R" | 
					
						
							| 
									
										
										
										
											2015-11-16 23:18:31 +08:00
										 |  |  |     require "fileutils" | 
					
						
							|  |  |  |     FileUtils.chmod_R perms, to_s | 
					
						
							|  |  |  |   end | 
					
						
							|  |  |  | end |