svxbox 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/VERSION +1 -1
  2. data/lib/svxbox/ponyboy.rb +16 -0
  3. data/lib/svxbox.rb +1 -0
  4. metadata +3 -2
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.0.7
1
+ 0.0.8
@@ -0,0 +1,16 @@
1
+ ###
2
+ # Copyright: Savonix Corporation
3
+ # Author: Albert Lash
4
+ # License: Affero General Public License v3 or later
5
+ ##
6
+ require 'pony'
7
+
8
+ module SvxBox
9
+ module PonyBoy
10
+
11
+ def svx_email(to=nil,from='',subject='',text='')
12
+ Pony.mail(:to => to, :from => from, :subject => subject, :body => text) unless to.nil?
13
+ end
14
+
15
+ end
16
+ end
data/lib/svxbox.rb CHANGED
@@ -5,6 +5,7 @@ require File.dirname(__FILE__) + '/svxbox/markupguppy'
5
5
  # Not included by default
6
6
  require File.dirname(__FILE__) + '/svxbox/sinatricus'
7
7
  require File.dirname(__FILE__) + '/svxbox/mongobongo'
8
+ require File.dirname(__FILE__) + '/svxbox/ponyboy'
8
9
 
9
10
  # Must come last
10
11
  require File.dirname(__FILE__) + '/svxbox/supabali'
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 7
9
- version: 0.0.7
8
+ - 8
9
+ version: 0.0.8
10
10
  platform: ruby
11
11
  authors:
12
12
  - Albert Lash
@@ -46,6 +46,7 @@ files:
46
46
  - lib/svxbox/lexicali.rb
47
47
  - lib/svxbox/markupguppy.rb
48
48
  - lib/svxbox/mongobongo.rb
49
+ - lib/svxbox/ponyboy.rb
49
50
  - lib/svxbox/sinatricus.rb
50
51
  - lib/svxbox/supabali.rb
51
52
  has_rdoc: true