restless_router 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c6e52a3b8548ac48bdc13f601d9a83b1d61ecd4d
4
- data.tar.gz: feaafcf86072c33421c0b69778e594be7c98cba4
3
+ metadata.gz: 6b158567792444695560c83c1ebd680047f66872
4
+ data.tar.gz: 217a7dff2df135f57c262f26c3cfd6cce35c79f6
5
5
  SHA512:
6
- metadata.gz: 6499767d0da1d50c4224d3ac1908ab37750da49fa26c44c33a8085e6e2a24a32944490903e168040f02881163e9a415f6429720442f7ae1bfd12ef254cbbeee3
7
- data.tar.gz: 595d490b7212e0d5ce5b774b6c790d2dcb2c278ab34c24faa980b4f9d24b01d4666d299c8897ed4dfd9a4eaa65167ae837fffdfa0f9ef802a725c529c57a837a
6
+ metadata.gz: 4a742b73a6a25d58eff22511873d0437ece518fd4204e17cd71f9645bad6d1316414c633466bd187df886e6fdda176a2c7c64b2553252854820634b2bd6de4d0
7
+ data.tar.gz: 46876075c9750215b33f0b983987c6efbe895c8b68918b4db1f3d0fbe63fc8d80a0809882433a28c54b82f0bf44523e34bdd1cf9ae045b51f91529cf8d444b93
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # RestlessRouter
2
2
 
3
+ [![Build Status](https://travis-ci.org/nateklaiber/restless_router.svg?branch=v0.0.1)](https://travis-ci.org/nateklaiber/restless_router)
4
+
3
5
  This helps fill the gap where web services only provide their routing
4
6
  via external documentation. In order to prevent URL building scattered
5
7
  throughout your client, you can define the routes up-front via fully
data/Rakefile CHANGED
@@ -1 +1,15 @@
1
1
  require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+ require "yard"
4
+
5
+ RSpec::Core::RakeTask.new(:spec)
6
+
7
+ YARD::Rake::YardocTask.new do |t|
8
+ t.files = Dir["lib/**/*.rb"]
9
+ end
10
+
11
+ desc "Run tests"
12
+ task default: [:spec]
13
+
14
+ desc "Document the library"
15
+ task doc: [:yard]
@@ -1,3 +1,3 @@
1
1
  module RestlessRouter
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: restless_router
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nate Klaiber