chute 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.
- data/.gitignore +5 -0
- data/Gemfile +4 -0
- data/README +125 -0
- data/Rakefile +11 -0
- data/chute.gemspec +22 -0
- data/config/chute.rb +0 -0
- data/lib/chute.rb +22 -0
- data/lib/chute/account.rb +58 -0
- data/lib/chute/app.rb +32 -0
- data/lib/chute/asset.rb +124 -0
- data/lib/chute/bundle.rb +72 -0
- data/lib/chute/chute.rb +203 -0
- data/lib/chute/collection.rb +47 -0
- data/lib/chute/comment.rb +32 -0
- data/lib/chute/exception.rb +7 -0
- data/lib/chute/http_service.rb +114 -0
- data/lib/chute/inbox.rb +41 -0
- data/lib/chute/parcel.rb +45 -0
- data/lib/chute/resource.rb +354 -0
- data/lib/chute/user.rb +113 -0
- data/lib/chute/util.rb +14 -0
- data/lib/chute/version.rb +3 -0
- data/test/test_sudoku.rb +7 -0
- metadata +69 -0
data/lib/chute/util.rb
ADDED
data/test/test_sudoku.rb
ADDED
metadata
ADDED
@@ -0,0 +1,69 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: chute
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Payal Gupta
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2011-10-07 00:00:00.000000000Z
|
13
|
+
dependencies: []
|
14
|
+
description: This gem allows to map your models with a chute.
|
15
|
+
email:
|
16
|
+
- payal@getchute.com
|
17
|
+
executables: []
|
18
|
+
extensions: []
|
19
|
+
extra_rdoc_files: []
|
20
|
+
files:
|
21
|
+
- .gitignore
|
22
|
+
- Gemfile
|
23
|
+
- README
|
24
|
+
- Rakefile
|
25
|
+
- chute.gemspec
|
26
|
+
- config/chute.rb
|
27
|
+
- lib/chute.rb
|
28
|
+
- lib/chute/account.rb
|
29
|
+
- lib/chute/app.rb
|
30
|
+
- lib/chute/asset.rb
|
31
|
+
- lib/chute/bundle.rb
|
32
|
+
- lib/chute/chute.rb
|
33
|
+
- lib/chute/collection.rb
|
34
|
+
- lib/chute/comment.rb
|
35
|
+
- lib/chute/exception.rb
|
36
|
+
- lib/chute/http_service.rb
|
37
|
+
- lib/chute/inbox.rb
|
38
|
+
- lib/chute/parcel.rb
|
39
|
+
- lib/chute/resource.rb
|
40
|
+
- lib/chute/user.rb
|
41
|
+
- lib/chute/util.rb
|
42
|
+
- lib/chute/version.rb
|
43
|
+
- test/test_sudoku.rb
|
44
|
+
homepage: ''
|
45
|
+
licenses: []
|
46
|
+
post_install_message:
|
47
|
+
rdoc_options: []
|
48
|
+
require_paths:
|
49
|
+
- lib
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
52
|
+
requirements:
|
53
|
+
- - ! '>='
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0'
|
56
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ! '>='
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0'
|
62
|
+
requirements: []
|
63
|
+
rubyforge_project: chute
|
64
|
+
rubygems_version: 1.8.10
|
65
|
+
signing_key:
|
66
|
+
specification_version: 3
|
67
|
+
summary: Chute API Integration
|
68
|
+
test_files:
|
69
|
+
- test/test_sudoku.rb
|