Project

lease

0.0
No release in over 3 years
Low commit activity in last 3 years
Lease templates and envelopes
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.17.3
~> 13.0
~> 3.7

Runtime

 Project Readme

Lease

Gem Version Simplify the lease pdf/html management. Specially designed for a real estate self-storage project.

Usage

  1. Add the gem to your gemfile. gem lease, '>= 0.1.1'
  2. rails g lease:install rake db:migrate
  3. On any model you want to treat as a "signer" of an envelope/template, add lease_signable:
class User < ApplicationRecord

  lease_signable

end
  1. On any model you want treat as a leasing property, add lease_envelopable:
class Occupancy < ApplicationRecord

  lease_envelopable

end
  1. You can now call some methods like:
user = User.new(full_name:'Jason Smolar')         # the signable model
occupancy = Occupancy.new                         # the leasable model
template = Lease::Template.create(state: 'CA', template: File.open('/tmp/ca_lease_template.html'))
envelope = user.create_envelope(template: template, envelopable: occupancy)

# hash of variables to be interpolated into html file. Pass html id to hash key.
vars = {
  rental_price: '$12',                            # there's an html DOM in the template with the id 'rental_price'
  ...
}
if user.has_unsigned_lease?
  envelope = user.envelopes.unsigned.first
  envelope.unsigned_html(vars)                    # returns html without tenant sign
  envelope.with_unsigned_pdf(vars) do |pdf_file|
    pdf_file.read                                 # pdf_file will be closed after this block
  end
  envelope.unsigned?                              # true
   
  envelope.sign(vars)                             # Generate and returns the signed pdf. PDF is stored in
  envelope.signed_pdf                             # Carrierwave::Storage::File
  envelope.signed?                                # true
end

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 tags, and push the .gem file to rubygems.org.

Contributing

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

License

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