Skip to content

Commit

Permalink
Updated README, add LICENSE, update gemspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Eckerstorfer committed Feb 15, 2014
1 parent 8adefd9 commit 53ca790
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
*.gem
21 changes: 21 additions & 0 deletions LICENSE
@@ -0,0 +1,21 @@
The MIT License (MIT)

Copyright (c) 2014 Florian Eckerstorfer

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.
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -9,6 +9,12 @@ Installation

Before you start make sure that you have Guard installed. It's best to use [Bundler](http://bundler.io) to install Guard and Guard::Sculpin.

Install the Guard::Sculpin gem:

```bash
$ gem install guard-sculpin
```

Add Guard::Sculpin to your Gemfile

```ruby
Expand Down
5 changes: 2 additions & 3 deletions guard-sculpin.gemspec
Expand Up @@ -10,13 +10,12 @@ Gem::Specification.new do |s|
s.homepage = "http://github.com/florianeckerstorfer/guard-sculpin"
s.summary = "Guard gem for running Sculpin"
s.description = "Guard::Sculpin automatically runs Sculpin when watched files are modified."

s.rubyforge_project = "guard-sculpin"
s.licenses = ['MIT']

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"]

s.add_dependency 'guard', '>= 1.8.0'
s.add_dependency 'guard', '~> 1.8', '>= 1.8.0'
end

0 comments on commit 53ca790

Please sign in to comment.