Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set full path of the ragel source file to rake task #1221

Merged
merged 2 commits into from
Apr 13, 2018

Commits on Apr 12, 2018

  1. Set full path of the ragel source file to rake task

    In Rake v12.1.0 or higher, the algorithm of resolve file dependency
    was changed in ruby/rake#39 .
    
    Then rake task "ragel:generate" is works incorrectry that require
    wrong ragel source file.
    As the example, rake resolves "lib/mail/parsers/address_lists_parser.rb"
    needs "lib/mail/parsers/address_lists.rl", but this file is not exist.
    
    Therefore, fixed that to pass full path of the ragel source file
    to rule.
    unasuke committed Apr 12, 2018
    Configuration menu
    Copy the full SHA
    20ffe29 View commit details
    Browse the repository at this point in the history
  2. Perform gem install bundler to address `LoadError: cannot load such

    file -- bundler/dep_proxy`
    
    ```ruby
    bundle exec rake
    bundler: failed to load command: rake (/home/travis/build/mikel/mail/vendor/bundle/ruby/2.5.0/bin/rake)
    LoadError: cannot load such file -- bundler/dep_proxy
    ```
    yahonda authored and unasuke committed Apr 12, 2018
    Configuration menu
    Copy the full SHA
    8079b4a View commit details
    Browse the repository at this point in the history