跳至內容
WMの写本
使用者工具
登入
網站工具
搜尋
工具
顯示頁面
舊版
反向連結
最近更新
多媒體管理器
網站地圖
登入
>
最近更新
多媒體管理器
網站地圖
您在這裏:
start
»
computer
»
web
»
tool
»
rails
足跡:
computer:web:tool:rails
本頁是唯讀的,您可以看到原始碼,但不能更動它。您如果覺得它不應被鎖上,請詢問管理員。
======Rails====== * [[http://www.rubyonrails.org/|Ruby On Rails]] * [[http://guides.ruby.tw/rails3/|Ruby on Rails 指南手冊]] * [[https://github.com/bbatsov/rails-style-guide|Rails Style Guide]] * [[http://guides.ruby.tw/ruby-rails-style-guides/|Ruby & Rails 風格指南]] * [[http://railsinstaller.org/|RailsInstaller]] * [[http://blog.envylabs.com/2010/12/rails-3-cheat-sheets/|Rails 3 Cheat Sheets]] * [[http://blogs.sitepoint.com/2011/01/26/10-ruby-on-rails-best-practices/|10 Ruby on Rails Best Practices]] * [[http://blog.55minutes.com/2013/01/lightning-fast-sass-reloading-in-rails-32/|Lightning-Fast Sass Reloading in Rails 3.2]] * [[http://railsapps.github.com/rails-composer/|Rails Composer]] * [[https://github.com/RailsApps/rails_apps_composer|Rails Apps Composer]] * [[http://appscrolls.org/|App Scrolls]] * [[https://github.com/metaskills/holy_grail_harness|HolyGrailHarness]] * [[http://brewhouse.io/blog/2013/12/17/whats-new-in-rails-4-1.html|What's new in Rails 4.1]] * [[http://www.justinweiss.com/blog/2014/06/17/fast-consistent-setup-for-your-ruby-and-rails-projects/|Fast, Consistent Setup for Your Ruby and Rails Tools]] ====Route==== * <code>rake routes</code> ====Record==== * [[http://blog.plataformatec.com.br/2013/02/active-record-scopes-vs-class-methods/|Active Record scopes vs class methods]] * [[http://www.scuttle.io/|Scuttle]] (Arel) ====Model==== * model.cache_key * to_partial_path ====View==== * <code>content_tag_for</code> * <code>asset_path()</code> * <code><%= image_tag(url, :class => "class") %></code> * <code><% if current_page?(controller: 'news')%></code> * <code><% content_for :not_authorized do %> <script> alert('You are not authorized to do that!') </script> <% end %></code> * <code><%= params[:controller] %></code> * <code><% if request.path.start_with?'/links' %></code> * [[http://railskey.wordpress.com/2012/07/19/rails-link_to-link_to_if-and-link_to_unless/|Rails link_to, link_to_if and link_to_unless]] * <code><%= link_to image_tag('picture'), 'url', :target => '_blank' %></code> ===Form=== * <code>submit_tag "Complete sale", data: { disable_with: "Please wait..." }</code> ====Config==== * [[http://blog.jerodsanto.net/2012/04/dead-simple-rails-config/|Dead Simple Rails Config]] * [[http://innovativethought.net/2009/01/02/making-configuration-files-with-yaml-revised/|Making Configuration Files with YAML: Revised]] ====Component==== * [[http://blog.envylabs.com/post/79198082352/component-based-rails|Component-based Rails]] =====元件===== ====Gem==== * [[https://github.com/rails/jquery-ujs|Unobtrusive scripting adapter for jQuery]] * [[https://github.com/rails/webpacker|Webpacker]] * [[https://github.com/reactjs/react-rails|react-rails]] * [[https://github.com/thomas-mcdonald/bootstrap-sass|Bootstrap for Sass]] * [[https://github.com/russfrisch/modernizr-rails|modernizr-rails]] * [[https://github.com/rails/turbolinks/|Turbolinks]] * [[https://github.com/amatsuda/kaminari|Kaminari]] * [[https://github.com/igor-alexandrov/wiselinks|Wiselinks]] * [[https://github.com/reed/skrollr-rails|Skrollr-Rails]] * [[https://github.com/hiravgandhi/angularjs-rails|angularjs-rails]] * [[https://github.com/apotonick/cells|Cells]] * [[https://github.com/drapergem/draper|Draper]] * [[https://github.com/rails/cache_digests|Cache Digests]] * [[https://github.com/bradphelan/jasminerice|Jasminerice]] * [[https://github.com/narkoz/holder_rails|Holder.js for Rails]] * [[https://github.com/constantm/Flexslider-2-Rails-Gem|Flexslider 2 Rails Gem]] * [[https://github.com/kyparn/fancybox2-rails|fancybox2-rails]] * [[https://github.com/bokmann/font-awesome-rails|font-awesome-rails]] * [[https://github.com/thoughtbot/high_voltage|High Voltage]] * [[https://github.com/rails-api/rails-api|Rails::API]] * [[https://github.com/rails-api/active_model_serializers|ActiveModel::Serializers]] * [[https://github.com/flyerhzm/bullet|Bullet]] * [[https://github.com/plentz/lol_dba|lol_dba]] * [[https://github.com/binarylogic/authlogic|Authlogic]] * [[https://github.com/intridea/omniauth|OmniAuth]] * [[https://github.com/wvanbergen/request-log-analyzer|Request-log-analyzer]] * [[https://github.com/sdsykes/slim_scrooge|SlimScrooge]] * [[https://github.com/nesquena/query_reviewer|QueryReviewer]] * [[https://github.com/noahd1/oink|Oink]] * [[https://github.com/doorkeeper-gem/doorkeeper/|Doorkeeper]] (OAuth) ===快取=== * [[https://github.com/shopify/bootsnap|Bootsnap]] ===上傳=== * [[https://github.com/markevans/dragonfly|Dragonfly]] * [[http://www.sitepoint.com/file-uploads-dragonfly/|Better File Uploads with Dragonfly]] ===表單=== * [[https://github.com/apotonick/reform|Reform]] * [[https://github.com/joecorcoran/judge|Judge]] * [[https://github.com/joelmoss/dynamic_form|DynamicForm]] * [[https://github.com/ryanb/nested_form|Nested Form]] * [[https://github.com/justinfrench/formtastic|Formtastic]] ===自動=== * [[https://github.com/tpope/hookup|Hookup]] * [[https://github.com/johnbintz/rack-livereload|Rack::LiveReload]] * [[http://guardgem.org/|Guard]] * [[https://github.com/guard/guard-livereload|Guard::LiveReload]]<code>guard -P livereload</code> * [[http://ranmocy.github.io/guard-rails/|Guard-rails]] * [[https://github.com/guard/guard-bundler|Guard::Bundler]] * [[https://github.com/MrOrz/guard-jshint-on-rails|Guard::JshintOnRails]] * [[https://github.com/netzpirat/guard-jasmine|Guard::Jasmine]] ===模版=== * [[https://github.com/dewski/kss-rails|KSS Rails]] * [[http://nadarei.co/nkss-rails/|Nadarei KSS]] ===權限=== * [[https://github.com/ryanb/cancan|CanCan]] * [[https://github.com/elabs/pundit|Pundit]] ===設定=== * [[https://github.com/mislav/choices|Choices for Rails]] * [[https://github.com/bkeepers/dotenv|dotenv]] ===後台=== * [[https://github.com/sferik/rails_admin|RailsAdmin]] * [[http://activeadmin.info/|ActiveAdmin]] * [[https://www.upmin.com/admin-rails|Upmin Admin]] ===寄信=== * [[https://github.com/fphilipe/premailer-rails|premailer-rails]] * [[https://github.com/Mange/roadie|Roadie]] ===廣告=== * [[https://github.com/holli/advert_selector|AdvertSelector]] =====教學===== * [[https://github.com/bloudermilk/maintainable_templates|Maintainable Templates]] * [[https://speakerdeck.com/carlosantoniodasilva/tricks-that-rails-didnt-tell-you-about-at-railsconf-2014|Tricks that Rails didn't tell you about]] * [[http://tonytonyjan.net/slides/2014-04-25-better-rails-backstage/|打造漂亮的 RAILS 後台]] ===Tip=== * app/views/application 底下可以放 view 的預設模版 * [[http://blog.craz8.com/articles/2012/11/10/run-admin-code-in-a-separate-heroku-app|Run Admin code in a separate Heroku application]] * [[https://shellycloud.com/blog/2013/10/how-to-integrate-angularjs-with-rails-4|How to integrate AngularJS with Rails 4]] * [[http://robots.thoughtbot.com/emberjs-with-a-separate-rails-api|EmberJS with a Separate Rails API]] * [[http://leopard.in.ua/2013/11/23/rails-and-webp/|Speed up your Ruby on Rails application using WebP images]] * [[http://blog.rocodev.com/posts/158203-mysql-subquery-in-rails-3|Rails 3 中生 MySQL subquery 的秘技]] * [[http://blog.codeclimate.com/blog/2012/10/17/7-ways-to-decompose-fat-activerecord-models/|7 Patterns to Refactor Fat ActiveRecord Models]] * [[http://pothibo.com/2014/01/building-flexible-menu-in-rails/|Building flexible menu in rails]] * [[http://code.tutsplus.com/tutorials/full-text-search-in-rails--cms-20638|Full Text Search in Rails]] * [[http://cobwwweb.com/render-inline-svg-rails-middleman|Render an Inline SVG in Rails (or Middleman)]] ====書籍==== * [[http://ihower.tw/rails3/|Ruby on Rails 實戰聖經]] * [[https://www.railstutorial.org/|Ruby on Rails Tutorial]] * [[http://objectsonrails.com/|Objects on Rails]] =====資源===== * [[http://rails-bestpractices.com/|Rails Best Practices]] * [[http://railsapps.github.io/rails-application-templates.html|Rails Application Template Projects]] * [[http://railswizard.org/|RailsWizard]] ====工具==== * [[https://github.com/dejan/rails_panel|RailsPanel]] * [[http://rails-erd.rubyforge.org/|Rails ERD]] * [[http://brakemanscanner.org/|Brakeman]]
computer/web/tool/rails.txt
· 上一次變更: 2018/09/15 02:07 由
wm
頁面工具
顯示頁面
舊版
反向連結
回到頁頂