Bundler::GemNotFound: Could not find jumpup-heroku-0.0.1.gem for installation
An error occurred while installing jumpup-heroku (0.0.1), and Bundler cannot continue.
Make sure that `gem install jumpup-heroku -v '0.0.1'` succeeds before bundling.
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
| * [Features](#features) | |
| * [Key Bindings](#key-bindings) | |
| * [GFM Spesific Features](#gfm-spesific-features) | |
| * [Commands for Command Palette](#commands-for-command-palette) | |
| * [Installation](#installation) | |
| * [Configuration](#configuration) | |
| * [Tips](#tips) | |
| * [Similar Plugins](#similar-plugins) | |
| * [Contributing](#contributing) | |
| * [Credits](#credits) |
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
| 2.0.0p353 :001 > "2".to_i +2 | |
| => 0 | |
| 2.0.0p353 :002 > "2".to_i + 2 | |
| => 4 |
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
| outdated_gems = `gem outdated` | |
| regex = %r((?<gem>[\w-]+) \((?<old>[\d\.]+) < (?<new>[\d\.]+)\)) | |
| gemfile = File.read("./Gemfile") | |
| outdated_gems.each_line do |line| | |
| data = line.match(regex) | |
| gemfile.gsub!(%r(gem '#{data[:gem]}',(\s+)'[^']+'), "gem '#{data[:gem]}',\\1'#{data[:new]}'") | |
| end |
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
| <!-- como veio no HTML --> | |
| <ul class="pagination"> | |
| <li><a href="#" class="inative">anterior</a></li> | |
| <li><a href="#" class="active">1</a></li> | |
| <li><a href="#">2</a></li> | |
| <li><a href="#">3</a></li> | |
| <li><a href="#">4</a></li> | |
| <li><a href="#">5</a></li> | |
| <li><a href="#">próximo</a></li> | |
| </ul> |
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
| APP: projeto | |
| PRODUCTION_APP: projeto | |
| STAGING_APP: projeto-staging |
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
| <script src="/bower_components/jquery/jquery.min.js"></script> | |
| <script src="/bower_components/angular/angular.min.js"></script> |
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
| bower update |
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
| bower cloning git://github.com/angular/bower-angular.git | |
| bower cached git://github.com/angular/bower-angular.git | |
| bower fetching angular | |
| bower cloning git://github.com/components/jquery.git | |
| bower cached git://github.com/components/jquery.git | |
| bower fetching jquery | |
| bower checking out angular#v1.0.7 | |
| bower copying /Users/digdin/.bower/cache/angular/ef2188def21eb1bbd1f1792311942a53 | |
| bower checking out jquery#2.0.2 | |
| bower copying /Users/digdin/.bower/cache/jquery/29cb4373d29144ca260ac7c3997f4381 |
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
| bower install |