Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
benlangfeld committed Jun 18, 2011
0 parents commit d01ed70
Show file tree
Hide file tree
Showing 8 changed files with 88 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
*.gem
.bundle
Gemfile.lock
pkg/*
4 changes: 4 additions & 0 deletions Gemfile
@@ -0,0 +1,4 @@
source "http://rubygems.org"

# Specify your gem's dependencies in ruby_speech.gemspec
gemspec
20 changes: 20 additions & 0 deletions LICENSE.md
@@ -0,0 +1,20 @@
Copyright (c) 2011 Ben Langfeld

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 changes: 31 additions & 0 deletions README.md
@@ -0,0 +1,31 @@
RubySpeech
--------



Installation
============
gem install ruby_speech

Library
=======



Check out the [YARD documentation](http://rdoc.info/github/mojolingo/ruby_voice/master/frames) for more


Note on Patches/Pull Requests
-----------------------------

* Fork the project.
* Make your feature addition or bug fix.
* Add tests for it. This is important so I don't break it in a future version unintentionally.
* Commit, do not mess with rakefile, version, or history.
* If you want to have your own version, that is fine but bump version in a commit by itself so I can ignore when I pull
* Send me a pull request. Bonus points for topic branches.

Copyright
---------

Copyright (c) 2011 Ben Langfeld. MIT licence (see LICENSE for details).
1 change: 1 addition & 0 deletions Rakefile
@@ -0,0 +1 @@
require 'bundler/gem_tasks'
5 changes: 5 additions & 0 deletions lib/ruby_speech.rb
@@ -0,0 +1,5 @@
require "ruby_speech/version"

module RubySpeech
# Your code goes here...
end
3 changes: 3 additions & 0 deletions lib/ruby_speech/version.rb
@@ -0,0 +1,3 @@
module RubySpeech
VERSION = "0.0.1"
end
20 changes: 20 additions & 0 deletions ruby_speech.gemspec
@@ -0,0 +1,20 @@
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "ruby_speech/version"

Gem::Specification.new do |s|
s.name = "ruby_speech"
s.version = RubySpeech::VERSION
s.authors = ["Ben Langfeld"]
s.email = ["ben@langfeld.me"]
s.homepage = "https://github.com/mojolingo/ruby_speech"
s.summary = %q{A ruby library for TTS & ASR document preparation}
s.description = %q{Prepare SSML and GRXML documents with ease}

s.rubyforge_project = "ruby_speech"

s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
end

0 comments on commit d01ed70

Please sign in to comment.