simple_deploy 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2012 Intuit Inc
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -45,6 +45,7 @@ EOS
45
45
 
46
46
  unless environment_provided?
47
47
  puts "Please specify an environment."
48
+ Config.new.environments.keys.each { |e| puts e }
48
49
  exit 1
49
50
  end
50
51
  end
@@ -4,7 +4,7 @@ module SimpleDeploy
4
4
  attrs = []
5
5
  read_attributes.each do |attribs|
6
6
  a = attribs.split('=')
7
- attrs << { a.first => a.last }
7
+ attrs << { a.first.gsub(/\s+/, "") => a.last }
8
8
  end
9
9
  attrs
10
10
  end
@@ -1,3 +1,3 @@
1
1
  module SimpleDeploy
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
21
21
  s.add_development_dependency "rspec"
22
22
 
23
23
  s.add_runtime_dependency "capistrano"
24
- s.add_runtime_dependency "heirloom", '= 0.0.9'
25
- s.add_runtime_dependency "stackster", '= 0.0.5'
24
+ s.add_runtime_dependency "heirloom", '= 0.1.1'
25
+ s.add_runtime_dependency "stackster", '= 0.1.1'
26
26
  s.add_runtime_dependency "trollop"
27
27
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_deploy
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:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-06-16 00:00:00.000000000 Z
12
+ date: 2012-06-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rspec
16
- requirement: &70196644202100 !ruby/object:Gem::Requirement
16
+ requirement: &70093821735780 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '0'
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *70196644202100
24
+ version_requirements: *70093821735780
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: capistrano
27
- requirement: &70196644201500 !ruby/object:Gem::Requirement
27
+ requirement: &70093821734660 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,32 +32,32 @@ dependencies:
32
32
  version: '0'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *70196644201500
35
+ version_requirements: *70093821734660
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: heirloom
38
- requirement: &70196644200800 !ruby/object:Gem::Requirement
38
+ requirement: &70093821734020 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - =
42
42
  - !ruby/object:Gem::Version
43
- version: 0.0.9
43
+ version: 0.1.1
44
44
  type: :runtime
45
45
  prerelease: false
46
- version_requirements: *70196644200800
46
+ version_requirements: *70093821734020
47
47
  - !ruby/object:Gem::Dependency
48
48
  name: stackster
49
- requirement: &70196644200040 !ruby/object:Gem::Requirement
49
+ requirement: &70093821733480 !ruby/object:Gem::Requirement
50
50
  none: false
51
51
  requirements:
52
52
  - - =
53
53
  - !ruby/object:Gem::Version
54
- version: 0.0.5
54
+ version: 0.1.1
55
55
  type: :runtime
56
56
  prerelease: false
57
- version_requirements: *70196644200040
57
+ version_requirements: *70093821733480
58
58
  - !ruby/object:Gem::Dependency
59
59
  name: trollop
60
- requirement: &70196644199620 !ruby/object:Gem::Requirement
60
+ requirement: &70093821732920 !ruby/object:Gem::Requirement
61
61
  none: false
62
62
  requirements:
63
63
  - - ! '>='
@@ -65,7 +65,7 @@ dependencies:
65
65
  version: '0'
66
66
  type: :runtime
67
67
  prerelease: false
68
- version_requirements: *70196644199620
68
+ version_requirements: *70093821732920
69
69
  description: Its what I do
70
70
  email:
71
71
  - brett@weav.net
@@ -77,6 +77,7 @@ files:
77
77
  - .gitignore
78
78
  - .rvmrc
79
79
  - Gemfile
80
+ - LICENSE
80
81
  - Rakefile
81
82
  - bin/simple_deploy
82
83
  - lib/simple_deploy.rb
@@ -108,7 +109,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
108
109
  version: '0'
109
110
  segments:
110
111
  - 0
111
- hash: 523987936351043911
112
+ hash: 125409664021585432
112
113
  required_rubygems_version: !ruby/object:Gem::Requirement
113
114
  none: false
114
115
  requirements:
@@ -117,7 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
117
118
  version: '0'
118
119
  segments:
119
120
  - 0
120
- hash: 523987936351043911
121
+ hash: 125409664021585432
121
122
  requirements: []
122
123
  rubyforge_project: simple_deploy
123
124
  rubygems_version: 1.8.16