gratitude 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ NTczYmJjYjU1YTUwZDRmZjhlNzU5YmYwNTZiNmFlNDEwMzU4MjM0Yw==
5
+ data.tar.gz: !binary |-
6
+ OGM5NjcwMDYxODhiNGFjMWVlYzNjMjhmMGNlYWI1NzU3MTVhYjc2ZQ==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ MTg3NzJmNTE4OWQ1OTczY2JiYjdhZWRhZWRmMmRjZDI1NDA4N2JlODJhYzUx
10
+ MWU0ZGQzNDg5MDg0ZDFiMjUzMGEwOGNjMTg2ZWYyZTAyN2I2Mjk3NzhjNWE3
11
+ NGVhNzViOTY3NGZjN2QwZjRkZTQzMzEwMjFiNGMwM2VlMmU3MDE=
12
+ data.tar.gz: !binary |-
13
+ NTFiNmE3NDFiYWJkNjA0ODdjYWZiZjBmYTBkYzM4MjJkYTA4Nzg2NGFjOWVi
14
+ ZDI0YzQ5YzQ3YTA5ZDk5M2ZmNWRiZmZiMTMxMjUxM2NmOWY3ODZjNmU2MGNl
15
+ YTA0NGM2ODYyYTg3ZmRkZWEwZGJiZjdjMmIyNzQ4ZWNmMmVhNjM=
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ Gemfile.lock
2
+ pkg
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ rvm:
2
+ - 2.0.0
3
+ - 1.9.3
4
+ - jruby-19mode
5
+ - rbx-19mode
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source "https://rubygems.org"
2
+
3
+ gemspec
4
+
5
+ group :development, :test do
6
+ gem "rspec"
7
+ end
data/LICENSE.txt ADDED
@@ -0,0 +1,20 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2013 John Kelly Ferguson
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
6
+ this software and associated documentation files (the "Software"), to deal in
7
+ the Software without restriction, including without limitation the rights to
8
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9
+ the Software, and to permit persons to whom the Software is furnished to do so,
10
+ subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,10 @@
1
+ gratitude
2
+ =========
3
+
4
+ A simple Ruby wrapper for the Gittip API.
5
+
6
+ #### Copyright and License
7
+
8
+ Copyright John Kelly Ferguson and Contributors, 2013
9
+
10
+ [MIT Licence](LICENSE.txt)
data/Rakefile ADDED
@@ -0,0 +1,13 @@
1
+ require 'rubygems'
2
+ require 'bundler/gem_tasks'
3
+
4
+ Bundler.setup :default, :development
5
+
6
+ require 'rspec/core'
7
+ require 'rspec/core/rake_task'
8
+
9
+ RSpec::Core::RakeTask.new(:spec) do |spec|
10
+ spec.pattern = FileList["spec/**/*_spec.rb"]
11
+ end
12
+
13
+ task :default => :spec
data/gratitude.gemspec ADDED
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'gratitude/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "gratitude"
8
+ spec.version = Gratitude::VERSION
9
+ spec.authors = ["John Kelly Ferguson"]
10
+ spec.email = ["hello@johnkellyferguson.com"]
11
+ spec.description = %q{A simple Ruby wrapper for the Gittip API.}
12
+ spec.summary = %q{A simple Ruby wrapper for the Gittip API.}
13
+ spec.homepage = "https://github.com/JohnKellyFerguson/gratitude"
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_development_dependency "bundler", "~> 1.3"
22
+ spec.add_development_dependency "rake"
23
+ end
@@ -0,0 +1,3 @@
1
+ module Gratitude
2
+ VERSION = "0.0.1"
3
+ end
data/lib/gratitude.rb ADDED
@@ -0,0 +1,5 @@
1
+ require "gratitude/version"
2
+
3
+ module Gratitude
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,7 @@
1
+ require "spec_helper"
2
+
3
+ describe Gratitude do
4
+ it "has a version" do
5
+ expect(Gratitude::VERSION).not_to be_nil
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
2
+
3
+ require "rubygems"
4
+ require "rspec"
5
+ require "gratitude"
metadata ADDED
@@ -0,0 +1,86 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: gratitude
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - John Kelly Ferguson
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-09-10 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: '1.3'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: '1.3'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ! '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ! '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: A simple Ruby wrapper for the Gittip API.
42
+ email:
43
+ - hello@johnkellyferguson.com
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - .gitignore
49
+ - .rspec
50
+ - .travis.yml
51
+ - Gemfile
52
+ - LICENSE.txt
53
+ - README.md
54
+ - Rakefile
55
+ - gratitude.gemspec
56
+ - lib/gratitude.rb
57
+ - lib/gratitude/version.rb
58
+ - spec/gratitude/version_spec.rb
59
+ - spec/spec_helper.rb
60
+ homepage: https://github.com/JohnKellyFerguson/gratitude
61
+ licenses:
62
+ - MIT
63
+ metadata: {}
64
+ post_install_message:
65
+ rdoc_options: []
66
+ require_paths:
67
+ - lib
68
+ required_ruby_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ! '>='
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ! '>='
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ requirements: []
79
+ rubyforge_project:
80
+ rubygems_version: 2.1.1
81
+ signing_key:
82
+ specification_version: 4
83
+ summary: A simple Ruby wrapper for the Gittip API.
84
+ test_files:
85
+ - spec/gratitude/version_spec.rb
86
+ - spec/spec_helper.rb