-
Notifications
You must be signed in to change notification settings - Fork 3
/
Rakefile
113 lines (87 loc) · 2.81 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# encoding: utf-8
# -*- ruby -*-
$:.unshift File.join(File.dirname(__FILE__), "lib")
require 'rubygems'
require 'bundler/setup'
require "rake"
require "rake/clean"
require "fileutils"
require 'i18n-inflector/version'
require 'hoe'
task :default do
Rake::Task[:test].invoke
Rake::Task[:test].reenable
Rake::Task[:testv4].invoke
end
# Update Gemfile for I18n in version 4
task :gemfilev4 do
gemprev = ENV['BUNDLE_GEMFILE']
ENV['BUNDLE_GEMFILE'] = 'ci/i18nv4-Gemfile'
`rake bundler:gemfile`
ENV['BUNDLE_GEMFILE'] = gemprev
end
# Tests for I18n in version 4
task :testv4 do
gemprev = ENV['BUNDLE_GEMFILE']
ENV['BUNDLE_GEMFILE'] = 'ci/i18nv4-Gemfile'
`bundle install`
Rake::Task[:test].invoke
ENV['BUNDLE_GEMFILE'] = gemprev
end
desc "install by setup.rb"
task :install do
sh "sudo ruby setup.rb install"
end
### Gem
# Issue has been fixed in Psych, see:
# https://github.com/tenderlove/psych/commit/fe65329ce9ece399d61dadf1610e342ff456654e
#
#if !defined?(YAML::ENGINE).nil? && YAML::ENGINE.respond_to?(:yamler)
# YAML::ENGINE.yamler = 'syck'
#end
Hoe.plugin :bundler
Hoe.plugin :yard
Hoe.spec 'i18n-inflector' do
developer I18n::Inflector::DEVELOPER, I18n::Inflector::EMAIL
self.version = I18n::Inflector::VERSION
self.rubyforge_name = I18n::Inflector::NAME
self.summary = I18n::Inflector::SUMMARY
self.description = I18n::Inflector::DESCRIPTION
self.url = I18n::Inflector::URL
self.test_globs = %w(test/**/*_test.rb)
self.remote_rdoc_dir = ''
self.rsync_args << '--chmod=a+rX'
self.readme_file = 'README.rdoc'
self.history_file = 'docs/HISTORY'
extra_deps << ['i18n', '>= 0.4.1']
extra_dev_deps << ['test_declarative', '>= 0.0.5'] <<
['yard', '>= 0.8.6'] <<
['rdoc', '>= 3.8.0'] <<
['bundler', '>= 1.0.15'] <<
['hoe-bundler', '>= 1.2.0']
unless extra_dev_deps.flatten.include?('hoe-yard')
extra_dev_deps << ['hoe-yard', '>= 0.1.2']
end
end
task 'Manifest.txt' do
puts 'generating Manifest.txt from git'
sh %{git ls-files | grep -v gitignore > Manifest.txt}
sh %{git add Manifest.txt}
end
task 'ChangeLog' do
sh %{git log > ChangeLog}
end
desc "Fix documentation's file permissions"
task :docperm do
sh %{chmod -R a+rX doc}
end
### Sign & Publish
desc "Create signed tag in Git"
task :tag do
sh %{git tag -s v#{I18n::Inflector::VERSION} -m 'version #{I18n::Inflector::VERSION}'}
end
desc "Create external GnuPG signature for Gem"
task :gemsign do
sh %{gpg -u #{I18n::Inflector::EMAIL} -ab pkg/#{I18n::Inflector::NAME}-#{I18n::Inflector::VERSION}.gem \
-o pkg/#{I18n::Inflector::NAME}-#{I18n::Inflector::VERSION}.gem.sig}
end