blazing 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,3 @@
1
1
  module Blazing
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 1
9
- version: 0.0.1
8
+ - 2
9
+ version: 0.0.2
10
10
  platform: ruby
11
11
  authors:
12
12
  - Felipe Kaufmann
@@ -14,14 +14,13 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2011-01-10 00:00:00 +01:00
17
+ date: 2011-01-31 00:00:00 +01:00
18
18
  default_executable:
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: thor
22
22
  prerelease: false
23
23
  requirement: &id001 !ruby/object:Gem::Requirement
24
- none: false
25
24
  requirements:
26
25
  - - ">="
27
26
  - !ruby/object:Gem::Version
@@ -32,7 +31,7 @@ dependencies:
32
31
  version: 0.14.6
33
32
  type: :runtime
34
33
  version_requirements: *id001
35
- description: git push style deployments for the masses
34
+ description: git push deployent utility, ready to be extended by your own recipes
36
35
  email:
37
36
  - felipekaufmann@gmail.com
38
37
  executables:
@@ -43,24 +42,45 @@ extra_rdoc_files: []
43
42
 
44
43
  files:
45
44
  - .gitignore
45
+ - .idea/.rakeTasks
46
+ - .idea/blazing.iml
47
+ - .idea/dictionaries/felipe.xml
48
+ - .idea/encodings.xml
49
+ - .idea/misc.xml
50
+ - .idea/modules.xml
51
+ - .idea/vcs.xml
52
+ - .idea/workspace.xml
46
53
  - Gemfile
54
+ - Gemfile.lock
47
55
  - README
48
56
  - Rakefile
49
57
  - TODO
50
58
  - bin/blazing
51
59
  - blazing.gemspec
60
+ - lib/_old/blazing.rb
61
+ - lib/_old/blazing/base.rb
62
+ - lib/_old/blazing/cli.rb
63
+ - lib/_old/blazing/config.rb
64
+ - lib/_old/blazing/config/helper.rb
65
+ - lib/_old/blazing/remote.rb
66
+ - lib/_old/blazing/target.rb
67
+ - lib/_old/blazing/version.rb
52
68
  - lib/blazing.rb
53
- - lib/blazing/base.rb
54
- - lib/blazing/cli.rb
69
+ - lib/blazing/cli/base.rb
70
+ - lib/blazing/cli/create.rb
71
+ - lib/blazing/cli/hook.rb
72
+ - lib/blazing/cli/templates/blazing.tt
73
+ - lib/blazing/cli/templates/post-hook.tt
74
+ - lib/blazing/cli/templates/pre-hook.tt
55
75
  - lib/blazing/config.rb
76
+ - lib/blazing/logger.rb
77
+ - lib/blazing/object.rb
78
+ - lib/blazing/recipe.rb
56
79
  - lib/blazing/remote.rb
57
80
  - lib/blazing/target.rb
58
- - lib/blazing/templates/blazing.tt
59
- - lib/blazing/templates/post-hook.tt
60
- - lib/blazing/templates/pre-hook.tt
61
81
  - lib/blazing/version.rb
62
82
  has_rdoc: true
63
- homepage: ""
83
+ homepage: https://github.com/effkay/blazing
64
84
  licenses: []
65
85
 
66
86
  post_install_message:
@@ -69,7 +89,6 @@ rdoc_options: []
69
89
  require_paths:
70
90
  - lib
71
91
  required_ruby_version: !ruby/object:Gem::Requirement
72
- none: false
73
92
  requirements:
74
93
  - - ">="
75
94
  - !ruby/object:Gem::Version
@@ -77,7 +96,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
77
96
  - 0
78
97
  version: "0"
79
98
  required_rubygems_version: !ruby/object:Gem::Requirement
80
- none: false
81
99
  requirements:
82
100
  - - ">="
83
101
  - !ruby/object:Gem::Version
@@ -86,8 +104,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
86
104
  version: "0"
87
105
  requirements: []
88
106
 
89
- rubyforge_project: blazing
90
- rubygems_version: 1.3.7
107
+ rubyforge_project:
108
+ rubygems_version: 1.3.6
91
109
  signing_key:
92
110
  specification_version: 3
93
111
  summary: blazing fast deployment
@@ -1,22 +0,0 @@
1
- #
2
- # blazing config file -- generated on <%= Time.now %>
3
- #
4
-
5
- blazing.repository '<%= repository %>'
6
-
7
- blazing.target :global do
8
-
9
- # recipes [:rvm, :bundler, :maintenance_page]
10
- deploy_to '<%= username %>@<%= hostname %>:<%= path %>'
11
-
12
- # default_target :somethingelsethandefault
13
- # sync dirs
14
-
15
- end
16
-
17
- # Above sample setup is for deploying on a single host. Below is how a multi stage/multi host setup might look like
18
- # target specific configuration, overrides global configuration
19
- # target :sometarget do
20
- # ...
21
- #
22
- # end
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require 'rubygems'
4
- require 'blazing'
5
-
6
- Blazing::Remote.post_receive(<%= target.name %>)