dragon 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4) hide show
  1. data/README.md +7 -0
  2. data/bin/dragon +8 -8
  3. data/lib/dragon/version.rb +1 -1
  4. metadata +1 -1
data/README.md CHANGED
@@ -35,6 +35,13 @@ A deployment tool inspired by and is using [Rye][1].
35
35
 
36
36
  dragify .
37
37
 
38
+ ## Contributing
39
+
40
+ - Fork the project.
41
+ - Make your feature addition or bug fix, write tests.
42
+ - Commit, do not mess with rakefile, version, or history.
43
+ - Make a pull request.
44
+
38
45
  ----
39
46
 
40
47
  ## Copyright
data/bin/dragon CHANGED
@@ -1,26 +1,26 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
3
  $:.unshift File.expand_path('../../lib', __FILE__)
4
- require 'deployer'
5
- require 'deployer/usage'
6
- require 'deployer/options'
4
+ require 'dragon'
5
+ require 'dragon/usage'
6
+ require 'dragon/options'
7
7
 
8
8
  if $*.empty? || $*[0] == '-h'
9
- puts Deployer.usage
9
+ puts Dragon.usage
10
10
  exit 0
11
11
  end
12
12
  if $*[0] == '-v'
13
- puts Deployer::VERSION
13
+ puts Dragon::VERSION
14
14
  exit 0
15
15
  end
16
16
 
17
17
  begin
18
- options = Deployer::Options.parse( Dir.pwd, $* )
19
- rescue Deployer::Exceptions::DepfileMissing => e
18
+ options = Dragon::Options.parse( Dir.pwd, $* )
19
+ rescue Dragon::Exceptions::DepfileMissing => e
20
20
  puts e.message
21
21
  exit 0
22
22
  end
23
- Deployer::Deploy.new(options).run
23
+ Dragon::Deploy.new(options).run
24
24
 
25
25
  puts
26
26
  puts "Done!"
@@ -1,3 +1,3 @@
1
1
  module Dragon
2
- VERSION="0.1.0"
2
+ VERSION="0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dragon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: