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
    
  
  
    
  | $ rails c | |
| /Users/kotamiyake/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/activesupport-5.0.1/lib/active_support/xml_mini.rb:51: warning: constant ::Fixnum is deprecated | |
| /Users/kotamiyake/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/activesupport-5.0.1/lib/active_support/xml_mini.rb:52: warning: constant ::Bignum is deprecated | |
| warning: parser/current is loading parser/ruby24, which recognizes | |
| warning: HEAD-compliant syntax, but you are running 2.4.0. | |
| warning: please see https://github.com/whitequark/parser#compatibility-with-ruby-mri. | |
| /Users/kotamiyake/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/activesupport-5.0.1/lib/active_support/core_ext/numeric/conversions.rb:138: warning: constant ::Fixnum is deprecated | |
| /Users/kotamiyake/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/activejob-5.0.1/lib/active_job/arguments.rb:38: warning: constant ::Fixnum is deprecated | |
| /Users/kotamiyake/.rbenv/versions/2.4.0/lib/ruby/gems/2.4.0/gems/activejob-5.0.1/lib/active_job/arguments.rb:38: warning: constant ::Bignum is d | 
  
    
      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
    
  
  
    
  | config.action_mailer.smtp_settings = { | |
| :address => '', | |
| :port => 587, | |
| :domain => '', | |
| :user_name => '', | |
| :password => '', | |
| :authentication => 'plain', | |
| :enable_starttls_auto => true, | |
| } | 
  
    
      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
    
  
  
    
  | # vendor/bundle/ruby/1.9.1/gems/github_api-0.8.9/lib/github_api/repos.rb | |
| 327 response = if (user_name = params.delete("user")) | |
| 328 get_request("/users/#{user_name}/repos", params) | |
| 329 elsif (org_name = params.delete("org")) | |
| 330 get_request("/orgs/#{org_name}/repos", params) | |
| 331 # elsif authenticated? # コメントアウト | |
| 332 # # For authenticated user # コメントアウト | |
| 333 # get_request("/user/repos", params) # コメントアウト | |
| 334 else | |
| 335 get_request("/repositories", params) | 
  
    
      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
    
  
  
    
  | { | |
| "items": [ | |
| { | |
| "from_tag": "php-frameworks", | |
| "to_tag": "php", | |
| "applied_count": 19, | |
| "last_applied_date": 1359736809, | |
| "creation_date": 1357399675 | |
| }, | |
| { | 
  
    
      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
    
  
  
    
  | diff --git a/lib/git_lib.rb b/lib/git_lib.rb | |
| index f3e3d1b..892103e 100644 | |
| --- a/lib/git_lib.rb | |
| +++ b/lib/git_lib.rb | |
| @@ -1,9 +1,10 @@ | |
| module GitLib | |
| def self.get_all_repositories(github) | |
| repositories = [] | |
| - github.repos.list(:per_page => 100).each_page do |page| | |
| - repositories += page | 
  
    
      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
    
  
  
    
  | %w( | |
| rspec-rails | |
| rb-fsevent | |
| growl | |
| ).each do |pkg| | |
| gem pkg, :group => [:development, :test] | |
| end | |
| %w( | |
| factory_girl_rails | 
  
    
      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
    
  
  
    
  | #!/usr/bin/ruby | |
| require 'net/http' | |
| require 'pit' | |
| config = Pit.get("dyn.value-domain.com", :require => { | |
| "domain" => "your domain in valuedomain", | |
| "password" => "your password in valuedomain" | |
| }) | |
| Net::HTTP.version_1_2 | 
NewerOlder