babelphish 0.2.6 → 0.2.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/Rakefile +1 -0
- data/VERSION +1 -1
- data/babelphish.gemspec +8 -4
- metadata +13 -4
data/Rakefile
CHANGED
|
@@ -8,6 +8,7 @@ begin
|
|
|
8
8
|
gem.description = "Babelphish helps you make a quick translation of your application using Google Translate."
|
|
9
9
|
gem.authors = ["Justin Ball"]
|
|
10
10
|
gem.rubyforge_project = "babelphish"
|
|
11
|
+
gem.add_dependency "ya2yaml"
|
|
11
12
|
end
|
|
12
13
|
Jeweler::GemcutterTasks.new
|
|
13
14
|
Jeweler::RubyforgeTasks.new do |rubyforge|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.2.
|
|
1
|
+
0.2.7
|
data/babelphish.gemspec
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
# Generated by jeweler
|
|
2
|
-
# DO NOT EDIT THIS FILE
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{babelphish}
|
|
8
|
-
s.version = "0.2.
|
|
8
|
+
s.version = "0.2.7"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Justin Ball"]
|
|
12
|
-
s.date = %q{2009-
|
|
12
|
+
s.date = %q{2009-12-16}
|
|
13
13
|
s.default_executable = %q{babelphish}
|
|
14
14
|
s.description = %q{Babelphish helps you make a quick translation of your application using Google Translate.}
|
|
15
15
|
s.email = %q{justinball@gmail.com}
|
|
@@ -261,8 +261,12 @@ Gem::Specification.new do |s|
|
|
|
261
261
|
s.specification_version = 3
|
|
262
262
|
|
|
263
263
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
264
|
+
s.add_runtime_dependency(%q<ya2yaml>, [">= 0"])
|
|
264
265
|
else
|
|
266
|
+
s.add_dependency(%q<ya2yaml>, [">= 0"])
|
|
265
267
|
end
|
|
266
268
|
else
|
|
269
|
+
s.add_dependency(%q<ya2yaml>, [">= 0"])
|
|
267
270
|
end
|
|
268
271
|
end
|
|
272
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: babelphish
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Justin Ball
|
|
@@ -9,10 +9,19 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2009-
|
|
12
|
+
date: 2009-12-16 00:00:00 -07:00
|
|
13
13
|
default_executable: babelphish
|
|
14
|
-
dependencies:
|
|
15
|
-
|
|
14
|
+
dependencies:
|
|
15
|
+
- !ruby/object:Gem::Dependency
|
|
16
|
+
name: ya2yaml
|
|
17
|
+
type: :runtime
|
|
18
|
+
version_requirement:
|
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
20
|
+
requirements:
|
|
21
|
+
- - ">="
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: "0"
|
|
24
|
+
version:
|
|
16
25
|
description: Babelphish helps you make a quick translation of your application using Google Translate.
|
|
17
26
|
email: justinball@gmail.com
|
|
18
27
|
executables:
|