derrit 0.0.1
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.
- checksums.yaml +7 -0
- data/.gitignore +20 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +14 -0
- data/derrit.gemspec +14 -0
- data/examples/simple.rb +3 -0
- data/lib/derrit.rb +14 -0
- metadata +51 -0
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
data/Gemfile.lock
ADDED
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
|
data/examples/simple.rb
ADDED
data/lib/derrit.rb
ADDED
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
|