rvm implode
Then remove any reference to RVM in .z*
files.
SHELL = /bin/sh | |
# V=0 quiet, V=1 verbose. other values don't work. | |
V = 0 | |
Q1 = $(V:1=) | |
Q = $(Q1:0=@) | |
ECHO1 = $(V:1=@:) | |
ECHO = $(ECHO1:0=@echo) | |
NULLCMD = : |
<h2>About CoolGames Inc</h2> | |
<p class="intro"> | |
Welcome to CoolGames Inc, a podcast from Polygon where your hosts Griffin McElroy | |
and Nick Robinson have finally become the video game publisher of their dreams. Each | |
week, the community pitches ideas for games they want to see made and votes on | |
their favorites. Griffin and Nick then discuss the best, lending their years of | |
experience in the game idea to take those ideas and turn them into surefire hits— | |
hits like "Horse Hockey!", "Disho-ho-honored", and "Tim McGraw's What If? Trucks: Fates." | |
</p> |
diff --git a/lib/presto/serializer/mixins/entries.rb b/lib/presto/serializer/mixins/entries.rb | |
index 087f6b8..2ab89e1 100644 | |
--- a/lib/presto/serializer/mixins/entries.rb | |
+++ b/lib/presto/serializer/mixins/entries.rb | |
@@ -125,7 +125,7 @@ module Presto::Serializer::Mixins::Entries | |
:timestamp => entry.modified_date.to_i, # seconds since Jan 1 1970 00:00:00 UTC | |
:title => entry.title_plain, | |
:type => entry.type, | |
- :url => SbnUrls.url_for_entry(entry, {:current_community => context.current_community}), | |
+ :url => SbnUrls.url_for_entry(entry, {:community => context.current_community}), |
diff --git a/app/controllers/account_controller.rb b/app/controllers/account_controller.rb | |
index f9f063c..5a995e2 100644 | |
--- a/app/controllers/account_controller.rb | |
+++ b/app/controllers/account_controller.rb | |
@@ -13,6 +13,12 @@ class AccountController < ApplicationController | |
prepend_network_view_paths! | |
+ def foo | |
+ respond_to do |format| |
# Run using: bundle exec rails runner cards_fix.rb | |
current_community = Network.vox.communities.first | |
card_stacks = ExplainerGroup.published_on_community(current_community) | |
card_stacks.each do |card_stack| | |
explainer_group = card_stack.hub_page.entry_group | |
cards = explainer_group.all_explainer_cards | |
cards.each do |card| | |
card.explainer_groups << explainer_group | |
card.save! | |
end |
web: jekyll --server --auto --future | |
comapss: compass watch --output-style expanded |
##To reproduce:
rvm_project_rvmrc_default=1 # To enable switching to default / system when leaving a directory set | |
rvm_without_gems="rubygems-bundler" # Use Bundler binstubs instead | |
export rvm_ignore_gemsets_flag=1 # Ignore all gemsets |
See: https://rvm.io/rubies/docs/
In order to conserve space, RVM does not automatically generate and install each Ruby's ri / rdoc documentation.
Provided you have not cleaned up the extracted sources for all currently installed Rubies by executing 'rvm cleanup all' then you can install the docs for all currently installed Rubies by executing:
rvm all do rvm docs generate all
Now execute: