capistrano_evrone_recipes 0.1.3 → 0.1.4
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/.gitignore +18 -0
- data/capistrano_evrone_recipes.gemspec +4 -20
- data/lib/capistrano_evrone_recipes/version.rb +1 -1
- metadata +5 -4
data/.gitignore
ADDED
|
@@ -12,26 +12,10 @@ Gem::Specification.new do |s|
|
|
|
12
12
|
|
|
13
13
|
s.description = s.summary
|
|
14
14
|
|
|
15
|
-
s.files
|
|
16
|
-
"
|
|
17
|
-
|
|
18
|
-
|
|
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
|
-
]
|
|
15
|
+
s.files = `git ls-files`.split("\n")
|
|
16
|
+
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
|
17
|
+
|
|
18
|
+
s.require_paths = ["lib"]
|
|
35
19
|
|
|
36
20
|
if s.respond_to? :specification_version then
|
|
37
21
|
s.specification_version = 3
|
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.
|
|
4
|
+
version: 0.1.4
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -97,9 +97,12 @@ executables: []
|
|
|
97
97
|
extensions: []
|
|
98
98
|
extra_rdoc_files: []
|
|
99
99
|
files:
|
|
100
|
-
-
|
|
100
|
+
- .gitignore
|
|
101
101
|
- Gemfile
|
|
102
102
|
- Gemfile.lock
|
|
103
|
+
- README.md
|
|
104
|
+
- Rakefile
|
|
105
|
+
- capistrano_evrone_recipes.gemspec
|
|
103
106
|
- lib/capistrano_evrone_recipes/capistrano.rb
|
|
104
107
|
- lib/capistrano_evrone_recipes/recipes/assets.rb
|
|
105
108
|
- lib/capistrano_evrone_recipes/recipes/crontab.rb
|
|
@@ -113,8 +116,6 @@ files:
|
|
|
113
116
|
- lib/capistrano_evrone_recipes/recipes/unicorn.rb
|
|
114
117
|
- lib/capistrano_evrone_recipes/util.rb
|
|
115
118
|
- lib/capistrano_evrone_recipes/version.rb
|
|
116
|
-
- Rakefile
|
|
117
|
-
- README.md
|
|
118
119
|
homepage: http://github.com/dima-exe/capistrano_evrone_recipes
|
|
119
120
|
licenses: []
|
|
120
121
|
post_install_message:
|