capistrano_evrone_recipes 0.1.2 → 0.1.3

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/Gemfile ADDED
@@ -0,0 +1,3 @@
1
+ source "http://rubygems.org"
2
+
3
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,55 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ capistrano_evrone_recipes (0.1.2)
5
+ capistrano (>= 2.13.5)
6
+ colored
7
+ foreman_export_runitu
8
+ unicorn
9
+ whenever
10
+
11
+ GEM
12
+ remote: http://rubygems.org/
13
+ specs:
14
+ activesupport (3.2.9)
15
+ i18n (~> 0.6)
16
+ multi_json (~> 1.0)
17
+ capistrano (2.13.5)
18
+ highline
19
+ net-scp (>= 1.0.0)
20
+ net-sftp (>= 2.0.0)
21
+ net-ssh (>= 2.0.14)
22
+ net-ssh-gateway (>= 1.1.0)
23
+ chronic (0.8.0)
24
+ colored (1.2)
25
+ foreman (0.60.2)
26
+ thor (>= 0.13.6)
27
+ foreman_export_runitu (0.0.2)
28
+ foreman
29
+ highline (1.6.15)
30
+ i18n (0.6.1)
31
+ kgio (2.7.4)
32
+ multi_json (1.3.7)
33
+ net-scp (1.0.4)
34
+ net-ssh (>= 1.99.1)
35
+ net-sftp (2.0.5)
36
+ net-ssh (>= 2.0.9)
37
+ net-ssh (2.6.1)
38
+ net-ssh-gateway (1.1.0)
39
+ net-ssh (>= 1.99.1)
40
+ rack (1.4.1)
41
+ raindrops (0.10.0)
42
+ thor (0.16.0)
43
+ unicorn (4.4.0)
44
+ kgio (~> 2.6)
45
+ rack
46
+ raindrops (~> 0.7)
47
+ whenever (0.8.0)
48
+ activesupport (>= 2.3.4)
49
+ chronic (>= 0.6.3)
50
+
51
+ PLATFORMS
52
+ ruby
53
+
54
+ DEPENDENCIES
55
+ capistrano_evrone_recipes!
data/Rakefile ADDED
@@ -0,0 +1,11 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks
3
+
4
+ require 'rake/testtask'
5
+ Rake::TestTask.new(:test) do |test|
6
+ test.libs << 'lib' << 'test'
7
+ test.pattern = 'test/**/*_test.rb'
8
+ test.verbose = true
9
+ end
10
+
11
+ task :default => :test
@@ -0,0 +1,59 @@
1
+ $:.unshift File.expand_path("../lib", __FILE__)
2
+ require "capistrano_evrone_recipes/version"
3
+
4
+ Gem::Specification.new do |s|
5
+ s.name = "capistrano_evrone_recipes"
6
+ s.version = CapistranoEvroneRecipes::VERSION
7
+
8
+ s.author = "Dmitry Galinsky"
9
+ s.email = "dima.exe@gmail.com"
10
+ s.homepage = "http://github.com/dima-exe/capistrano_evrone_recipes"
11
+ s.summary = "Capistrano recipes used in evrone company"
12
+
13
+ s.description = s.summary
14
+
15
+ s.files = [
16
+ "capistrano_evrone_recipes.gemspec",
17
+ "Gemfile",
18
+ "Gemfile.lock",
19
+ "lib/capistrano_evrone_recipes/capistrano.rb",
20
+ "lib/capistrano_evrone_recipes/recipes/assets.rb",
21
+ "lib/capistrano_evrone_recipes/recipes/crontab.rb",
22
+ "lib/capistrano_evrone_recipes/recipes/deploy.rb",
23
+ "lib/capistrano_evrone_recipes/recipes/foreman.rb",
24
+ "lib/capistrano_evrone_recipes/recipes/login.rb",
25
+ "lib/capistrano_evrone_recipes/recipes/migrate.rb",
26
+ "lib/capistrano_evrone_recipes/recipes/rails.rb",
27
+ "lib/capistrano_evrone_recipes/recipes/silent.rb",
28
+ "lib/capistrano_evrone_recipes/recipes/sphinx.rb",
29
+ "lib/capistrano_evrone_recipes/recipes/unicorn.rb",
30
+ "lib/capistrano_evrone_recipes/util.rb",
31
+ "lib/capistrano_evrone_recipes/version.rb",
32
+ "Rakefile",
33
+ "README.md"
34
+ ]
35
+
36
+ if s.respond_to? :specification_version then
37
+ s.specification_version = 3
38
+
39
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
40
+ s.add_runtime_dependency(%q<capistrano>, [">= 2.13.5"])
41
+ s.add_runtime_dependency(%q<colored>, [">= 0"])
42
+ s.add_runtime_dependency(%q<unicorn>, [">= 0"])
43
+ s.add_runtime_dependency(%q<foreman_export_runitu>, [">= 0"])
44
+ s.add_runtime_dependency(%q<whenever>, [">= 0"])
45
+ else
46
+ s.add_dependency(%q<capistrano>, [">= 2.13.5"])
47
+ s.add_dependency(%q<colored>, [">= 0"])
48
+ s.add_dependency(%q<unicorn>, [">= 0"])
49
+ s.add_dependency(%q<foreman_export_runitu>, [">= 0"])
50
+ s.add_dependency(%q<whenever>, [">= 0"])
51
+ end
52
+ else
53
+ s.add_dependency(%q<capistrano>, [">= 2.13.5"])
54
+ s.add_dependency(%q<colored>, [">= 0"])
55
+ s.add_dependency(%q<unicorn>, [">= 0"])
56
+ s.add_dependency(%q<foreman_export_runitu>, [">= 0"])
57
+ s.add_dependency(%q<whenever>, [">= 0"])
58
+ end
59
+ end
@@ -1,9 +1,9 @@
1
1
  module CapistranoEvroneRecipes
2
- class Version
2
+ class VERSION
3
3
 
4
4
  MAJOR = 0
5
5
  MINOR = 1
6
- PATCH = 2
6
+ PATCH = 3
7
7
 
8
8
  def self.to_s
9
9
  "#{MAJOR}.#{MINOR}.#{PATCH}"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capistrano_evrone_recipes
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -97,6 +97,9 @@ executables: []
97
97
  extensions: []
98
98
  extra_rdoc_files: []
99
99
  files:
100
+ - capistrano_evrone_recipes.gemspec
101
+ - Gemfile
102
+ - Gemfile.lock
100
103
  - lib/capistrano_evrone_recipes/capistrano.rb
101
104
  - lib/capistrano_evrone_recipes/recipes/assets.rb
102
105
  - lib/capistrano_evrone_recipes/recipes/crontab.rb
@@ -110,6 +113,7 @@ files:
110
113
  - lib/capistrano_evrone_recipes/recipes/unicorn.rb
111
114
  - lib/capistrano_evrone_recipes/util.rb
112
115
  - lib/capistrano_evrone_recipes/version.rb
116
+ - Rakefile
113
117
  - README.md
114
118
  homepage: http://github.com/dima-exe/capistrano_evrone_recipes
115
119
  licenses: []