I think you have looked at the tutorial from Mr. Heinemeier Hansson at least once or twice and have a similar setup.
rails new kamal_pg --css tailwind --skip-test --database=postgresql
cd kamal_pg| ruby '2.7.1' | |
| gem 'rails', github: 'rails/rails' | |
| gem 'tzinfo-data', '>= 1.2016.7' # Don't rely on OSX/Linux timezone data | |
| # Action Text | |
| gem 'actiontext', github: 'basecamp/actiontext', ref: 'okra' | |
| gem 'okra', github: 'basecamp/okra' | |
| # Drivers |
| # config/routes.rb | |
| resources :documents do | |
| scope module: 'documents' do | |
| resources :versions do | |
| post :restore, on: :member | |
| end | |
| resource :lock | |
| end | |
| end |
| #import <UIKit/UIKit.h> | |
| #import <CoreText/CTFont.h> | |
| @interface UIFont (Traits) | |
| @property(nonatomic, readonly) CTFontRef CTFontRef; | |
| @property(nonatomic, readonly) CTFontSymbolicTraits traits; | |
| @property(nonatomic, readonly, getter=isBold) BOOL bold; | |
| @property(nonatomic, readonly, getter=isItalic) BOOL italic; |
The new rake task assets:clean removes precompiled assets. [fxn]
Application and plugin generation run bundle install unless --skip-gemfile or --skip-bundle. [fxn]
Fixed database tasks for jdbc* adapters #jruby [Rashmi Yadav]
Template generation for jdbcpostgresql #jruby [Vishnu Atrai]
| These are the things I did in order to have Gitosis installed and working on my Snow Leopard Server: | |
| 1. Install Git. | |
| I use the installer for OS X provided by Google Code (http://git-osx-installer.googlecode.com/files/git-1.6.5.7-intel-leopard.dmg). | |
| 2. Install Gitosis | |
| I got the Gitosis from the eagain.net server and I installed using Python bundled with Snow Leopard. | |
| $ git clone git://eagain.net/gitosis.git | |
| $ cd gitosis && python setup.py install |