shvets-google_translate 0.5.6 → 0.5.7
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/CHANGES +4 -0
- data/Rakefile +6 -0
- data/bin/translate +1 -1
- data/google_translate.gemspec +1 -1
- metadata +1 -1
data/CHANGES
CHANGED
data/Rakefile
CHANGED
@@ -36,6 +36,12 @@ Rcov::RcovTask.new do |task|
|
|
36
36
|
task.verbose = true
|
37
37
|
end
|
38
38
|
|
39
|
+
desc "Run gem code locally"
|
40
|
+
task :"run:gem" do
|
41
|
+
command = "bin/translate " + ENV['params']
|
42
|
+
puts ruby "#{command}"
|
43
|
+
end
|
44
|
+
|
39
45
|
desc "test gem compatibility with github"
|
40
46
|
task :"github:validate" do
|
41
47
|
require 'yaml'
|
data/bin/translate
CHANGED
data/google_translate.gemspec
CHANGED