capifony 2.0.0 → 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/CHANGELOG +4 -0
  2. data/README +3 -2
  3. data/lib/symfony2.rb +1 -1
  4. metadata +5 -5
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ == 2.0.1 / March 30, 2011
2
+
3
+ * fixed wrong assetic command
4
+
1
5
  == 2.0.0 / March 22, 2011
2
6
 
3
7
  * optimized shared commands in symfony1 scripts
data/README CHANGED
@@ -5,7 +5,7 @@ Capistrano is an open source tool for running scripts on multiple servers. It’
5
5
 
6
6
  ## Prerequisites ##
7
7
 
8
- - Symfony 1.4+ (1.2 can work with small manual changes)
8
+ - Symfony 1.4+ OR Symfony2
9
9
  - Must have SSH access to the server you are deploying to.
10
10
  - Must have Ruby and RubyGems installed on your machine (not required for deployment server)’
11
11
 
@@ -28,7 +28,8 @@ CD to your project directory & run:
28
28
 
29
29
  capifony .
30
30
 
31
- This will create `Capfile` in your project root & `deploy.rb` config file in `config` directory
31
+ This will create `Capfile` in your project root & `deploy.rb` config file in `config` (for symfony)
32
+ and `app/config` (for Symfony2) directory
32
33
 
33
34
  Fill up your `config/deploy.rb` with your server connection data
34
35
 
data/lib/symfony2.rb CHANGED
@@ -90,7 +90,7 @@ namespace :symfony do
90
90
  namespace :assetic do
91
91
  desc "Dumps all assets to the filesystem"
92
92
  task :dump do
93
- run "cd #{latest_release} && #{php_bin} #{app_path}/console assets:install #{web_path} --env=#{symfony_env_prod}"
93
+ run "cd #{latest_release} && #{php_bin} #{app_path}/console assetic:dump #{web_path} --env=#{symfony_env_prod}"
94
94
  end
95
95
  end
96
96
 
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: 15
4
+ hash: 13
5
5
  prerelease:
6
6
  segments:
7
7
  - 2
8
8
  - 0
9
- - 0
10
- version: 2.0.0
9
+ - 1
10
+ version: 2.0.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Konstantin Kudryashov
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-03-22 00:00:00 +02:00
18
+ date: 2011-03-30 00:00:00 +03:00
19
19
  default_executable:
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency
@@ -80,7 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
80
80
  requirements: []
81
81
 
82
82
  rubyforge_project: capifony
83
- rubygems_version: 1.4.2
83
+ rubygems_version: 1.6.2
84
84
  signing_key:
85
85
  specification_version: 3
86
86
  summary: Deploying symfony PHP applications with Capistrano.