Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions lib/mina/rsync/version.rb

This file was deleted.

4 changes: 4 additions & 0 deletions lib/mina_rsync.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
require 'mina_rsync/version'

module MinaRsync
end
4 changes: 3 additions & 1 deletion lib/mina/rsync.rb → lib/mina_rsync/tasks.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
require File.expand_path("../rsync/version", __FILE__)
require 'mina/bundler'
require 'mina/rails'
#require File.expand_path("../rsync/version", __FILE__)

# NOTE: Please don't depend on tasks without a description (`desc`) as they
# might change between minor or patch version releases. They make up the
Expand Down
5 changes: 5 additions & 0 deletions lib/mina_rsync/version.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module MinaRsync
def self.version
"1.1.0"
end
end
8 changes: 5 additions & 3 deletions mina-rsync.gemspec
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
require File.expand_path("../lib/mina/rsync/version", __FILE__)
# encoding: utf-8

require "./lib/mina_rsync/version.rb"

Gem::Specification.new do |gem|
gem.name = "mina-rsync"
gem.version = Mina::Rsync::VERSION
gem.homepage = "https://github.com/moll/mina-rsync"
gem.version = MinaRsync.version
gem.homepage = "https://github.com/andywatts/mina-rsync"
gem.summary = <<-end.strip.gsub(/\s*\n\s*/, " ")
Deploy with Rsync from any local (or remote) repository.
end
Expand Down