GithubHelp home page GithubHelp logo

siliconsenthil / commit_param_routing Goto Github PK

View Code? Open in Web Editor NEW
9.0 9.0 2.0 92 KB

Gem that helps rails project to route to different controller actions based on commit param of the form

License: MIT License

Ruby 100.00%

commit_param_routing's People

Contributors

siliconsenthil avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

commit_param_routing's Issues

Scope constraints

I'd like to be able to reuse the same path helper, but either I cannot figure the right way to write th routes, or it's impossible.

I'm trying to do something like that

resource :employees do
  patch 'mass_update', on: :collection, as: 'mass_update' do
    scope constraints: CommitParamRouting.new('publish'), action: 'mass-publish'
    scope constraints: CommitParamRouting.new('unpublish'), action: 'mass-unpublish'
    ...
  end
end

The above code compiles, but there is no filtering done. the first line patch doesn't have a constraint and is matched automatically, without the need to evaluate the nested constraints

routing spec

I would like to write a spec for this routes.rb:

resources :examples, constraints: { id: /[0-9]+/ } do
  member do
    post :save, constraints: CommitParamRouting.new("Save"), action: :save
  end
end

But I can't figure out how. My current attempt in examples_routing_spec.rb looks like this, but its not working:

RSpec.describe ExamplesController, :type => :routing do
  describe "routing" do
    it "routes to #save" do
      expect(:post => "/example/1/save", "commit" => "Save" ).to route_to("example#save", :id => "1")
    end
  end
end

Any ideas?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.