drama 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/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE +20 -0
- data/drama.gemspec +17 -0
- data/lib/drama.rb +5 -0
- data/lib/drama/version.rb +3 -0
- metadata +52 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Drama
|
|
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/drama.gemspec
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
2
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
|
+
require "drama/version"
|
|
4
|
+
|
|
5
|
+
Gem::Specification.new do |gem|
|
|
6
|
+
gem.name = "drama"
|
|
7
|
+
gem.version = Drama::VERSION
|
|
8
|
+
gem.authors = ["Andri Möll"]
|
|
9
|
+
gem.email = ["andri@dot.ee"]
|
|
10
|
+
gem.summary = "The Drama is in the making. The fat lady will sing soon!"
|
|
11
|
+
gem.description = "You might want to cover your ears."
|
|
12
|
+
|
|
13
|
+
gem.files = `git ls-files`.split($/)
|
|
14
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
15
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
16
|
+
gem.require_paths = ["lib"]
|
|
17
|
+
end
|
data/lib/drama.rb
ADDED
metadata
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: drama
|
|
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-05-31 00:00:00.000000000 Z
|
|
13
|
+
dependencies: []
|
|
14
|
+
description: You might want to cover your ears.
|
|
15
|
+
email:
|
|
16
|
+
- andri@dot.ee
|
|
17
|
+
executables: []
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- .gitignore
|
|
22
|
+
- Gemfile
|
|
23
|
+
- LICENSE
|
|
24
|
+
- drama.gemspec
|
|
25
|
+
- lib/drama.rb
|
|
26
|
+
- lib/drama/version.rb
|
|
27
|
+
homepage:
|
|
28
|
+
licenses: []
|
|
29
|
+
post_install_message:
|
|
30
|
+
rdoc_options: []
|
|
31
|
+
require_paths:
|
|
32
|
+
- lib
|
|
33
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
34
|
+
none: false
|
|
35
|
+
requirements:
|
|
36
|
+
- - ! '>='
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '0'
|
|
39
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
40
|
+
none: false
|
|
41
|
+
requirements:
|
|
42
|
+
- - ! '>='
|
|
43
|
+
- !ruby/object:Gem::Version
|
|
44
|
+
version: '0'
|
|
45
|
+
requirements: []
|
|
46
|
+
rubyforge_project:
|
|
47
|
+
rubygems_version: 1.8.23
|
|
48
|
+
signing_key:
|
|
49
|
+
specification_version: 3
|
|
50
|
+
summary: The Drama is in the making. The fat lady will sing soon!
|
|
51
|
+
test_files: []
|
|
52
|
+
has_rdoc:
|