Skip to content

Commit

Permalink
Updated some of the files for better gem structure.
Browse files Browse the repository at this point in the history
  • Loading branch information
hopsoft committed Nov 21, 2012
1 parent d04a21c commit 55fdb42
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 18 deletions.
18 changes: 0 additions & 18 deletions .gemspec

This file was deleted.

22 changes: 22 additions & 0 deletions LICENSE.txt
@@ -0,0 +1,22 @@
Copyright (c) 2012 Nathan Hopkins

MIT License

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.
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -26,6 +26,8 @@ One that evolved from the real world with concrete use cases and actual producti
* It easily handles changing requirements
* It reduces the ramp up time for new team members

Think of Hero as a simplified state machine which enables implementations that can be understood at a glance.

## Match the Implementation to the Business Process

The problem has always been: **How do you effectively model a business process within your app?**
Expand Down
24 changes: 24 additions & 0 deletions hero.gemspec
@@ -0,0 +1,24 @@
require "rake"
require File.join(File.dirname(__FILE__), "lib", "hero", "version")

Gem::Specification.new do |spec|
spec.name = "hero"
spec.version = Hero::VERSION
spec.license = "MIT"
spec.homepage = "http://hopsoft.github.com/hero/"
spec.summary = "You can think of Hero as a simplified state machine."
spec.description = <<-DESC
Simplify your app by effectively modeling business processes within it.
DESC

spec.authors = ["Nathan Hopkins"]
spec.email = ["natehop@gmail.com"]

spec.files = FileList[
"lib/**/*.rb",
"bin/*",
"[A-Z]*",
"spec/**/*.rb"
]
end

3 changes: 3 additions & 0 deletions lib/hero/version.rb
@@ -0,0 +1,3 @@
module Hero
VERSION = "0.1.3"
end

0 comments on commit 55fdb42

Please sign in to comment.