meskyanichi-generators 0.4.0 → 0.4.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 +7 -0
- data/VERSION.yml +1 -1
- data/generators/capistrano_template/templates/deploy.rb +4 -6
- data/generators.gemspec +3 -3
- metadata +3 -3
data/CHANGELOG
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
Meskyanichi - Generators |0.4.1|
|
2
|
+
-----------------------------------------------------------
|
3
|
+
|
4
|
+
- Removed the creation of the images, videos and files directories
|
5
|
+
- chmod 755 on the assets directory
|
6
|
+
|
7
|
+
|
1
8
|
Meskyanichi - Generators |0.4.0|
|
2
9
|
-----------------------------------------------------------
|
3
10
|
|
data/VERSION.yml
CHANGED
@@ -65,12 +65,9 @@ namespace :deploy do
|
|
65
65
|
run "touch #{shared_path}/log/production.log"
|
66
66
|
run "chmod 0666 #{shared_path}/log/production.log"
|
67
67
|
run "mkdir #{shared_path}/db"
|
68
|
-
run "
|
69
|
-
run "
|
70
|
-
run "
|
71
|
-
run "chmod 777 #{shared_path}/assets/videos"
|
72
|
-
run "mkdir -p #{shared_path}/assets/files"
|
73
|
-
run "chmod 777 #{shared_path}/assets/files"
|
68
|
+
run "chmod 755 #{shared_path}/db"
|
69
|
+
run "mkdir #{shared_path}/assets"
|
70
|
+
run "chmod 755 #{shared_path}/assets"
|
74
71
|
end
|
75
72
|
|
76
73
|
desc "Syncs the database.yml to the server"
|
@@ -82,6 +79,7 @@ namespace :deploy do
|
|
82
79
|
desc "Syncs the production sqlite3 file to the server."
|
83
80
|
task :sync_sqlite3 do
|
84
81
|
system "rsync -vr --exclude='.DS_Store' db/production.sqlite3 #{user}@#{application}:#{shared_path}/db/production.sqlite3"
|
82
|
+
run "chmod 755 #{shared_path}/db/production.sqlite3"
|
85
83
|
end
|
86
84
|
|
87
85
|
desc "Reset Capistrano Environment."
|
data/generators.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = %q{generators}
|
5
|
-
s.version = "0.4.
|
5
|
+
s.version = "0.4.1"
|
6
6
|
|
7
7
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
8
8
|
s.authors = ["Michael"]
|
@@ -27,11 +27,11 @@ Gem::Specification.new do |s|
|
|
27
27
|
"generators/git_template/git_template_generator.rb",
|
28
28
|
"generators/git_template/templates/git_ignore_empty.txt",
|
29
29
|
"generators/git_template/templates/git_ignore_template.txt.erb",
|
30
|
+
"generators/paperclip_template/paperclip_template_generator.rb",
|
31
|
+
"generators/paperclip_template/templates/model.rb",
|
30
32
|
"generators/rake_tasks/.gitignore",
|
31
33
|
"generators/rake_tasks/repository/repository_rake_tasks_generator.rb",
|
32
34
|
"generators/rake_tasks/repository/templates/repository.rake",
|
33
|
-
"generators/paperclip_template/paperclip_template_generator.rb",
|
34
|
-
"generators/paperclip_template/templates/model.rb",
|
35
35
|
"lib/generators.rb",
|
36
36
|
"test/generators_test.rb",
|
37
37
|
"test/test_helper.rb"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: meskyanichi-generators
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael
|
@@ -76,11 +76,11 @@ files:
|
|
76
76
|
- generators/git_template/git_template_generator.rb
|
77
77
|
- generators/git_template/templates/git_ignore_empty.txt
|
78
78
|
- generators/git_template/templates/git_ignore_template.txt.erb
|
79
|
+
- generators/paperclip_template/paperclip_template_generator.rb
|
80
|
+
- generators/paperclip_template/templates/model.rb
|
79
81
|
- generators/rake_tasks/.gitignore
|
80
82
|
- generators/rake_tasks/repository/repository_rake_tasks_generator.rb
|
81
83
|
- generators/rake_tasks/repository/templates/repository.rake
|
82
|
-
- generators/paperclip_template/paperclip_template_generator.rb
|
83
|
-
- generators/paperclip_template/templates/model.rb
|
84
84
|
- lib/generators.rb
|
85
85
|
- test/generators_test.rb
|
86
86
|
- test/test_helper.rb
|