pulsar 0.0.1 → 0.0.2

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.
data/README.md CHANGED
@@ -6,17 +6,17 @@ NebuLab's central capistrano deploy resource.
6
6
  A quick example. To run any cap command for an application specified in a configuration repo you can run:
7
7
 
8
8
  ```
9
- deploy -c=<configuration-repo-git-url> <application> <stage> <capistrano_args>
9
+ pulsar -c=<configuration-repo-git-url> <application> <stage> <capistrano_args>
10
10
  ```
11
11
 
12
12
  A couple of concrete examples:
13
13
 
14
14
  ```
15
- deploy -c git@github.com:nebulab/deploy-configuration.git nebulab production --tasks
15
+ pulsar -c git@github.com:nebulab/deploy-configuration.git nebulab production --tasks
16
16
 
17
- deploy -c git@github.com:nebulab/deploy-configuration.git nebulab staging # Deploy on staging
17
+ pulsar -c git@github.com:nebulab/deploy-configuration.git nebulab staging # Deploy on staging
18
18
 
19
- deploy -c git@github.com:nebulab/deploy-configuration.git farmavillage production deploy:check
19
+ pulsar -c git@github.com:nebulab/deploy-configuration.git farmavillage production deploy:check
20
20
  ```
21
21
 
22
22
  ## Installation
data/bin/pulsar CHANGED
@@ -34,7 +34,7 @@ class PulsarCommand < Clamp::Command
34
34
  def execute
35
35
  target = "#{application}:#{environment}"
36
36
 
37
- Bundler.with_clean_env do
37
+ ::Bundler.with_clean_env do
38
38
  fetch_repo
39
39
  bundle_install
40
40
  create_capfile
@@ -1,3 +1,3 @@
1
1
  module Pulsar
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
data/pulsar.gemspec CHANGED
@@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
14
14
  providing a simple solution to managing multiple systems without installing capistrano
15
15
  configurations in each app.
16
16
  }
17
- gem.homepage = "https://github.com/nebulab/deploy"
17
+ gem.homepage = "https://github.com/nebulab/pulsar"
18
18
 
19
19
  gem.files = `git ls-files`.split($/)
20
20
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pulsar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -49,7 +49,7 @@ files:
49
49
  - lib/pulsar/tasks/.gitkeep
50
50
  - lib/pulsar/version.rb
51
51
  - pulsar.gemspec
52
- homepage: https://github.com/nebulab/deploy
52
+ homepage: https://github.com/nebulab/pulsar
53
53
  licenses: []
54
54
  post_install_message:
55
55
  rdoc_options: []