Fun On Rails

?

Channel Reputation Rank

#218
?

Activity Status

Stale

last updated

According to the data and stats that were collected, 'Fun On Rails' channel has an excellent rank. Despite such a rank, the feed was last updated more than a year ago. In addition 'Fun On Rails' includes a significant share of images in comparison to the text content. The channel mostly uses medium-length articles along with sentence constructions of the intermediate readability level, which is a result indicating a well-balanced textual content on the channel.

About 'Fun On Rails' Channel

A ruby & rails blog

? Updates History Monthly Yearly
JavaScript chart by amCharts 3.13.1Aug, 2013Sep, 2013Oct, 2013Nov, 2013Dec, 2013Jan, 2014Feb, 2014Mar, 2014Apr, 2014May, 2014Jun, 2014Jul, 20140123Show all
? Content Ratio
JavaScript chart by amCharts 3.13.1TextsLinksImages
? Average Article Length

'Fun On Rails' has mostly short articles at the moment, however, they might have a great potential to develop their materials and quality in future.

short

long

? Readability Level

'Fun On Rails' provides texts of a basic readability level which can be quite comfortable for a wide audience to read and understand.

advanced

basic

? Sentiment Analysis

'Fun On Rails' contains texts with mostly positive attitude and expressions (e.g. it may include some favorable reviews or words of devotion to the subjects addressed on the channel).

positive

negative

Recent News
Grape API authentication using Devise Auth Token

In previous post we saw how to buil RESTful API using Grape. In this post we will see how to add devise auth token to users and how to use it in Grape...

+
Building RESTful API using Grape in Rails

While developing a rich client side web application or mobile app, we need RESTful JSON API which interacts with the front-end javascript framework. Here...

+
Migrating from blogspot to octopress

I was happily writing my blog at blogspot almost three plus years. From last 2-3 days, i was evaluating with octopress for its way of writing posts, customizations...

+
Writing Octopress blog posts using markdown

This is an example post which shows various markdown syntax that can be used while writing octopress markdown posts. Bold text Hello Octopress! Blockquote...

+
Getting started: Octopress powered and Github hosted blog

There are various blogging sites like blogspot, wordpress, posterous, and many more. Each has their own pros and cons and none of the engine gives us...

+
what is new in rails 3

Rails 3 has released with various notable features and said that it’s one of the best version rails community has released so far. Highlights of...

+
Dynamic conditions to rails associations

We all know that rails models associations gets defined while class definitions are loaded and once defined can’t be changed. But still you can...

+
Dynamic conditions to rails associations

We all know that rails models associations gets defined while class definitions are loaded and once defined can't be changed. But still you can make use...

+
Upgrading from Rails 2.1.x to Rails 2.3.11

If your application is currently on any version of Rails 2.1.x, The following changes needs to be done for upgrading your application to Rails 2.3.11...

+
Upgrading from Rails 2.1.x to Rails 2.3.11

If your application is currently on any version of Rails 2.1.x, Then following changes needs to be done for upgrading your application to Rails 2.3.1...

+
ruby enumerable & to_proc (ampersond & symbol shortcut)

Basically Enumerable mixin gives collection classes a variety of traverse, search, sort methods. understanding ruby blocks i.e. proc blocks are statements...

+

Unfortunately Fun On Rails has no news yet.

But you may check out related channels listed below.

stripe gateway payment integration with rails

[...] ').text(response.error.message); $('.head').css('disabled', false); } } }; Generate & Migrate Payment Model rails g model payment status:string amount:float email:string transaction_number:string [...]

Paypal payments integration with rails

[...] ; {:id => :payForm} do |p| = p.text_field :amount = p.submit 'Pay' Generate & Migrate Payment Model rails g model payment status:string amount:float transaction_number:string rake db: [...]

Authorize Net (AIM) payment integration with rails

[...] /payments_controller.rb class PaymentsController :new end end Generate & Migrate Payment Model rails g model payment status:string amount:float transaction_number:string rake db: [...]

Authorize Net (SIM) payment integration with rails

[...] mode: test login: 9gdLh6T key: 67fu45xw6VP92LX1 production: Generate & Migrate Payment Model rails g model payment status:string amount:float transaction_number:string rake db: [...]

active-admin sass and rails 3

[...] .pre' Bundle install, generate config & migrate db bundle install rails g active_admin:install rake db:migrate Config # config/initializers/active_admin.rb ActiveAdmin.setup do |config| config. [...]

stripe gateway payment integration with rails

[...] Model rails g model payment status:string amount:float email:string transaction_number:string rake db:migrate Payment Model # app/models/payment.rb class Payment true, :numericality => { : [...]

Paypal payments integration with rails

[...] ; Migrate Payment Model rails g model payment status:string amount:float transaction_number:string rake db:migrate Payment Model # app/models/payment.rb class Payment true, :numericality => { : [...]

Authorize Net (SIM) payment integration with rails

[...] Payment Model rails g model payment status:string amount:float transaction_number:string rake db:migrate SIM gateway methods extracted and added to payment model # app/models/payment.rb [...]

twitter-bootstrap form builder for rails

[...] changes inside this ZeroForm cat app/helpers/zero_form.rb class ZeroForm main_class(errT)) end end FIELDS.each do |name| create_tagged_field(name) end end In order to use Nested Forms you need to [...]

Customizing rails default form builder

[...] } #{super} #{suffix} #{errs}" end @template.content_tag(:div, content, :class => klass) end end HELPERS.each do |name| create_tagged_field(name) end end [...]

Dynamic methods inside ruby classes

[...] define_method :a do puts "hello" end define_method :greeting do |message| puts message end end A.new.a #=> hello A.new.greeting 'Ram ram' #=> Ram ram Can you imagine using dynamic [...]

Authorize Net (AIM) payment integration with rails

[...] 'Pay' Payments Controller # app/controllers/payments_controller.rb class PaymentsController :new end end Generate & Migrate Payment Model rails g model payment status:string amount:float [...]

csv file import / export in rails 3

[...] .csv_header "First Name,Last Name,Email,Phone,Mobile, Address, FAX, City".split(',') end def self.build_from_csv(row) # find existing customer from email or create new cust = [...]

Simplified Active Record Extensions

[...] (options) paginate :per_page => options[:per_page] || per_page, :page => options[:page] end def self.options_for_select(opts={}) opts[:name] ||= :name opts[:attr] ||= :id opts[:prompt] ||= ' [...]

twitter-bootstrap form builder for rails

[...] (error=nil) return CSS[:main_class] unless error [CSS[:main_class], CSS[:field_error]].join(' ') end def required(name) object.class.validators_on(name).map(&:class).include?(ActiveModel:: [...]

stripe gateway payment integration with rails

[...] $('.head').css('disabled', false); } } }; Generate & Migrate Payment Model rails g model payment status:string amount:float email:string transaction_number:string rake db:migrate Payment [...]

Paypal payments integration with rails

[...] | = p.text_field :amount = p.submit 'Pay' Generate & Migrate Payment Model rails g model payment status:string amount:float transaction_number:string rake db:migrate Payment Model # app/ [...]

Authorize Net (SIM) payment integration with rails

[...] : 9gdLh6T key: 67fu45xw6VP92LX1 production: Generate & Migrate Payment Model rails g model payment status:string amount:float transaction_number:string rake db:migrate SIM gateway methods [...]

Authorize Net (AIM) payment integration with rails

[...] .rb class PaymentsController :new end end Generate & Migrate Payment Model rails g model payment status:string amount:float transaction_number:string rake db:migrate Payment Model # app/models/ [...]

stripe gateway payment integration with rails

[...] amount:float email:string transaction_number:string rake db:migrate Payment Model # app/models/payment.rb class Payment true, :numericality => { :greater_than => 0 } def purchase self.status = [...]

Paypal payments integration with rails

[...] :string amount:float transaction_number:string rake db:migrate Payment Model # app/models/payment.rb class Payment true, :numericality => { :greater_than => 0 } def self.conf @@gateway_conf ||= [...]

Authorize Net (SIM) payment integration with rails

[...] rake db:migrate SIM gateway methods extracted and added to payment model # app/models/payment.rb class Payment true, :numericality => { :greater_than => 0 } def self.conf @@ [...]

Authorize Net (AIM) payment integration with rails

[...] :string amount:float transaction_number:string rake db:migrate Payment Model # app/models/payment.rb class Payment {:in => [true], :message => 'Invalid Credit Card'} validates :amount, : [...]

twitter bootstrap paginate and rails 3

[...] bootstrap is css toolkit for rapid front-end UI development. To get will-paginate working with bootstrap css we need to override default pagination link renderer. Using Bootstrap-sass for rails 3 # [...]

twitter-bootstrap form builder for rails

[...] about how to get started on it click here. Below post will help you out in getting started bootstrap css with rails app. One need to add below files to helpers directory. MainForm can be used as base [...]

twitter-bootstrap form builder for rails

[...] how to get started on it click here Below post will help you out in getting started bootstrap css with rails app. One need to add below files to helpers directory. MainForm can be used [...]

Getting started: Octopress powered and Github hosted blog

[...] and you should be seeing blog running there :–) Deployment There are ways to deploy octopress blog. You can either deploy this blog on heroku or on github using github pages. 1. Heroku: As [...]

Migrating from blogspot to octopress

[...] way of writing posts, customizations, themes, and plugins. As a result of evaluation, found octopress blog as very quick & easy to write hence decided to shift from blogger to octopress. Below [...]

Paypal payments integration with rails

Paypal standard website payment service allows online payment transactions for websites. Before implementing payments inside rails app needs to have f [...]

Paypal payments integration with rails

Paypal standard website payment service allows online payment transactions for websites. Before implementing payments inside rails app needs to have f [...]

dynamic & bounded parameters and named routes

[...] your own routes with parameters but first you should understand how routes behaves. Adding dynamic parameters to routes Here exact parameters are matched to route and presence of each parameter is [...]

dynamic & bounded parameters and named routes

[...] include your own parameters inside it. Lets first understand how named routes works: Adding dynamic parameters to routes Here exact parameters are matched to route and presence of each parameter is [...]

?Key Phrases
stripe gateway payment integration with rails

[...] ').text(response.error.message); $('.head').css('disabled', false); } } }; Generate & Migrate Payment Model rails g model payment status:string amount:float email:string transaction_number:string [...]

Paypal payments integration with rails

[...] ; {:id => :payForm} do |p| = p.text_field :amount = p.submit 'Pay' Generate & Migrate Payment Model rails g model payment status:string amount:float transaction_number:string rake db: [...]

Authorize Net (AIM) payment integration with rails

[...] /payments_controller.rb class PaymentsController :new end end Generate & Migrate Payment Model rails g model payment status:string amount:float transaction_number:string rake db: [...]

Authorize Net (SIM) payment integration with rails

[...] mode: test login: 9gdLh6T key: 67fu45xw6VP92LX1 production: Generate & Migrate Payment Model rails g model payment status:string amount:float transaction_number:string rake db: [...]

Related channels