Skip to content

buren/action_params

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ActionParams

Installation

Add this line to your application's Gemfile:

gem 'action_params'

And then execute:

$ bundle

Or install it yourself as:

$ gem install action_params

Usage

# Example users controller

# List all valid attributes
ATTRIBUTES = [
  {
    name: :first_name,
    type: String,
    required_on: [:create],
    description: 'First name of user'
  },
  {
    name: :gender,
    type: String,
    required_on: [:create],
    description: 'Gender',
    one_of: %w(Male Female Other)
  },
  {
    name: :arrived_at,
    type: DateTime,
    description: 'Arrival time'
  },
  {
    name: :public_profile,
    type: :boolean,
    description: 'Arrival time'
  },
  {
    name: :password,
    type: Hash,
    description: 'Password entity',
    exists_on: [:create],
    children: [
      {
        name: :current,
        type: String,
        description: 'Current password'
      },
      {
        name: :next,
        type: String,
        description: 'Next password'
      }
    ]
  },
  {
    name: :interest_ids,
    type: Hash,
    description: 'List of interest_ids',
    children: [
      {
        name: :id,
        type: String,
        description: 'Interest ID'
      },
      {
        name: :level,
        type: Integer,
        description: 'Interest level',
        one_of: 1..5
      }
    ]
  },
  {
    name: :ignored_notifications,
    type: Array,
    of: String,
    description: 'Ignored notifications'
  }
].freeze

# Nest the attributes under data/attributes
PARAMS_TREE = {
  type: Hash,
  name: :data,
  children: [{
    type: Hash,
    name: :attributes,
    children: ATTRIBUTES
  }]
}.freeze

Then in the controller you can generate the docs with:

ActionParams::Apipie.generate(
  self,
  :create,
  AttributesTree.build(PARAMS_TREE)
)

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/buren/action_params.

License

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

About

[experiment] DRY action params

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published