{"id":27734433,"url":"https://github.com/railsapps/rails_layout","last_synced_at":"2025-05-15T13:07:26.582Z","repository":{"id":56890607,"uuid":"12940288","full_name":"RailsApps/rails_layout","owner":"RailsApps","description":"Generates Rails application layout files for various front-end frameworks.","archived":false,"fork":false,"pushed_at":"2018-02-09T09:53:02.000Z","size":239,"stargazers_count":571,"open_issues_count":11,"forks_count":43,"subscribers_count":29,"default_branch":"master","last_synced_at":"2025-04-28T13:11:24.261Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/RailsApps.png","metadata":{"files":{"readme":"README.textile","changelog":"CHANGELOG.textile","contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2013-09-19T03:50:27.000Z","updated_at":"2025-02-23T12:10:50.000Z","dependencies_parsed_at":"2022-08-20T16:00:50.090Z","dependency_job_id":null,"html_url":"https://github.com/RailsApps/rails_layout","commit_stats":null,"previous_names":[],"tags_count":70,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RailsApps%2Frails_layout","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RailsApps%2Frails_layout/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RailsApps%2Frails_layout/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/RailsApps%2Frails_layout/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/RailsApps","download_url":"https://codeload.github.com/RailsApps/rails_layout/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254346624,"owners_count":22055808,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-04-28T13:10:11.621Z","updated_at":"2025-05-15T13:07:24.097Z","avatar_url":"https://github.com/RailsApps.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"h1. !http://railsapps.github.io/images/rails-36x36.jpg(RailsLayout Gem)! RailsLayout Gem\n\nUse this gem to set up layout files for your choice of front-end framework:\n\n* Zurb Foundation 5.3\n* Bootstrap 4.0\n* Bootstrap 3.3\n\nIt also will set up \"Devise\":https://github.com/plataformatec/devise views with styling for Bootstrap or Foundation.\n\nRailsLayout is a utility gem to use during development.\n\nh4. Other Tools\n\nThe RailsLayout gem is used by \"Rails Composer\":http://railsapps.github.io/rails-composer/ tool, an application template used to create starter applications. You can use Rails Composer to generate entire applications.\n\nIf you like the RailsLayout gem, you might be interested in the \"RailsApps Testing gem\":https://github.com/RailsApps/rails_apps_testing which sets up a testing framework for Rails.\n\nh4. !http://railsapps.github.io/images/join/join-railsapps.png(Join RailsApps)!:http://railsapps.github.io/\n\nh4. Support the RailsApps Project\n\nIf the RailsLayout gem is useful to you, please \"support the RailsApps project\":http://railsapps.github.io/ by purchasing our tutorials. The RailsApps project provides example applications, tutorials, and starter tools, including the RailsLayout gem.\n\nh2. Command Summary\n\nh4. Generate Application Layout, Navigation, and Flash Message Files\n\n* @$ rails generate layout:install foundation5@\n* @$ rails generate layout:install foundation4@\n* @$ rails generate layout:install bootstrap4@\n* @$ rails generate layout:install bootstrap3@\n* @$ rails generate layout:install bootstrap2@\n* @$ rails generate layout:install simple@\n* @$ rails generate layout:install none@\n\nh4. Add Links to the Navigation File\n\n* @$ rails generate layout:navigation@\n* @$ rails generate layout:navigation bootstrap4@\n\nh4. Generate Devise Views\n\n* @$ rails generate layout:devise foundation5@\n* @$ rails generate layout:devise bootstrap3@\n\nh2. Installing a Front-End Framework\n\nRefer to instructions for:\n\n* \"Foundation and Rails\":http://railsapps.github.io/rails-foundation.html\n* \"Bootstrap and Rails\":http://railsapps.github.io/twitter-bootstrap-rails.html\n\nIn summary, to install a front-end framework, add the gems you need. Then use the RailsLayout gem. It will set up your assets files.\n\nAdd the gems you need to your Rails application Gemfile:\n\nh4. Zurb Foundation 5.3\n\n\u003cpre\u003e\ngem 'foundation-rails'\n\u003c/pre\u003e\n\nSee a note below about a necessary change to the *config/application.rb* file.\n\nh4. Zurb Foundation 4.0\n\n\u003cpre\u003e\ngem 'compass-rails'\ngem 'zurb-foundation'\n\u003c/pre\u003e\n\nh4. Bootstrap 4.0\n\n\u003cpre\u003e\ngem 'bootstrap', '~\u003e 4.0.0.alpha3.1'\n\u003c/pre\u003e\n\nh4. Bootstrap 3.3\n\n\u003cpre\u003e\ngem 'bootstrap-sass'\n\u003c/pre\u003e\n\nh4. Bootstrap 2.3\n\n\u003cpre\u003e\ngem 'bootstrap-sass', '~\u003e 2.3.2.2'\n\u003c/pre\u003e\n\nh4. Use Bundler\n\nUse Bundler to install the gem:\n\n\u003cpre\u003e\n$ bundle install\n\u003c/pre\u003e\n\nh2. Install the RailsLayout Gem\n\nAdd it to your Rails application Gemfile:\n\n\u003cpre\u003e\ngroup :development do\n  gem 'rails_layout'\nend\n\u003c/pre\u003e\n\nYou don't need the gem deployed to production, so put it in the @development@ group.\n\nIf you want to use a newer unreleased version from GitHub:\n\n\u003cpre\u003e\ngroup :development do\n  gem 'rails_layout', github: 'RailsApps/rails_layout'\nend\n\u003c/pre\u003e\n\nUse Bundler to install the gem:\n\n\u003cpre\u003e\n$ bundle install\n\u003c/pre\u003e\n\nh2. The \"layout:install\" Command\n\nThe command will rename *application.css* to *application.css.scss*.\n\nIt will add:\n\n* *1st_load_framework.css.scss*\n\nThe Rails asset pipeline loads asset files in alphabetical order (unless the assets are specified explicitly in the manifest file). The file is named @1st_load_framework.css.scss@ so the framework will be loaded first before any custom CSS files added by the developer.\n\nAnd modify the JavaScript asset file:\n\n* *application.js*\n\nIt will set up a default application layout.\n\nIt creates partials for:\n\n* Rails flash messages\n* navigation links\n\nAdditionally, if Devise or OmniAuth is present, the command will add Sass mixins to accommodate forms. The Sass mixins add form styling to be used with either Bootstrap or Foundation (so we don't have to maintain separate views for each front-end framework).\n\nh4. Supported Frameworks\n\nYou can generate layout files suitable for use with the following front-end frameworks:\n\n* @foundation5@ - Zurb Foundation 5.3\n* @foundation4@ - Zurb Foundation 4.0\n* @bootstrap4@ - Bootstrap 4.0\n* @bootstrap3@ - Bootstrap 3.3\n* @bootstrap2@ - Bootstrap 2.3\n* @simple@ - simple layout\n* @none@ - removes all changes\n\nh4. Generated Files\n\nThe RailsLayout gem generates application layout files:\n\n* app/views/layouts/application.html.erb\n* app/views/layouts/_messages.html.erb\n* app/views/layouts/_navigation.html.erb\n* app/views/layouts/_navigation_links.html.erb\n\nIf Devise or OmniAuth is installed, there will be an additional file:\n\n* app/views/layouts/_nav_links_for_auth.html.erb\n\nAdditionally, when the @simple@ option is selected:\n\n* app/assets/stylesheets/simple.css\n\nh4. Note About the Navigation Partials\n\nThe *_navigation.html.erb* file contains framework-specific styling. Separating the files makes it easy to change the front-end framework without disturbing the links.\n\nThe *_navigation_links.html.erb* file is only a list of links. You can add additional links to this file as needed. It contains no framework-specific styling (except if you are using Bootstrap 4).\n\nThe *_nav_links_for_auth.html.erb* file is created if Devise or OmniAuth is installed.\n\nh4. Support for ERB, Haml, or Slim\n\nIf you are using ERB for Rails views, the RailsLayout gem will generate ERB files.\n\nIf you are using Haml or Slim, the RailsLayout gem will generate Haml or Slim files instead.\n\nh4. Additional Documentation\n\nSee these articles for information about how to set up the application layout:\n\n* \"*Rails Application Layout*\":http://railsapps.github.io/rails-default-application-layout.html\n* \"*Rails and Bootstrap*\":http://railsapps.github.io/twitter-bootstrap-rails.html\n* \"*Rails and Foundation*\":http://railsapps.github.io/rails-foundation.html\n\nLook at the \"Learn Rails\":https://github.com/RailsApps/learn-rails example application to see how the generated files from the RailsLayout gem are used. You'll find details about the example application in the book \"Learn Ruby on Rails\":http://learn-rails.com/learn-ruby-on-rails.html.\n\n!http://railsapps.github.io/images/learn-rails-cover-130x161.jpg(Learn Ruby on Rails)!:http://learn-rails.com/learn-ruby-on-rails.html\n\nh3. Zurb Foundation 5.3 Layout\n\nTo create layout files for use with Zurb Foundation 5.3:\n\n\u003cpre\u003e\n$ rails generate layout:install foundation5\n\u003c/pre\u003e\n\nUse @--force@ if you want to overwrite existing files:\n\n\u003cpre\u003e\n$ rails generate layout:install foundation5 --force\n\u003c/pre\u003e\n\nSee the files that are generated:\n\n* \"app/views/layouts/application.html.erb\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/foundation5-application.html.erb\n* \"app/views/layouts/_messages.html.erb\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/foundation4-messages.html.erb\n* \"app/views/layouts/_navigation.html.erb\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/foundation5-navigation.html.erb\n\nThe RailsLayout gem will create the file:\n\n* \"app/assets/stylesheets/1st_load_framework.css.scss\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/foundation5_and_overrides.css.scss\n\nand modify the file:\n\n* \"app/assets/javascripts/application.js\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/foundation5-application.js\n\nh4. config/application.rb\n\nThe rails_layout gem will make a necessary change to the *config/application.rb* file. It will add:\n\n\u003cpre\u003e\nmodule RailsFoundation\n  class Application \u003c Rails::Application\n    .\n    .\n    .\n    # For Foundation 5\n    config.assets.precompile += %w( vendor/modernizr )\n\n  end\nend\n\u003c/pre\u003e\n\nSee \"issue 19\":https://github.com/RailsApps/rails_layout/issues/19 for an explanation.\n\nh3. Zurb Foundation 4.0 Layout\n\nTo create layout files for use with Zurb Foundation 4.0:\n\n\u003cpre\u003e\n$ rails generate layout:install foundation4\n\u003c/pre\u003e\n\nUse @--force@ if you want to overwrite existing files:\n\n\u003cpre\u003e\n$ rails generate layout:install foundation4 --force\n\u003c/pre\u003e\n\nSee the files that are generated:\n\n* \"app/views/layouts/application.html.erb\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/foundation4-application.html.erb\n* \"app/views/layouts/_messages.html.erb\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/foundation4-messages.html.erb\n* \"app/views/layouts/_navigation.html.erb\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/foundation4-navigation.html.erb\n\nThe RailsLayout gem will create the file:\n\n* \"app/assets/stylesheets/1st_load_framework.css.scss\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/foundation4_and_overrides.css.scss\n\nand modify the file:\n\n* \"app/assets/javascripts/application.js\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/foundation4-application.js\n\nh3. Bootstrap 3.3 or 4.0 Layout\n\nTo create layout files for use with Bootstrap 4.0:\n\n\u003cpre\u003e\n$ rails generate layout:install bootstrap4\n\u003c/pre\u003e\n\nTo create layout files for use with Bootstrap 3.3:\n\n\u003cpre\u003e\n$ rails generate layout:install bootstrap3\n\u003c/pre\u003e\n\nUse @--force@ if you want to overwrite existing files:\n\n\u003cpre\u003e\n$ rails generate layout:install bootstrap3 --force\n\u003c/pre\u003e\n\nSee the files that are generated:\n\n* \"app/views/layouts/application.html.erb\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/bootstrap3-application.html.erb\n* \"app/views/layouts/_messages.html.erb\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/bootstrap3-messages.html.erb\n* \"app/views/layouts/_navigation.html.erb\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/bootstrap3-navigation.html.erb\n\nThe RailsLayout gem will create the file:\n\n* \"app/assets/stylesheets/1st_load_framework.css.scss\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/bootstrap3_and_overrides.css.scss\n\nand modify the file:\n\n* \"app/assets/javascripts/application.js\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/bootstrap-application.js\n\nh3. Bootstrap 2.3 Layout\n\nTo create layout files for use with Bootstrap 2.3:\n\n\u003cpre\u003e\n$ rails generate layout:install bootstrap2\n\u003c/pre\u003e\n\nUse @--force@ if you want to overwrite existing files:\n\n\u003cpre\u003e\n$ rails generate layout:install bootstrap2 --force\n\u003c/pre\u003e\n\nSee the files that are generated:\n\n* \"app/views/layouts/application.html.erb\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/bootstrap2-application.html.erb\n* \"app/views/layouts/_messages.html.erb\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/bootstrap2-messages.html.erb\n* \"app/views/layouts/_navigation.html.erb\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/bootstrap2-navigation.html.erb\n\nThe RailsLayout gem will create the file:\n\n* \"app/assets/stylesheets/1st_load_framework.css.scss\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/bootstrap2_and_overrides.css.scss\n\nand modify the file:\n\n* \"app/assets/javascripts/application.js\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/bootstrap-application.js\n\nh3. Generate a Simple Layout\n\nTo create a set of simple layout files:\n\n\u003cpre\u003e\n$ rails generate layout:install simple\n\u003c/pre\u003e\n\nUse @--force@ if you want to overwrite existing files:\n\n\u003cpre\u003e\n$ rails generate layout:install simple --force\n\u003c/pre\u003e\n\nSee the files that are generated:\n\n* \"app/views/layouts/application.html.erb\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/simple-application.html.erb\n* \"app/views/layouts/_messages.html.erb\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/simple-messages.html.erb\n* \"app/views/layouts/_navigation.html.erb\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/simple-navigation.html.erb\n* \"app/assets/stylesheets/simple.css\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/simple.css\n\nThe RailsLayout gem will create the file:\n\n* \"app/assets/stylesheets/application.css.scss\":https://github.com/RailsApps/rails_layout/blob/master/lib/generators/layout/install/templates/application.css.scss\n\nh3. Reverting to None\n\nTo revert your application to a default application layout:\n\n\u003cpre\u003e\n$ rails generate layout:install none\n\u003c/pre\u003e\n\nThe RailsLayout gem will remove any files it may have added:\n\n* app/views/layouts/_messages.html.erb\n* app/views/layouts/_navigation.html.erb\n* app/assets/stylesheets/simple.css\n* app/assets/stylesheets/bootstrap_and_overrides.css.scss\n* app/assets/stylesheets/foundation_and_overrides.css.scss\n* app/assets/stylesheets/1st_load_framework.css.scss\n\nAdditionally, it will restore these files to the default versions:\n\n* app/views/layouts/application.html.erb\n* app/assets/javascripts/application.js\n\nThe file *app/assets/stylesheets/application.css.scss* will contain a CSS rule but you can ignore it or remove it.\n\nh2. The \"layout:navigation\" Command\n\nIf you are using Devise or OmniAuth for authentication, you can generate a navigation links partial containing appropriate links.\n\nThis command is used to populate the navigation bar in starter applications created by the \"Rails Composer\":http://railsapps.github.io/rails-composer/ tool.\n\n\u003cpre\u003e\n$ rails generate layout:navigation --force\n\u003c/pre\u003e\n\nHere's an example of a file *app/views/layouts/_nav_links_for_auth.html.erb* appropriate for Devise:\n\n\u003cpre\u003e\n\u003c%# add navigation links to this file %\u003e\n\u003cli\u003e\u003c%= link_to 'Home', root_path %\u003e\u003c/li\u003e\n\u003cli\u003e\u003c%= link_to 'About', page_path('about') %\u003e\u003c/li\u003e\n\u003cli\u003e\u003c%= link_to 'Contact', new_contact_path %\u003e\u003c/li\u003e\n\u003c% if user_signed_in? %\u003e\n  \u003cli\u003e\u003c%= link_to 'Edit account', edit_user_registration_path %\u003e\u003c/li\u003e\n  \u003cli\u003e\u003c%= link_to 'Sign out', destroy_user_session_path, :method=\u003e'delete' %\u003e\u003c/li\u003e\n\u003c% else %\u003e\n  \u003cli\u003e\u003c%= link_to 'Sign in', new_user_session_path %\u003e\u003c/li\u003e\n  \u003cli\u003e\u003c%= link_to 'Sign up', new_user_registration_path %\u003e\u003c/li\u003e\n\u003c% end %\u003e\n\u003c% if user_signed_in? %\u003e\n  \u003c% if current_user.has_role? :admin %\u003e\n    \u003cli\u003e\u003c%= link_to 'Admin', users_path %\u003e\u003c/li\u003e\n  \u003c% end %\u003e\n\u003c% end %\u003e\n\u003c/pre\u003e\n\nThe full set of links will be created if initialization files are found for Devise or OmniAuth.\n\nh2. The \"layout:devise\" Command\n\n\"Devise\":https://github.com/plataformatec/devise is a gem for authentication and user management (signup, login, and related features). Devise provides a utility command @rails generate devise:views@. The Devise command creates view files for signup, login, and related features. However, the views generated by Devise lack CSS styling.\n\nUse the RailsLayout gem to generate Devise views with styling for Bootstrap or Foundation.\n\n* @$ rails generate layout:devise foundation5@\n* @$ rails generate layout:devise bootstrap3@\n\nThe command will create (or replace) these files:\n\n* app/views/devise/sessions/new.html.erb\n* app/views/devise/passwords/new.html.erb\n* app/views/devise/registrations/edit.html.erb\n* app/views/devise/registrations/new.html.erb\n\nh4. Limitations\n\nAt this time, with the \"layout:devise\" command, only Foundation 5 or Bootstrap 3 are supported. Files are not generated for Haml or Slim.\n\nh2. Issues\n\nAny issues? Please create an \"issue\":http://github.com/RailsApps/rails_layout/issues on GitHub. Reporting issues (and patching!) helps everyone.\n\nh2. Credits\n\nDaniel Kehoe maintains this gem as part of the \"RailsApps project\":http://railsapps.github.io/.\n\nPlease see the \"CHANGELOG\":https://github.com/RailsApps/rails_layout/blob/master/CHANGELOG.textile for a list of contributors.\n\nIs the gem useful to you? Follow the project on Twitter: \"@rails_apps\":http://twitter.com/rails_apps. I'd love to know you were helped out by the gem.\n\nh2. MIT License\n\n\"MIT License\":http://www.opensource.org/licenses/mit-license\n\nCopyright © 2013-2014 Daniel Kehoe\n\nh2. Useful Links\n\n|_. Getting Started |_. Articles |_. Tutorials |\n| \"Ruby on Rails\":http://railsapps.github.io/ruby-and-rails.html |                                     \"Analytics for Rails\":http://railsapps.github.io/rails-google-analytics.html |                 \"Rails Bootstrap\":http://railsapps.github.io/twitter-bootstrap-rails.html |\n| \"What is Ruby on Rails?\":http://railsapps.github.io/what-is-ruby-rails.html |                        \"Heroku and Rails\":http://railsapps.github.io/rails-heroku-tutorial.html |                     \"Rails Foundation\":http://railsapps.github.io/rails-foundation.html |\n| \"Learn Ruby on Rails\":http://learn-rails.com/learn-ruby-on-rails.html |                              \"JavaScript and Rails\":http://railsapps.github.io/rails-javascript-include-external.html |     \"RSpec Tutorial\":http://railsapps.github.io/rspec.html |\n| \"Rails Tutorial\":https://tutorials.railsapps.org/rails-tutorial |                                    \"Rails Environment Variables\":http://railsapps.github.io/rails-environment-variables.html |    \"Rails Devise Tutorial\":http://railsapps.github.io/tutorial-rails-devise.html |\n| \"Ruby on Rails Tutorial for Beginners\":http://learn-rails.com/ruby-on-rails-tutorial-for-beginners | \"Git and GitHub with Rails\":http://railsapps.github.io/rails-git.html |                        \"Devise RSpec\":http://railsapps.github.io/tutorial-rails-devise-rspec-cucumber.html |\n| \"Install Ruby on Rails\":http://railsapps.github.io/installing-rails.html |                           \"Send Email with Rails\":http://railsapps.github.io/rails-send-email.html |                     \"Devise Bootstrap\":http://railsapps.github.io/tutorial-rails-bootstrap-devise-cancan.html |\n| \"Install Ruby on Rails - Mac OS X\":http://railsapps.github.io/installrubyonrails-mac.html |          \"Haml and Rails\":http://railsapps.github.io/rails-haml.html |                                  \"Rails Membership Site with Stripe\":https://tutorials.railsapps.org/rails-stripe-membership-saas |\n| \"Install Ruby on Rails - Ubuntu\":http://railsapps.github.io/installrubyonrails-ubuntu.html |         \"Rails Application Layout\":http://railsapps.github.io/rails-default-application-layout.html |  \"Rails Subscription Site with Recurly\":https://tutorials.railsapps.org/rails-recurly-subscription-saas |\n| \"Ruby on Rails - Nitrous.io\":http://railsapps.github.io/rubyonrails-nitrous-io.html |                \"HTML5 Boilerplate for Rails\":http://railsapps.github.io/rails-html5-boilerplate.html |        \"Startup Prelaunch Signup Application\":https://tutorials.railsapps.org/rails-prelaunch-signup |\n| \"Update Rails\":http://railsapps.github.io/updating-rails.html |                                      \"Example Gemfiles for Rails\":http://railsapps.github.io/rails-3-2-example-gemfile.html |\n| \"Rails Composer\":http://railsapps.github.io/rails-composer/ |                                        \"Rails Application Templates\":http://railsapps.github.io/rails-application-templates.html |\n| \"Rails Examples\":http://railsapps.github.io/ |                                                       \"Rails Product Planning\":http://railsapps.github.io/rails-product-planning.html |\n| \"Rails Starter Apps\":http://railsapps.github.io/rails-examples-tutorials.html |                      \"Rails Project Management\":http://railsapps.github.io/rails-project-management.html |\n\n!https://cruel-carlota.pagodabox.com/b096716fb733287d5c3d5eec65aaa26b(githalytics.com alpha)!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frailsapps%2Frails_layout","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frailsapps%2Frails_layout","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frailsapps%2Frails_layout/lists"}