powerpointer 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 ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2014 Adam Gaskins
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,10 @@
1
+ # PowerPointer
2
+
3
+ PowerPointer is an easy to use ruby library allowing you to create .pptx files from scratch.
4
+
5
+ ## Mission
6
+
7
+ * To provide full support for the features of .pptx files.
8
+ * To provide two levels of abstraction:
9
+ 1. A set of low-level classes that export directly to .pptx files.
10
+ 2. A high-level set of classes that encapsulate the low-level classes, in a very simple, yet powerful and intuitive, way.
@@ -0,0 +1,2 @@
1
+ module PowerPointer
2
+ end
@@ -0,0 +1,3 @@
1
+ module PowerPointer
2
+ VERSION = "0.0.0"
3
+ end
@@ -0,0 +1,5 @@
1
+ class PowerPointer
2
+ def self.test
3
+ puts "Hello world"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,52 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: powerpointer
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Adam Gaskins
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2014-11-24 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: PowerPointer is an easy to use ruby library allowing you to create .pptx
15
+ files from scratch.
16
+ email:
17
+ - adam@theadamgaskins.com
18
+ executables: []
19
+ extensions: []
20
+ extra_rdoc_files: []
21
+ files:
22
+ - lib/powerpointer/pp.rb
23
+ - lib/powerpointer/version.rb
24
+ - lib/powerpointer.rb
25
+ - LICENSE
26
+ - README.md
27
+ homepage: https://github.com/AtmoEntity/PowerPointer
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: 1.3.6
45
+ requirements: []
46
+ rubyforge_project:
47
+ rubygems_version: 1.8.28
48
+ signing_key:
49
+ specification_version: 3
50
+ summary: PowerPointer is an easy to use ruby library allowing you to create .pptx
51
+ files from scratch.
52
+ test_files: []