uby 0.0.0
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.
- data/LICENSE +20 -0
- data/lib/uby.rb +3 -0
- data/uby.gemspec +13 -0
- metadata +48 -0
data/LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Uby
|
|
2
|
+
Copyright (C) 2013 Andri Möll
|
|
3
|
+
|
|
4
|
+
This program is free software: you can redistribute it and/or modify it under
|
|
5
|
+
the terms of the GNU Affero General Public License as published by the Free
|
|
6
|
+
Software Foundation, either version 3 of the License, or any later version.
|
|
7
|
+
|
|
8
|
+
Additional permission under the GNU Affero GPL version 3 section 7:
|
|
9
|
+
If you modify this Program, or any covered work, by linking or
|
|
10
|
+
combining it with other code, such other code is not for that reason
|
|
11
|
+
alone subject to any of the requirements of the GNU Affero GPL version 3.
|
|
12
|
+
|
|
13
|
+
In summary:
|
|
14
|
+
- You can use this program for no cost.
|
|
15
|
+
- You can use this program for both personal and commercial reasons.
|
|
16
|
+
- You do not have to share your own program's code which uses this program.
|
|
17
|
+
- You have to share modifications (e.g bug-fixes) you've made to this program.
|
|
18
|
+
|
|
19
|
+
For the full copy of the GNU Affero General Public License see:
|
|
20
|
+
http://www.gnu.org/licenses.
|
data/lib/uby.rb
ADDED
data/uby.gemspec
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Gem::Specification.new do |gem|
|
|
2
|
+
gem.name = "uby"
|
|
3
|
+
gem.version = "0.0.0"
|
|
4
|
+
gem.summary = "ruby -ruby -e ruby"
|
|
5
|
+
|
|
6
|
+
gem.author = "Andri Möll"
|
|
7
|
+
gem.email = "andri@dot.ee"
|
|
8
|
+
|
|
9
|
+
gem.files = `git ls-files`.split($/)
|
|
10
|
+
gem.executables = gem.files.grep(/^bin\//).map{ |f| File.basename(f) }
|
|
11
|
+
gem.test_files = gem.files.grep(/^spec\//)
|
|
12
|
+
gem.require_paths = ["lib"]
|
|
13
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: uby
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.0
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Andri Möll
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2013-07-18 00:00:00.000000000 Z
|
|
13
|
+
dependencies: []
|
|
14
|
+
description:
|
|
15
|
+
email: andri@dot.ee
|
|
16
|
+
executables: []
|
|
17
|
+
extensions: []
|
|
18
|
+
extra_rdoc_files: []
|
|
19
|
+
files:
|
|
20
|
+
- LICENSE
|
|
21
|
+
- lib/uby.rb
|
|
22
|
+
- uby.gemspec
|
|
23
|
+
homepage:
|
|
24
|
+
licenses: []
|
|
25
|
+
post_install_message:
|
|
26
|
+
rdoc_options: []
|
|
27
|
+
require_paths:
|
|
28
|
+
- lib
|
|
29
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
30
|
+
none: false
|
|
31
|
+
requirements:
|
|
32
|
+
- - ! '>='
|
|
33
|
+
- !ruby/object:Gem::Version
|
|
34
|
+
version: '0'
|
|
35
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
36
|
+
none: false
|
|
37
|
+
requirements:
|
|
38
|
+
- - ! '>='
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
requirements: []
|
|
42
|
+
rubyforge_project:
|
|
43
|
+
rubygems_version: 1.8.23
|
|
44
|
+
signing_key:
|
|
45
|
+
specification_version: 3
|
|
46
|
+
summary: ruby -ruby -e ruby
|
|
47
|
+
test_files: []
|
|
48
|
+
has_rdoc:
|