From 53ca7909a2aae7f943affe118757f2209dd0a277 Mon Sep 17 00:00:00 2001 From: Florian Eckerstorfer Date: Sat, 15 Feb 2014 13:11:18 +0100 Subject: [PATCH] Updated README, add LICENSE, update gemspec --- .gitignore | 1 + LICENSE | 21 +++++++++++++++++++++ README.md | 6 ++++++ guard-sculpin.gemspec | 5 ++--- 4 files changed, 30 insertions(+), 3 deletions(-) create mode 100644 .gitignore create mode 100644 LICENSE diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..86339a0 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.gem \ No newline at end of file diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..67b34af --- /dev/null +++ b/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. diff --git a/README.md b/README.md index 52501d0..a54eb95 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/guard-sculpin.gemspec b/guard-sculpin.gemspec index 9736e25..9cceddb 100644 --- a/guard-sculpin.gemspec +++ b/guard-sculpin.gemspec @@ -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 \ No newline at end of file