derrit 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,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 5412d6f854ce80a62721a332bd2393c6c2c13358
4
+ data.tar.gz: dbdad381ba8f0d48db9ad2d1f828981074f38cb0
5
+ SHA512:
6
+ metadata.gz: 71cf5e8c662d3d0e0ab418569c7d5196a38eb96f294f092023a13aae7d6f48f837a8f13f569b325bcd8ecf7fc76e9fd1bfc5bc39c937195446d9868af7314078
7
+ data.tar.gz: 192ba3759b62b86dd2d3555f4cf7c69cf428aaebd9bfbedb95bbb99a6a47f5d9dbd26edd7b15ab88ac7dde8dbbbd038781b1c5abbc52352ec8a19d038636293d
data/.gitignore ADDED
@@ -0,0 +1,20 @@
1
+ tmp
2
+ spec/reports
3
+ coverage
4
+
5
+ *.gem
6
+ InstalledFiles
7
+ *.rbc
8
+ .config
9
+ rdoc
10
+ derrit.sublime-project
11
+ test/version_tmp
12
+ lib/bundler/man
13
+ .bundle
14
+ derrit.sublime-workspace
15
+ doc/
16
+ .DS_Store
17
+ .yardoc
18
+ _yardoc
19
+ test/tmp
20
+ pkg
data/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'httparty', '~> 0.13.3'
data/Gemfile.lock ADDED
@@ -0,0 +1,14 @@
1
+ GEM
2
+ remote: https://rubygems.org/
3
+ specs:
4
+ httparty (0.13.3)
5
+ json (~> 1.8)
6
+ multi_xml (>= 0.5.2)
7
+ json (1.8.2)
8
+ multi_xml (0.5.5)
9
+
10
+ PLATFORMS
11
+ ruby
12
+
13
+ DEPENDENCIES
14
+ httparty (~> 0.13.3)
data/derrit.gemspec ADDED
@@ -0,0 +1,14 @@
1
+ Gem::Specification.new do |gem|
2
+ gem.authors = ['Jona Hugger']
3
+ gem.email = ['jona@kyr.li']
4
+ gem.description = 'another reddit api client, bare to the bones'
5
+ gem.summary = 'another reddit api client'
6
+ gem.homepage = 'https://github.com/ix/derrit'
7
+ gem.files = `git ls-files`.split($\)
8
+ gem.test_files = gem.files.grep(/test|spec|features/)
9
+ gem.name = 'derrit'
10
+ gem.require_paths = ['lib']
11
+ gem.version = '0.0.1'
12
+ gem.required_ruby_version = '>= 1.9'
13
+ gem.license = 'MIT'
14
+ end
@@ -0,0 +1,3 @@
1
+ require 'derrit'
2
+
3
+ r = Derrit::Client.new
data/lib/derrit.rb ADDED
@@ -0,0 +1,14 @@
1
+ require 'httparty'
2
+
3
+ [:version].each do |local|
4
+ require 'derrit/#{local.to_s}'
5
+ end
6
+
7
+ # Derrit, a Reddit API Client
8
+ #
9
+ # @author Jona Hugger <jona@kyr.li>
10
+ module Derrit
11
+ class Client
12
+ include HTTParty
13
+ end
14
+ end
metadata ADDED
@@ -0,0 +1,51 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: derrit
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Jona Hugger
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-02-01 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: another reddit api client, bare to the bones
14
+ email:
15
+ - jona@kyr.li
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".gitignore"
21
+ - Gemfile
22
+ - Gemfile.lock
23
+ - derrit.gemspec
24
+ - examples/simple.rb
25
+ - lib/derrit.rb
26
+ homepage: https://github.com/ix/derrit
27
+ licenses:
28
+ - MIT
29
+ metadata: {}
30
+ post_install_message:
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '1.9'
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ requirements: []
45
+ rubyforge_project:
46
+ rubygems_version: 2.4.5
47
+ signing_key:
48
+ specification_version: 4
49
+ summary: another reddit api client
50
+ test_files:
51
+ - derrit.gemspec