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.
@@ -0,0 +1,14 @@
1
+ module Util
2
+ def self.unparse(options)
3
+ JSON.unparse(options)
4
+ end
5
+ end
6
+
7
+ class Hash
8
+ def +(add)
9
+ temp = {}
10
+ add.each{|k,v| temp[k] = v}
11
+ self.each{|k,v| temp[k] = v}
12
+ temp
13
+ end
14
+ end
@@ -0,0 +1,3 @@
1
+ module Chute
2
+ VERSION = "0.0.2"
3
+ end
@@ -0,0 +1,7 @@
1
+ require 'test/unit'
2
+
3
+ class TestSudoku < Test::Unit::TestCase
4
+ def test_silly_example
5
+ assert_equal 2+2, 5
6
+ end
7
+ end
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