rack-backend-api 0.0.2 → 0.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +2 -1
- data/lib/backend_api.rb +1 -1
- data/lib/sequel_rack_backend_api_adapter.rb +1 -0
- data/rack-backend-api.gemspec +1 -1
- metadata +3 -3
data/README.md
CHANGED
@@ -173,7 +173,7 @@ If you do one for DataMapper or whatever, please consider contributing
|
|
173
173
|
because it would make BackendAPI more interesting.
|
174
174
|
|
175
175
|
The adapter for Sequel is a regular plugin, but you don't have to declare it.
|
176
|
-
It is done automatically if the constant `Sequel` is defined.
|
176
|
+
It is done automatically if the constant `Sequel` is defined (so you have to require Sequel first).
|
177
177
|
|
178
178
|
Here are the methods to implement, most of them are just aliases for having a single name:
|
179
179
|
|
@@ -203,6 +203,7 @@ CHANGE LOG
|
|
203
203
|
|
204
204
|
0.0.1 First version
|
205
205
|
0.0.2 Accept CamelCased class names
|
206
|
+
0.0.3 Fix Form mockup
|
206
207
|
|
207
208
|
COPYRIGHT
|
208
209
|
=========
|
data/lib/backend_api.rb
CHANGED
data/rack-backend-api.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |s|
|
2
2
|
s.name = 'rack-backend-api'
|
3
|
-
s.version = "0.0.
|
3
|
+
s.version = "0.0.3"
|
4
4
|
s.platform = Gem::Platform::RUBY
|
5
5
|
s.summary = "A Rack middleware that provides a simple API for your Admin section"
|
6
6
|
s.description = "The purpose of this Rack Middleware is to provide an API that interfaces with database actions in order to build a CMS."
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rack-backend-api
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 25
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 0
|
9
|
-
-
|
10
|
-
version: 0.0.
|
9
|
+
- 3
|
10
|
+
version: 0.0.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Mickael Riga
|