yiifony 0.0.4 → 0.0.5

Sign up to get free protection for your applications and to get access to all the features.
data/Gemfile ADDED
@@ -0,0 +1,13 @@
1
+ source "http://rubygems.org"
2
+
3
+ gem 'capistrano', '>= 2.13.5'
4
+ gem 'capistrano-ext', '>= 1.2.1'
5
+
6
+ # Add dependencies to develop your gem here.
7
+ # Include everything needed to run rake, tests, features, etc.
8
+ group :development do
9
+ gem "shoulda", ">= 0"
10
+ gem "bundler", "~> 1.2.0"
11
+ gem "jeweler", "~> 1.8.4"
12
+ gem "rcov", ">= 0"
13
+ end
data/Gemfile.lock ADDED
@@ -0,0 +1,42 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ capistrano (2.13.5)
5
+ highline
6
+ net-scp (>= 1.0.0)
7
+ net-sftp (>= 2.0.0)
8
+ net-ssh (>= 2.0.14)
9
+ net-ssh-gateway (>= 1.1.0)
10
+ capistrano-ext (1.2.1)
11
+ capistrano (>= 1.0.0)
12
+ git (1.2.5)
13
+ highline (1.6.15)
14
+ jeweler (1.8.4)
15
+ bundler (~> 1.0)
16
+ git (>= 1.2.5)
17
+ rake
18
+ rdoc
19
+ json (1.7.5)
20
+ net-scp (1.0.4)
21
+ net-ssh (>= 1.99.1)
22
+ net-sftp (2.0.5)
23
+ net-ssh (>= 2.0.9)
24
+ net-ssh (2.6.2)
25
+ net-ssh-gateway (1.1.0)
26
+ net-ssh (>= 1.99.1)
27
+ rake (10.0.3)
28
+ rcov (0.9.9)
29
+ rdoc (3.12)
30
+ json (~> 1.4)
31
+ shoulda (2.11.3)
32
+
33
+ PLATFORMS
34
+ ruby
35
+
36
+ DEPENDENCIES
37
+ bundler (~> 1.2.0)
38
+ capistrano (>= 2.13.5)
39
+ capistrano-ext (>= 1.2.1)
40
+ jeweler (~> 1.8.4)
41
+ rcov
42
+ shoulda
data/Rakefile ADDED
@@ -0,0 +1,60 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "yiifony"
18
+ gem.homepage = "http://github.com/voronov/yiifony"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{Yii deployment with capistrano}
21
+ gem.description = %Q{Yii deployment with capistrano, useful tasks, rollback deployment and more}
22
+ gem.email = "voronov84@gmail.com"
23
+ gem.authors = ["Andrey Voronov"]
24
+ gem.executables = ['yiifony']
25
+ gem.files.include "lib/yiifony.rb"
26
+ # Include your dependencies below. Runtime dependencies are required when using your gem,
27
+ # and development dependencies are only needed for development (ie running rake tasks, tests, etc)
28
+ gem.add_runtime_dependency 'capistrano', '>= 2.5.20'
29
+ gem.add_runtime_dependency 'capistrano-ext', '>= 1.2.1'
30
+ gem.add_development_dependency 'capistrano', '>= 2.5.20'
31
+ gem.add_development_dependency 'capistrano-ext', '>= 1.2.1'
32
+ end
33
+ Jeweler::RubygemsDotOrgTasks.new
34
+
35
+ require 'rake/testtask'
36
+ Rake::TestTask.new(:test) do |test|
37
+ test.libs << 'lib' << 'test'
38
+ test.pattern = 'test/**/test_*.rb'
39
+ test.verbose = true
40
+ end
41
+
42
+ require 'rcov/rcovtask'
43
+ Rcov::RcovTask.new do |test|
44
+ test.libs << 'test'
45
+ test.pattern = 'test/**/test_*.rb'
46
+ test.verbose = true
47
+ test.rcov_opts << '--exclude "gems/*"'
48
+ end
49
+
50
+ task :default => :test
51
+
52
+ require 'rdoc/task'
53
+ Rake::RDocTask.new do |rdoc|
54
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
55
+
56
+ rdoc.rdoc_dir = 'rdoc'
57
+ rdoc.title = "test #{version}"
58
+ rdoc.rdoc_files.include('README*')
59
+ rdoc.rdoc_files.include('lib/**/*.rb')
60
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.5
data/bin/yiifony CHANGED
@@ -42,7 +42,7 @@ files = {
42
42
  load 'config/deploy' # remove this line to skip loading any of the default tasks
43
43
  FILE
44
44
 
45
- "config/deploy.rb" => 'set :application, "set your application name here"
45
+ "protected/config/deploy.rb" => 'set :application, "set your application name here"
46
46
  set :domain, "#{application}.com"
47
47
  set :deploy_to, "/var/www/#{domain}"
48
48
 
data/test/helper.rb ADDED
@@ -0,0 +1,18 @@
1
+ require 'rubygems'
2
+ require 'bundler'
3
+ begin
4
+ Bundler.setup(:default, :development)
5
+ rescue Bundler::BundlerError => e
6
+ $stderr.puts e.message
7
+ $stderr.puts "Run `bundle install` to install missing gems"
8
+ exit e.status_code
9
+ end
10
+ require 'test/unit'
11
+ require 'shoulda'
12
+
13
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
14
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
15
+ require 'yiifony'
16
+
17
+ class Test::Unit::TestCase
18
+ end
@@ -0,0 +1,7 @@
1
+ require 'helper'
2
+
3
+ class TestYiifony < Test::Unit::TestCase
4
+ should "probably rename this file and start testing for real" do
5
+ flunk "hey buddy, you should probably rename this file and start testing for real"
6
+ end
7
+ end
data/yiifony.gemspec ADDED
@@ -0,0 +1,78 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = "yiifony"
8
+ s.version = "0.0.5"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Andrey Voronov"]
12
+ s.date = "2012-12-24"
13
+ s.description = "Yii deployment with capistrano, useful tasks, rollback deployment and more"
14
+ s.email = "voronov84@gmail.com"
15
+ s.executables = ["yiifony"]
16
+ s.extra_rdoc_files = [
17
+ "LICENSE.txt",
18
+ "README.rdoc"
19
+ ]
20
+ s.files = [
21
+ "Gemfile",
22
+ "Gemfile.lock",
23
+ "LICENSE.txt",
24
+ "README.rdoc",
25
+ "Rakefile",
26
+ "VERSION",
27
+ "bin/yiifony",
28
+ "lib/yiifony.rb",
29
+ "test/helper.rb",
30
+ "test/test_yiifony.rb",
31
+ "yiifony.gemspec"
32
+ ]
33
+ s.homepage = "http://github.com/voronov/yiifony"
34
+ s.licenses = ["MIT"]
35
+ s.require_paths = ["lib"]
36
+ s.rubygems_version = "1.8.24"
37
+ s.summary = "Yii deployment with capistrano"
38
+
39
+ if s.respond_to? :specification_version then
40
+ s.specification_version = 3
41
+
42
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
43
+ s.add_runtime_dependency(%q<capistrano>, [">= 2.13.5"])
44
+ s.add_runtime_dependency(%q<capistrano-ext>, [">= 1.2.1"])
45
+ s.add_development_dependency(%q<shoulda>, [">= 0"])
46
+ s.add_development_dependency(%q<bundler>, ["~> 1.2.0"])
47
+ s.add_development_dependency(%q<jeweler>, ["~> 1.8.4"])
48
+ s.add_development_dependency(%q<rcov>, [">= 0"])
49
+ s.add_runtime_dependency(%q<capistrano>, [">= 2.5.20"])
50
+ s.add_runtime_dependency(%q<capistrano-ext>, [">= 1.2.1"])
51
+ s.add_development_dependency(%q<capistrano>, [">= 2.5.20"])
52
+ s.add_development_dependency(%q<capistrano-ext>, [">= 1.2.1"])
53
+ else
54
+ s.add_dependency(%q<capistrano>, [">= 2.13.5"])
55
+ s.add_dependency(%q<capistrano-ext>, [">= 1.2.1"])
56
+ s.add_dependency(%q<shoulda>, [">= 0"])
57
+ s.add_dependency(%q<bundler>, ["~> 1.2.0"])
58
+ s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
59
+ s.add_dependency(%q<rcov>, [">= 0"])
60
+ s.add_dependency(%q<capistrano>, [">= 2.5.20"])
61
+ s.add_dependency(%q<capistrano-ext>, [">= 1.2.1"])
62
+ s.add_dependency(%q<capistrano>, [">= 2.5.20"])
63
+ s.add_dependency(%q<capistrano-ext>, [">= 1.2.1"])
64
+ end
65
+ else
66
+ s.add_dependency(%q<capistrano>, [">= 2.13.5"])
67
+ s.add_dependency(%q<capistrano-ext>, [">= 1.2.1"])
68
+ s.add_dependency(%q<shoulda>, [">= 0"])
69
+ s.add_dependency(%q<bundler>, ["~> 1.2.0"])
70
+ s.add_dependency(%q<jeweler>, ["~> 1.8.4"])
71
+ s.add_dependency(%q<rcov>, [">= 0"])
72
+ s.add_dependency(%q<capistrano>, [">= 2.5.20"])
73
+ s.add_dependency(%q<capistrano-ext>, [">= 1.2.1"])
74
+ s.add_dependency(%q<capistrano>, [">= 2.5.20"])
75
+ s.add_dependency(%q<capistrano-ext>, [">= 1.2.1"])
76
+ end
77
+ end
78
+
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yiifony
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.4
4
+ version: 0.0.5
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2012-12-18 00:00:00.000000000 Z
12
+ date: 2012-12-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: capistrano
@@ -181,10 +181,17 @@ extra_rdoc_files:
181
181
  - LICENSE.txt
182
182
  - README.rdoc
183
183
  files:
184
- - lib/yiifony.rb
184
+ - Gemfile
185
+ - Gemfile.lock
185
186
  - LICENSE.txt
186
187
  - README.rdoc
188
+ - Rakefile
189
+ - VERSION
187
190
  - bin/yiifony
191
+ - lib/yiifony.rb
192
+ - test/helper.rb
193
+ - test/test_yiifony.rb
194
+ - yiifony.gemspec
188
195
  homepage: http://github.com/voronov/yiifony
189
196
  licenses:
190
197
  - MIT
@@ -200,7 +207,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
200
207
  version: '0'
201
208
  segments:
202
209
  - 0
203
- hash: -3766318757577704613
210
+ hash: 4066236224029430647
204
211
  required_rubygems_version: !ruby/object:Gem::Requirement
205
212
  none: false
206
213
  requirements: