Dynamic Sitemaps: Ruby on Rails sitemap plugin
Dynamic Sitemaps enables you to easily create flexible, dynamic sitemaps in Ruby on Rails. It generates sitemaps in the sitemaps.org standard which is supported by several crawlers including Google,...
View ArticleMetamagic: Ruby on Rails meta tags plugin
I have created a plugin named Metamagic that enables you to easily create meta tags for your Ruby on Rails site. In your controller: def show @product = Product.find(params[:id]) meta :title =>...
View ArticleRails SEO pack: 5 plugins to optimize your site
Here I am going to share some insights on getting your Ruby on Rails site to perform better in search engines, popularly called SEO or Search Engine Optimization. We are going to use these five Rails...
View ArticleApiBuilder: Ruby on Rails XML and JSON builder in one
Update: jbuilder is a great, widely used gem for building JSON if you don’t need XML. Or, you could use jbuilder and builder side-by-side if you do need both. ApiBuilder is a Ruby on Rails template...
View ArticleSitemap Notifier: Ruby on Rails plugin for notifying search engines of...
Sitemap Notifier is a Ruby on Rails plugin that, when installed, automatically notifies Google, Bing, and Yahoo of changes to your models, i.e. changes to your sitemap. It also works in conjunction...
View ArticleIntroduction to the A/B Test for WordPress plugin (video)
A/B Test for WordPress is a WordPress plugin that makes it easy to A/B split test your WordPress blog or site. Visit the plugin page for more information, download, tutorials, and videos. Here is a...
View ArticleUsing the A/B Test for WordPress plugin to split test between themes
I recently created the A/B Test for WordPress plugin which enables the WordPress blog or site owner to easily split test content, stylesheets, javascripts, and, what we’ll be discussing today, themes....
View ArticleCreating your own WordPress plugin database migration framework
So, how do you migrate changes to your database structure from one version to another (like you may know it from Ruby on Rails) when you are writing a WordPress plugin? Here’s one way to do it. Let’s...
View ArticleTranslate your Ruby on Rails YAML files using Bing
I have created a plugin named bing_translate_yaml that allows you to simply translate your Ruby on Rails YAML files into any language using Bing. The plugin takes your YAML files from the...
View ArticleTranslate your Ruby on Rails models and database tables using...
acts_as_translatable is a plugin for easy translation of your Ruby on Rails models and database tables. Installation In your Gemfile: gem 'acts_as_translatable' Install the new gem: bundle install...
View Article