Commit e9757353d9414a7e9ba1d180611ece4cbbdb499c
1 parent
aef57cd0
Exists in
master
and in
5 other branches
Update software tasks
Showing
3 changed files
with
47 additions
and
44 deletions
Show diff stats
lib/tasks/create_categories.rake
... | ... | @@ -2,12 +2,15 @@ namespace :software do |
2 | 2 | desc "Create software categories" |
3 | 3 | task :create_categories => :environment do |
4 | 4 | Environment.all.each do |env| |
5 | - if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("SoftwareCommunitiesPlugin") | |
5 | + if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("SoftwareCommunities") | |
6 | + print 'Creating categories: ' | |
6 | 7 | software = Category.create(:name => _("Software"), :environment => env) |
7 | 8 | Category::SOFTWARE_CATEGORIES.each do |category_name| |
9 | + print '.' | |
8 | 10 | Category.create(:name => category_name, :environment => env, :parent => software) |
9 | 11 | end |
12 | + puts '' | |
10 | 13 | end |
11 | 14 | end |
12 | 15 | end |
13 | -end | |
14 | 16 | \ No newline at end of file |
17 | +end | ... | ... |
... | ... | @@ -0,0 +1,42 @@ |
1 | +namespace :software do | |
2 | + desc "Create software licences" | |
3 | + | |
4 | + task :create_licenses => :environment do | |
5 | + Environment.all.each do |env| | |
6 | + if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("SoftwareCommunities") | |
7 | + list_file = File.open "plugins/software_communities/public/static/licences.txt", "r" | |
8 | + | |
9 | + version_or_link = 'version' | |
10 | + can_save = true | |
11 | + licence = nil | |
12 | + | |
13 | + print 'Creating Licenses: ' | |
14 | + list_file.each_line do |line| | |
15 | + data = line.strip | |
16 | + | |
17 | + if data.length != 0 | |
18 | + if version_or_link == 'version' | |
19 | + can_save = LicenseInfo.find_by_version(data) ? false : true | |
20 | + licence = LicenseInfo::new :version => data | |
21 | + version_or_link = 'link' | |
22 | + elsif version_or_link == 'link' | |
23 | + licence.link = data | |
24 | + | |
25 | + if can_save | |
26 | + licence.save! | |
27 | + print '.' | |
28 | + else | |
29 | + print 'F' | |
30 | + end | |
31 | + | |
32 | + version_or_link = 'version' | |
33 | + end | |
34 | + end | |
35 | + end | |
36 | + puts '' | |
37 | + | |
38 | + list_file.close | |
39 | + end | |
40 | + end | |
41 | + end | |
42 | +end | ... | ... |
lib/tasks/create_lincences.rake
... | ... | @@ -1,42 +0,0 @@ |
1 | -namespace :software do | |
2 | - desc "Create software licences" | |
3 | - | |
4 | - task :create_licenses => :environment do | |
5 | - Environment.all.each do |env| | |
6 | - if env.plugin_enabled?("MpogSoftware") or env.plugin_enabled?("SoftwareCommunitiesPlugin") | |
7 | - list_file = File.open "plugins/software_communities/public/static/licences.txt", "r" | |
8 | - | |
9 | - version_or_link = 'version' | |
10 | - can_save = true | |
11 | - licence = nil | |
12 | - | |
13 | - print 'Creating Licenses: ' | |
14 | - list_file.each_line do |line| | |
15 | - data = line.strip | |
16 | - | |
17 | - if data.length != 0 | |
18 | - if version_or_link == 'version' | |
19 | - can_save = LicenseInfo.find_by_version(data) ? false : true | |
20 | - licence = LicenseInfo::new :version => data | |
21 | - version_or_link = 'link' | |
22 | - elsif version_or_link == 'link' | |
23 | - licence.link = data | |
24 | - | |
25 | - if can_save | |
26 | - licence.save! | |
27 | - print '.' | |
28 | - else | |
29 | - print 'F' | |
30 | - end | |
31 | - | |
32 | - version_or_link = 'version' | |
33 | - end | |
34 | - end | |
35 | - end | |
36 | - puts '' | |
37 | - | |
38 | - list_file.close | |
39 | - end | |
40 | - end | |
41 | - end | |
42 | -end | |
43 | 0 | \ No newline at end of file |