Rails Initializers
Be sure to restart your server when you modify this file.
backtrace_silencers.rb
You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
Be sure to restart your server when you modify this file.
You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
Here is note in that file
# Settings in config/environments/* take precedence over those specified here.
# Application configuration should go into files in config/initializers
# -- all .rb files in that directory are automatically loaded.
Account.table_name
Account.columns.collect {|x| x.name}
Even you can do rails g migration
in cli, which is also persisted to share. Here is a quick and dirty way.
With my experience with Rails 4.0.5 so far, to my own naivety, I found that the error message displayed in form is different from the normal Rails app. The root cause is that 'scaffold.css' is not included.
<div class="field">
<%= f.label :password %><br>
<%= f.password_field :password %>
make design-work (css+js) a Rails mountable plugin. | |
- Install Rails on designer's machine. | |
- create a Rails mountable plugin, and put it in svn. | |
- let designers edit assets files, while browsing Rails running server. | |
understand sprocket and its limitations. | |
- expose all that are 'required' files into one big file to output. |
I am developing for iOS and RoR. For date time issue, I feel lucky, since both works with ISO 8601. | |
By default, Rails 4 returns ISO 8601 format as json output. | |
On iOS, you should have date format as @"yyyy-MM-dd'T'HH:mm:ssZZZ" | |
See http://developer.github.com/v3/ (search "ISO") |
Customizing a model object's JSON representation, first of all, is a business of ActiveRecord::Serialization. You will look at ActiveModel::Serializers::JSON class | |
https://github.com/rails/rails/blob/master/activemodel/lib/active_model/serializers/json.rb | |
and then will come back to ActiveModel::Serialization class | |
https://github.com/rails/rails/blob/master/activemodel/lib/active_model/serialization.rb | |
Do you know, you can access your own rails website on /rails/info/routes , under development environment? | |
The working house is shown below. | |
https://github.com/rails/rails/blob/master/railties/lib/rails/info_controller.rb | |
In turn, ActionDispatch::Routing::RoutesInspector is the real hero. Linked below. | |
https://github.com/rails/rails/blob/master/actionpack/lib/action_dispatch/routing/inspector.rb |
UIStory needs a Procedure to guide it, and story listens to Procedure's events of proceed and complete . | |
It is UIStory to expose proceedNext method for client to call. While UI will have "next" button to proceed the procedure, too. | |
UIStory has a JXUIVCFactory_ProcedureStep . | |
VCFactory will createVC, setObject:intoVC, and getObject:fromVC, according to step. | |
Since the kinds of steps are currently limited, the VC types to be used are limited too, therefore manually manageable. | |
JXModel_ProcedureStep_ObjectPart_Attribute --- JXUITVDSD_NSArray_Selection (or JXUITVDSD_NSArray_Selection__allowsAddSimpleTextOptions) |