capifony 2.1.0 → 2.1.1

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/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ == 2.1.1 / July 13, 2011
2
+
3
+ * support for rubygems 1.8
4
+
1
5
  == 2.1.0 / June 24, 2011
2
6
 
3
7
  * fully support different app path
data/bin/capifony CHANGED
@@ -54,7 +54,7 @@ if symfony_version == 2
54
54
  "Capfile" => unindent(<<-FILE),
55
55
  load 'deploy' if respond_to?(:namespace) # cap2 differentiator
56
56
  Dir['vendor/bundles/*/*/recipes/*.rb'].each { |bundle| load(bundle) }
57
- load Gem.required_location('capifony', 'symfony2.rb')
57
+ load Gem.find_files('symfony2.rb').last.to_s
58
58
  load '#{symfony_app_path}/config/deploy'
59
59
  FILE
60
60
 
@@ -80,7 +80,7 @@ else
80
80
  "Capfile" => unindent(<<-FILE),
81
81
  load 'deploy' if respond_to?(:namespace) # cap2 differentiator
82
82
  Dir['plugins/*/lib/recipes/*.rb'].each { |plugin| load(plugin) }
83
- load Gem.required_location('capifony', 'symfony1.rb')
83
+ load Gem.find_files('symfony1.rb').last.to_s
84
84
  load 'config/deploy'
85
85
  FILE
86
86
 
data/lib/symfony1.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'yaml'
2
- load Gem.required_location('capifony', 'capifony.rb')
2
+ load Gem.find_files('capifony.rb').last.to_s
3
3
 
4
4
  # Dirs that need to remain the same between deploys (shared dirs)
5
5
  set :shared_children, %w(log web/uploads)
data/lib/symfony2.rb CHANGED
@@ -1,4 +1,4 @@
1
- load Gem.required_location('capifony', 'capifony.rb')
1
+ load Gem.find_files('capifony.rb').last.to_s
2
2
 
3
3
  # Symfony application path
4
4
  set :app_path, "app"
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: capifony
3
3
  version: !ruby/object:Gem::Version
4
- hash: 11
4
+ hash: 9
5
5
  prerelease:
6
6
  segments:
7
7
  - 2
8
8
  - 1
9
- - 0
10
- version: 2.1.0
9
+ - 1
10
+ version: 2.1.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Konstantin Kudryashov
@@ -15,8 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-06-24 00:00:00 +03:00
19
- default_executable:
18
+ date: 2011-07-12 00:00:00 Z
20
19
  dependencies:
21
20
  - !ruby/object:Gem::Dependency
22
21
  name: capistrano
@@ -50,7 +49,6 @@ files:
50
49
  - README.md
51
50
  - LICENSE
52
51
  - CHANGELOG
53
- has_rdoc: true
54
52
  homepage: http://capifony.info
55
53
  licenses: []
56
54
 
@@ -80,7 +78,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
80
78
  requirements: []
81
79
 
82
80
  rubyforge_project: capifony
83
- rubygems_version: 1.6.2
81
+ rubygems_version: 1.8.5
84
82
  signing_key:
85
83
  specification_version: 3
86
84
  summary: Deploying symfony PHP applications with Capistrano.