added some comments / documentation

This commit is contained in:
Florian Schwab 2014-02-09 14:12:46 +01:00
parent a2d8ec32e0
commit 3886b36d85
3 changed files with 7 additions and 2 deletions

View File

@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
spec.name = "capistrano-rails-console"
spec.version = Capistrano::Rails::Console::VERSION
spec.authors = ["Florian Schwab"]
spec.email = ["schwab@fsserv.de"]
spec.email = ["me@ydkn.de"]
spec.description = %q{Remote rails console for capistrano}
spec.summary = %q{Remote rails console for capistrano}
spec.homepage = "https://github.com/ydkn/capistrano-rails-console"
@ -22,4 +22,5 @@ Gem::Specification.new do |spec|
spec.add_development_dependency 'bundler', '~> 1.3'
spec.add_development_dependency 'rake'
spec.add_development_dependency 'yard'
end

View File

@ -1 +1 @@
load File.expand_path("../tasks/remote.cap", __FILE__)
load File.expand_path('../tasks/remote.cap', __FILE__)

View File

@ -1,6 +1,10 @@
# Capistrano
module Capistrano
# Rails
module Rails
# Console
module Console
# gem version
VERSION = '0.1.1'
end
end