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 +4 -4
- data/README.md +2 -0
- data/Rakefile +14 -0
- data/lib/restless_router/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6b158567792444695560c83c1ebd680047f66872
|
|
4
|
+
data.tar.gz: 217a7dff2df135f57c262f26c3cfd6cce35c79f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4a742b73a6a25d58eff22511873d0437ece518fd4204e17cd71f9645bad6d1316414c633466bd187df886e6fdda176a2c7c64b2553252854820634b2bd6de4d0
|
|
7
|
+
data.tar.gz: 46876075c9750215b33f0b983987c6efbe895c8b68918b4db1f3d0fbe63fc8d80a0809882433a28c54b82f0bf44523e34bdd1cf9ae045b51f91529cf8d444b93
|
data/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# RestlessRouter
|
|
2
2
|
|
|
3
|
+
[](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]
|