muncher 0.0.1 → 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.
- checksums.yaml +4 -4
- data/README.md +13 -0
- data/muncher-0.0.0.gem +0 -0
- data/muncher.gemspec +22 -0
- metadata +22 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: aff571650a384683fff10c37317dd92851985b15
|
|
4
|
+
data.tar.gz: a2cd4465739d092d340673d3aa23d0e33fd5558b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 47d1cc7fd172e279fa7f3a23a2450e33db4b0dc7b44627c80f4762ee36c1efe9fdad6a26b35bb853983fae243fe9df2aa7e7496442b0542b05cae1abd3c073b7
|
|
7
|
+
data.tar.gz: 141cb2b8ff4f4ee644034197302764a907e7c73bd5aa9f904f30e5613b14b6b457050965d92bd9af3e52e5cc3d6e1a67dc5fa012c4b94453779ad020b4e41fd7
|
data/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# muncher-gem
|
|
2
|
+
A perfect little gem to just munch everything, everything...
|
|
3
|
+
|
|
4
|
+
## Instructions
|
|
5
|
+
1. Install the gem with
|
|
6
|
+
`$ gem install ./muncher-0.0.0.gem`
|
|
7
|
+
2. Use it in the terminal
|
|
8
|
+
```
|
|
9
|
+
$ irb
|
|
10
|
+
$ require 'muncher'
|
|
11
|
+
$ Muncher.munches
|
|
12
|
+
```
|
|
13
|
+
|
data/muncher-0.0.0.gem
ADDED
|
Binary file
|
data/muncher.gemspec
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
$:.push File.expand_path("../lib", __FILE__)
|
|
3
|
+
require "muncher/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |s|
|
|
6
|
+
s.name = 'muncher'
|
|
7
|
+
s.version = Muncher::VERSION
|
|
8
|
+
s.platform = Gem::Platform::RUBY
|
|
9
|
+
s.date = '2017-08-04'
|
|
10
|
+
s.summary = 'Munchieees!'
|
|
11
|
+
s.description = 'Basically munching everything.'
|
|
12
|
+
s.authors = ['Kaja Santro']
|
|
13
|
+
s.email = 'ksantro@gmx.de'
|
|
14
|
+
s.files = `git ls-files`.split("\n")
|
|
15
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
16
|
+
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
|
17
|
+
s.require_paths = ["lib"]
|
|
18
|
+
s.homepage = 'https://github.com/berlindiamonds/muncher-gem'
|
|
19
|
+
s.license = 'MIT'
|
|
20
|
+
s.add_development_dependency "rspec"
|
|
21
|
+
s.rubyforge_project = "muncher"
|
|
22
|
+
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: muncher
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Kaja Santro
|
|
@@ -9,18 +9,35 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2017-08-04 00:00:00.000000000 Z
|
|
12
|
-
dependencies:
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rspec
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ">="
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ">="
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
13
27
|
description: Basically munching everything.
|
|
14
28
|
email: ksantro@gmx.de
|
|
15
29
|
executables: []
|
|
16
30
|
extensions: []
|
|
17
31
|
extra_rdoc_files: []
|
|
18
32
|
files:
|
|
33
|
+
- README.md
|
|
19
34
|
- lib/muncher.rb
|
|
20
35
|
- lib/muncher/translator.rb
|
|
21
|
-
|
|
36
|
+
- muncher-0.0.0.gem
|
|
37
|
+
- muncher.gemspec
|
|
38
|
+
homepage: https://github.com/berlindiamonds/muncher-gem
|
|
22
39
|
licenses:
|
|
23
|
-
-
|
|
40
|
+
- MIT
|
|
24
41
|
metadata: {}
|
|
25
42
|
post_install_message:
|
|
26
43
|
rdoc_options: []
|
|
@@ -37,7 +54,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
37
54
|
- !ruby/object:Gem::Version
|
|
38
55
|
version: '0'
|
|
39
56
|
requirements: []
|
|
40
|
-
rubyforge_project:
|
|
57
|
+
rubyforge_project: muncher
|
|
41
58
|
rubygems_version: 2.6.12
|
|
42
59
|
signing_key:
|
|
43
60
|
specification_version: 4
|