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
    
  
  
    
  | source "http://rubygems.org" | |
| gem "middleman", "~>3.0.0.beta.2", :github => "middleman/middleman" | 
  
    
      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
    
  
  
    
  | <body> | |
| <header> | |
| <% if user_signed_in? %> | |
| Hola <%= current_user.name %>, como estás? | |
| <% else %> | |
| Hola anónimo! | |
| <% end %> | |
| </header> | 
  
    
      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
    
  
  
    
  | [master] [ruby-1.9.2-p180@titi-rails31] ckozus@Feather:~/dev/rails/titi$ cat .git/config | |
| [core] | |
| repositoryformatversion = 0 | |
| filemode = true | |
| bare = false | |
| logallrefupdates = true | |
| ignorecase = true | |
| [remote "origin"] | |
| fetch = +refs/heads/*:refs/remotes/origin/* | |
| url = [email protected]:insignia4u/titi.git | 
  
    
      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
    
  
  
    
  | class BlackHoleStore | |
| def logger | |
| Rails.logger | |
| end | |
| def fetch( *args ) | |
| yield | |
| end | |
| def read( *args ) | 
  
    
      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
    
  
  
    
  | Uncaught exception from servlet | |
| java.lang.NoSuchMethodError: org.jruby.RubyInstanceConfig.setUpdateNativeENVEnabled(Z)V | |
| at org.jruby.rack.DefaultRackApplicationFactory.createRuntimeConfig(DefaultRackApplicationFactory.java:161) | |
| at org.jruby.rack.DefaultRackApplicationFactory.init(DefaultRackApplicationFactory.java:43) | |
| at org.jruby.rack.SharedRackApplicationFactory.init(SharedRackApplicationFactory.java:31) | |
| at org.jruby.rack.RackServletContextListener.contextInitialized(RackServletContextListener.java:48) | |
| at org.mortbay.jetty.handler.ContextHandler.startContext(ContextHandler.java:548) | |
| at org.mortbay.jetty.servlet.Context.startContext(Context.java:136) | |
| at org.mortbay.jetty.webapp.WebAppContext.startContext(WebAppContext.java:1250) | |
| at org.mortbay.jetty.handler.ContextHandler.doStart(ContextHandler.java:517) | 
  
    
      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
    
  
  
    
  | def textilize_description | |
| if changed.include?('description') | |
| self.description_html = textilize(self.description) | |
| end | |
| end | |
| def textilize(text) | |
| if text.blank? | |
| "" | 
  
    
      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
    
  
  
    
  | if RUBY_VERSION < '1.8.7' | |
| class Array | |
| alias original_index index | |
| def index *args | |
| if args.length > 0 | |
| return original_index(*args) | |
| else | |
| pos = nil | |
| each_with_index do |element, i| | 
  
    
      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
    
  
  
    
  | "location"=>{"address"=>"Abou Al Alaa Al Maarri, Jordan", "sw_lng"=>"35.942492369708475", "latitude"=>"31.955932", "neighborhood"=>"", "sw_lat"=>"31.9547762197085", "district"=>"", "ne_lat"=>"31.9574741802915", "city"=>"", "parent_hash"=>{"address"=>"Amman, Jordan", "neighborhood"=>"", "latitude"=>"31.9565783", "sw_lng"=>"35.92968769999993", "district"=>"", "sw_lat"=>"31.9471108", "city"=>"Amman", "ne_lat"=>"31.9660448", "longitude"=>"35.945695099999966", "state"=>"Amman", "accuracy"=>"3", "ne_lng"=>"35.9617025", "country"=>"Jordan", "level"=>"locality"}, "longitude"=>"35.94400280000002", "accuracy"=>"3", "state"=>"Amman", "status"=>"OK", "ne_lng"=>"35.94519033029155", "level"=>"pinpointed", "country"=>"Jordan"}} | 
  
    
      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
    
  
  
    
  | subdomain = 'a17' | |
| project_id = '36176' # krrb | |
| username = 'ckozus' | |
| password = 'secret' | |
| tickets = `git branch -r --no-merged` | |
| tickets.split("\n").each do |ticket_str| | |
| if ticket_str =~ /ticket-(\d+)/ | |
| ticket_no = $1 | 
  
    
      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
    
  
  
    
  | public class Graphics extends Activity { | |
| @Override | |
| public void onCreate(Bundle savedInstanceState) { | |
| super.onCreate(savedInstanceState); | |
| setContentView(new GraphicsView(this)); | |
| } | |
| static public class GraphicsView extends View { | |
| public GraphicsView(Context context) { | |
| super(context); |