aye 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE.txt +22 -0
- data/aye.gemspec +15 -0
- data/lib/aye.rb +1 -0
- metadata +47 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 7a37fa3e9039b7e4e2ec2927881f67eb701601d5
|
4
|
+
data.tar.gz: 019a4df42f1e88259c4cc5501d35c4cf99170b05
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 16bfe64cd81c0871cab1ceb9298b749fa20d21d3a96cd1369c28de523b88efe4099d0bc02468072a4dc51505ef3fdb4993dd8cb2d30ec3c2ccccbf05b89d7c96
|
7
|
+
data.tar.gz: e9d49510842f5b58053a7c50984a54f2cbc47152762370bfe8aa4578e11ff482373cdb76a602d8dfcd891bf3c3a897a9629924298927e5e63d3d18dbea7607ac
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2015 Tobias Bühlmann
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/aye.gemspec
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
Gem::Specification.new do |spec|
|
2
|
+
spec.name = 'aye'
|
3
|
+
spec.version = Gem::Version.new('0.0.0')
|
4
|
+
spec.authors = ['Tobias Bühlmann']
|
5
|
+
spec.email = ['tobias@xn--bhlmann-n2a.de']
|
6
|
+
spec.summary = 'Placeholder'
|
7
|
+
spec.description = 'Placeholder'
|
8
|
+
spec.homepage = ''
|
9
|
+
spec.license = 'MIT'
|
10
|
+
spec.files = ['LICENSE.txt', 'aye.gemspec', 'lib/aye.rb']
|
11
|
+
spec.executables = []
|
12
|
+
spec.test_files = []
|
13
|
+
spec.require_paths = ['lib']
|
14
|
+
end
|
15
|
+
|
data/lib/aye.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
Aye = Module.new
|
metadata
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: aye
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Tobias Bühlmann
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-01-06 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: Placeholder
|
14
|
+
email:
|
15
|
+
- tobias@xn--bhlmann-n2a.de
|
16
|
+
executables: []
|
17
|
+
extensions: []
|
18
|
+
extra_rdoc_files: []
|
19
|
+
files:
|
20
|
+
- LICENSE.txt
|
21
|
+
- aye.gemspec
|
22
|
+
- lib/aye.rb
|
23
|
+
homepage: ''
|
24
|
+
licenses:
|
25
|
+
- MIT
|
26
|
+
metadata: {}
|
27
|
+
post_install_message:
|
28
|
+
rdoc_options: []
|
29
|
+
require_paths:
|
30
|
+
- lib
|
31
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
32
|
+
requirements:
|
33
|
+
- - ">="
|
34
|
+
- !ruby/object:Gem::Version
|
35
|
+
version: '0'
|
36
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ">="
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '0'
|
41
|
+
requirements: []
|
42
|
+
rubyforge_project:
|
43
|
+
rubygems_version: 2.4.5
|
44
|
+
signing_key:
|
45
|
+
specification_version: 4
|
46
|
+
summary: Placeholder
|
47
|
+
test_files: []
|