rackful 0.0.1

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.
data/mkdoc.sh ADDED
@@ -0,0 +1,6 @@
1
+ #!/bin/bash
2
+
3
+ cd "`dirname "$0"`"
4
+
5
+ rm -rf docs/* .yardoc/
6
+ exec yard "$@"
data/rackful.gemspec ADDED
@@ -0,0 +1,23 @@
1
+ Gem::Specification.new do |s|
2
+
3
+ # Required properties:
4
+ s.name = 'rackful'
5
+ s.version = '0.0.1'
6
+ s.summary = "Library for building ReSTful web services with Rack"
7
+ s.description = <<EOS
8
+ Rackful provides a minimal interface for developing ReSTful web services with
9
+ Rack and Ruby. Instead of writing HTTP method handlers, you'll implement
10
+ resource objects, which expose their state at URLs.
11
+ EOS
12
+ s.files = Dir[ '{example/*,lib/**/*}' ] +
13
+ %w( rackful.gemspec README.md LICENSE.md mkdoc.sh )
14
+
15
+ # Optional properties:
16
+ s.author = 'Pieter van Beek'
17
+ s.email = 'rackful@djinnit.com'
18
+ s.license = 'Apache License 2.0'
19
+ s.homepage = 'http://pieterb.github.com/Rackful/'
20
+
21
+ s.add_runtime_dependency 'rack', '>= 1.4'
22
+
23
+ end
metadata ADDED
@@ -0,0 +1,73 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: rackful
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Pieter van Beek
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2012-07-17 00:00:00.000000000Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rack
16
+ requirement: &70293407169820 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '1.4'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *70293407169820
25
+ description: ! 'Rackful provides a minimal interface for developing ReSTful web services
26
+ with
27
+
28
+ Rack and Ruby. Instead of writing HTTP method handlers, you''ll implement
29
+
30
+ resource objects, which expose their state at URLs.
31
+
32
+ '
33
+ email: rackful@djinnit.com
34
+ executables: []
35
+ extensions: []
36
+ extra_rdoc_files: []
37
+ files:
38
+ - example/config.ru
39
+ - lib/rackful/header_spoofing.rb
40
+ - lib/rackful/method_spoofing.rb
41
+ - lib/rackful/relative_location.rb
42
+ - lib/rackful.rb
43
+ - rackful.gemspec
44
+ - README.md
45
+ - LICENSE.md
46
+ - mkdoc.sh
47
+ homepage: http://pieterb.github.com/Rackful/
48
+ licenses:
49
+ - Apache License 2.0
50
+ post_install_message:
51
+ rdoc_options: []
52
+ require_paths:
53
+ - lib
54
+ required_ruby_version: !ruby/object:Gem::Requirement
55
+ none: false
56
+ requirements:
57
+ - - ! '>='
58
+ - !ruby/object:Gem::Version
59
+ version: '0'
60
+ required_rubygems_version: !ruby/object:Gem::Requirement
61
+ none: false
62
+ requirements:
63
+ - - ! '>='
64
+ - !ruby/object:Gem::Version
65
+ version: '0'
66
+ requirements: []
67
+ rubyforge_project:
68
+ rubygems_version: 1.8.10
69
+ signing_key:
70
+ specification_version: 3
71
+ summary: Library for building ReSTful web services with Rack
72
+ test_files: []
73
+ has_rdoc: