Repository is archived
No commit activity in last 3 years
No release in over 3 years
Rails mountable engine templates for LTI development
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.5
>= 0
>= 0

Runtime

 Project Readme

LTI Template Builder

Build Status Code Climate Gem Version

Template generator for building LTI apps quickly on top of Rails mountable engines.

Installation

Add this line to your application's Gemfile:

gem 'lti_template_builder'

And then execute:

$ bundle

Or install it yourself as:

$ gem install lti_template_builder

Usage

To build a Rails template, you need to instanciate the builder and then add recipes to it.

Example:

require 'lti_template_builder'
builder = LtiTemplateBuilder::Builder.new

# Add recipes
builder.add :bootstrap_sass
builder.add :cors_support
builder.add :rspec
builder.add :lti_extension, { enabled_extensions: [:editor_button, :resource_selection] }
builder.add :extra

# Print out the generated template.rb
puts builder.to_script

# Write builder to file
builder.save_to_file("path/to/template.rb")

# Build the new app
rails plugin new my_lti_app -T --mountable --dummy-path=spec/test_app -m path/to/template.rb

Contributing

  1. Fork it ( http://github.com//lti_template_builder/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request