Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Mocatra is mock server with sinatra.
URL and Return value, response code can be set in the yaml file.
Add this line to your application's Gemfile:
gem 'mocatra'
And then execute:
$ bundle
Or install it yourself as:
$ gem install mocatra
First, create file and records directory.
$ touch app.rb
$ mkdir records
Edit app.rb as follows:
require 'mocatra'
Mocatra::App.record_path = './records/'
Mocatra::App.run!
Create records/index.yml.
---
status: 200
body:
version: '1'
result: OK
Server start as follows:
$ ruby app.rb
== Sinatra (v1.4.7) has taken the stage on 4567 for development with backup from Thin
Thin web server (v1.6.4 codename Gob Bluth)
Maximum connections set to 1024
Listening on 0.0.0.0:4567, CTRL+C to stop
Exec API as follows:
$ curl http://localhost:4567 -i
HTTP/1.1 200 OK
Content-Type: text/html;charset=utf-8
Content-Length: 29
X-XSS-Protection: 1; mode=block
X-Content-Type-Options: nosniff
X-Frame-Options: SAMEORIGIN
Connection: keep-alive
Server: thin
{"version":"1","result":"OK"}
The content of index.yml is returned.
Status code and body is required. You can your free settings for values. for example.
---
status: 200
body:
version: '1'
result: OK
records/index.yml will correspond to the following URL.
http://localhost:4567 or curl http://localhost:4567/index
records corresponding to http://localhost:4567/user
is records/user.yml
,
and http://localhost:4567/user/
is records/user/index.yml
.
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.
Bug reports and pull requests are welcome on GitHub at https://github.com/shoyan/mocatra. 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.
The gem is available as open source under the terms of the MIT License.
FAQs
Unknown package
We found that mocatra demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.