This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | # The famous Hello World | |
| # Program is trivial in | |
| # Ruby. Superfluous: | |
| # | |
| # * A "main" method | |
| # * Newline | |
| # * Semicolons | |
| # | |
| # Here is the Code: | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | node('ios') { | |
| stage('Prepare') { | |
| checkout scm | |
| } | |
| stage('Unit Test') { | |
| sh 'fastlane test_unit' | |
| } | |
| stage('Build') { | |
| sh 'fastlane develop' | |
| } | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | defmodule StrNext do | |
| @character_ranges [ | |
| {'A', 'Z'}, | |
| {'a', 'z'}, | |
| {'0', '9'} | |
| ] | |
| @characters Enum.map(@character_ranges, fn {a, z} -> | |
| hd(a)..hd(z) | |
| |> Enum.to_list() | |
| end) |