herestomwiththeweather-oscurrency-ruby-api-wrapper 0.1.1 → 0.1.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/Manifest +1 -1
- data/README.rdoc +51 -0
- data/Rakefile +1 -1
- data/oscurrency-ruby-api-wrapper.gemspec +5 -5
- metadata +5 -5
- data/README.doc +0 -0
data/Manifest
CHANGED
data/README.rdoc
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
= Ruby OsCurrency API wrapper GEM
|
2
|
+
|
3
|
+
== What
|
4
|
+
|
5
|
+
This is a RubyGem for accessing resources on OsCurrency servers in Ruby applications.
|
6
|
+
|
7
|
+
== Installing
|
8
|
+
|
9
|
+
sudo gem install herestomwiththeweather-oscurrency-ruby-api-wrapper -s http://gems.github.com
|
10
|
+
|
11
|
+
The source code is hosted on GitHub http://github.com/herestomwiththeweather/oscurrency-ruby-api-wrapper
|
12
|
+
|
13
|
+
== The basics
|
14
|
+
|
15
|
+
This gem is primarily for ruby on rails web applications and supports oauth. It allows a web application to present payment dropboxes, fetch information about people or groups, and create new groups and currencies.
|
16
|
+
|
17
|
+
== Demonstration of usage
|
18
|
+
|
19
|
+
Retrieve information about myself with HTTP Authorization:
|
20
|
+
|
21
|
+
oc = Oscurrency.register({:site => 'http://tbbrown%40hotmail.com:mypassword@demo.opensourcecurrency.org'})
|
22
|
+
me = oc.Person.find(0)
|
23
|
+
|
24
|
+
There is a sample app code and a screencast that shows OAuth "Stupid Currency Tricks":http://www.opensourcecurrency.org/2009/06/stupid-currency-tricks-payment-dropbox.html
|
25
|
+
|
26
|
+
== Documentation Wiki
|
27
|
+
|
28
|
+
There is some documentation for the API "OsCurrency Github Wiki":http://wiki.github.com/austintimeexchange/oscurrency
|
29
|
+
|
30
|
+
|
31
|
+
== Forum
|
32
|
+
|
33
|
+
http://groups.google.com/group/opensourcecurrency
|
34
|
+
|
35
|
+
|
36
|
+
== How to submit patches
|
37
|
+
|
38
|
+
Read the "8 steps for fixing other people's code" http://drnicwilliams.com/2007/06/01/8-steps-for-fixing-other-peoples-code/.
|
39
|
+
|
40
|
+
The source code is now hosted on the OAuth GitHub Project http://github.com/herestomwiththeweather/oscurrency-ruby-api-wrapper
|
41
|
+
|
42
|
+
To submit a patch, please fork the oscurrency-ruby-api-wrapper project and create a patch with tests. Once you're happy with it send a pull request and post a message to the google group.
|
43
|
+
|
44
|
+
== License
|
45
|
+
|
46
|
+
This code is free to use under the terms of the MIT license.
|
47
|
+
|
48
|
+
== Contact
|
49
|
+
|
50
|
+
Comments are welcome. Send an email to "Tom Brown" herestomwiththeweather@gmail.com
|
51
|
+
|
data/Rakefile
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
require 'echoe'
|
4
4
|
|
5
|
-
Echoe.new('oscurrency-ruby-api-wrapper','0.1.
|
5
|
+
Echoe.new('oscurrency-ruby-api-wrapper','0.1.2') do |p|
|
6
6
|
p.description = 'wrapper for oscurrency'
|
7
7
|
p.url = 'http://opensourcecurrency.org'
|
8
8
|
p.author = 'Tom Brown'
|
@@ -2,17 +2,17 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{oscurrency-ruby-api-wrapper}
|
5
|
-
s.version = "0.1.
|
5
|
+
s.version = "0.1.2"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 1.2") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Tom Brown"]
|
9
|
-
s.date = %q{2009-
|
9
|
+
s.date = %q{2009-07-01}
|
10
10
|
s.description = %q{wrapper for oscurrency}
|
11
11
|
s.email = %q{herestomwiththeweather@gmail.com}
|
12
|
-
s.extra_rdoc_files = ["lib/oscurrency.rb", "lib/oscurrency/models/exchange.rb", "lib/oscurrency/models/base.rb", "lib/oscurrency/models/person.rb", "README.
|
13
|
-
s.files = ["Rakefile", "Manifest", "oscurrency-ruby-api-wrapper.gemspec", "init.rb", "lib/oscurrency.rb", "lib/oscurrency/models/exchange.rb", "lib/oscurrency/models/base.rb", "lib/oscurrency/models/person.rb", "README.
|
12
|
+
s.extra_rdoc_files = ["lib/oscurrency.rb", "lib/oscurrency/models/exchange.rb", "lib/oscurrency/models/base.rb", "lib/oscurrency/models/person.rb", "README.rdoc"]
|
13
|
+
s.files = ["Rakefile", "Manifest", "oscurrency-ruby-api-wrapper.gemspec", "init.rb", "lib/oscurrency.rb", "lib/oscurrency/models/exchange.rb", "lib/oscurrency/models/base.rb", "lib/oscurrency/models/person.rb", "README.rdoc"]
|
14
14
|
s.homepage = %q{http://opensourcecurrency.org}
|
15
|
-
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Oscurrency-ruby-api-wrapper", "--main", "README.
|
15
|
+
s.rdoc_options = ["--line-numbers", "--inline-source", "--title", "Oscurrency-ruby-api-wrapper", "--main", "README.rdoc"]
|
16
16
|
s.require_paths = ["lib"]
|
17
17
|
s.rubyforge_project = %q{oscurrency-ruby-api-wrapper}
|
18
18
|
s.rubygems_version = %q{1.3.3}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: herestomwiththeweather-oscurrency-ruby-api-wrapper
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tom Brown
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-07-01 00:00:00 -07:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -33,7 +33,7 @@ extra_rdoc_files:
|
|
33
33
|
- lib/oscurrency/models/exchange.rb
|
34
34
|
- lib/oscurrency/models/base.rb
|
35
35
|
- lib/oscurrency/models/person.rb
|
36
|
-
- README.
|
36
|
+
- README.rdoc
|
37
37
|
files:
|
38
38
|
- Rakefile
|
39
39
|
- Manifest
|
@@ -43,7 +43,7 @@ files:
|
|
43
43
|
- lib/oscurrency/models/exchange.rb
|
44
44
|
- lib/oscurrency/models/base.rb
|
45
45
|
- lib/oscurrency/models/person.rb
|
46
|
-
- README.
|
46
|
+
- README.rdoc
|
47
47
|
has_rdoc: false
|
48
48
|
homepage: http://opensourcecurrency.org
|
49
49
|
post_install_message:
|
@@ -53,7 +53,7 @@ rdoc_options:
|
|
53
53
|
- --title
|
54
54
|
- Oscurrency-ruby-api-wrapper
|
55
55
|
- --main
|
56
|
-
- README.
|
56
|
+
- README.rdoc
|
57
57
|
require_paths:
|
58
58
|
- lib
|
59
59
|
required_ruby_version: !ruby/object:Gem::Requirement
|
data/README.doc
DELETED
File without changes
|