Skip to content

faraazahmad/trains

Repository files navigation

Trains

A gem that statically analyses your Rails app and extracts information about its structure.

DeepSource DeepSource

Index

  1. Installation
  2. Usage
  3. Features
    1. Create Model definitions from migrations
    2. Create controller definitions from files
  4. Development
  5. Contributing
  6. License
  7. Code of conduct

Installation

Install the gem and add it to the application's Gemfile by executing:

$ bundle add trains

If bundler is not being used to manage dependencies, install the gem by executing:

$ gem install trains

Usage

require 'trains'

scanner = Trains::Scanner.new('~/lib/trains_app')
result = scanner.scan

Features

Trains currently has the ability to achieve the following:

Create Model definitions from migrations

Given a DB migration in your Rails app like so:

class CreateGroups < ActiveRecord::Migration[7.0]
  def change
    create_table :groups do |t|
      t.string :title

      t.timestamps
    end
    add_index :groups, :title, unique: true
  end
end

Trains will generate the following Model definition:

Trains::DTO::Model(
  name: 'Group',
  fields:
    [
      Trains::DTO::Field(:title, :string),
      Trains::DTO::Field(:created_at, :datetime),
      Trains::DTO::Field(:updated_at, :datetime),
    ],
  version: 7.0
)

Create Controller definitions from files

Given a controller in your Rails app like so:

class BoxController < ApplicationController
  def create; end

  def edit; end

  def update; end

  def destroy; end
end

Trains will return the following controller definition:

Trains::DTO::Controller(
    name: 'BoxController',
    method_list: [
      Trains::DTO::Method(name: 'create', visibility: nil, source: nil),
      Trains::DTO::Method(name: 'edit', visibility: nil, source: nil),
      Trains::DTO::Method(name: 'update', visibility: nil, source: nil),
      Trains::DTO::Method(name: 'destroy', visibility: nil, source: nil)
    ]
)

Development

After checking out the repo, run bin/setup to install dependencies. Then, run rake spec to run the tests. You can also run bin/console for an interactive prompt that will allow you to experiment.

To install this gem onto your local machine, run bundle exec rake install. To release a new version, update the version number in version.rb, and then run bundle exec rake release, which will create a git tag for the version, push git commits and the created tag, and push the .gem file to rubygems.org.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/faraazahmad/trains. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the code of conduct.

License

The gem is available as open source under the terms of the MIT License.

Code of Conduct

Everyone interacting in the Trains project's codebases, issue trackers, chat rooms and mailing lists is expected to follow the code of conduct.

About

Extract information about your Rails app using static analysis.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published