dakwak 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore ADDED
@@ -0,0 +1,18 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
18
+ .rvmrc
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in dakwak.gemspec
4
+ gemspec
data/LICENSE ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 nour
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1,28 @@
1
+ # Dakwak
2
+
3
+ dakwak is a website localization service that offers both machine and professional translation in 54 different languages.
4
+
5
+ You can quickly and easily translate your websites to your languages of choice, and have your translated websites up and running in no time.
6
+
7
+ Start your 14 day trial at dakwak now: https://dakwak.com
8
+
9
+ ## Installation
10
+
11
+ Add this line to your application's Gemfile:
12
+
13
+ gem 'dakwak'
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install dakwak
22
+
23
+ ## Usage
24
+
25
+ For more information about dakwak, type into terminal:
26
+
27
+ $ dakwak
28
+
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ #!/usr/bin/env rake
2
+ require "bundler/gem_tasks"
data/bin/dakwak ADDED
@@ -0,0 +1,5 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'dakwak'
4
+
5
+ puts Dakwak.intro
data/dakwak.gemspec ADDED
@@ -0,0 +1,22 @@
1
+ # -*- encoding: utf-8 -*-
2
+ require File.expand_path('../lib/dakwak/version', __FILE__)
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.authors = ["dakwak"]
6
+ gem.email = ["nour.h@dakwak.com"]
7
+ gem.description = %q{dakwak is a website localization service that offers both machine and professional translation
8
+ in 54 different languages.You can quickly and easily translate your websites to your languages of choice,
9
+ and have your translated websites up and running in no time.}
10
+ gem.summary = %q{dakwak is a website localization service that offers both machine and professional translation
11
+ in 54 different languages.}
12
+ gem.homepage = "https://dakwak.com"
13
+
14
+ gem.files = `git ls-files`.split($\)
15
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
16
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
17
+ gem.name = "dakwak"
18
+ gem.require_paths = ["lib"]
19
+ gem.version = Dakwak::VERSION
20
+
21
+ gem.add_development_dependency 'rake'
22
+ end
@@ -0,0 +1,3 @@
1
+ module Dakwak
2
+ VERSION = "1.0.1"
3
+ end
data/lib/dakwak.rb ADDED
@@ -0,0 +1,15 @@
1
+ require "dakwak/version"
2
+
3
+ module Dakwak
4
+ def self.intro
5
+ %Q{
6
+ dakwak is a website localization service that offers both machine and professional translation
7
+ in 54 different languages.
8
+
9
+ You can quickly and easily translate your websites to your languages of choice,
10
+ and have your translated websites up and running in no time.
11
+
12
+ Start your 14 day trial at dakwak now: https://dakwak.com
13
+ }
14
+ end
15
+ end
metadata ADDED
@@ -0,0 +1,81 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: dakwak
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - dakwak
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-01-28 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: rake
16
+ requirement: !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :development
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ none: false
26
+ requirements:
27
+ - - ! '>='
28
+ - !ruby/object:Gem::Version
29
+ version: '0'
30
+ description: ! "dakwak is a website localization service that offers both machine
31
+ and professional translation \n in 54 different languages.You can quickly and
32
+ easily translate your websites to your languages of choice, \n and have your
33
+ translated websites up and running in no time."
34
+ email:
35
+ - nour.h@dakwak.com
36
+ executables:
37
+ - dakwak
38
+ extensions: []
39
+ extra_rdoc_files: []
40
+ files:
41
+ - .gitignore
42
+ - Gemfile
43
+ - LICENSE
44
+ - README.md
45
+ - Rakefile
46
+ - bin/dakwak
47
+ - dakwak.gemspec
48
+ - lib/dakwak.rb
49
+ - lib/dakwak/version.rb
50
+ homepage: https://dakwak.com
51
+ licenses: []
52
+ post_install_message:
53
+ rdoc_options: []
54
+ require_paths:
55
+ - lib
56
+ required_ruby_version: !ruby/object:Gem::Requirement
57
+ none: false
58
+ requirements:
59
+ - - ! '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ segments:
63
+ - 0
64
+ hash: -620985937
65
+ required_rubygems_version: !ruby/object:Gem::Requirement
66
+ none: false
67
+ requirements:
68
+ - - ! '>='
69
+ - !ruby/object:Gem::Version
70
+ version: '0'
71
+ segments:
72
+ - 0
73
+ hash: -620985937
74
+ requirements: []
75
+ rubyforge_project:
76
+ rubygems_version: 1.8.25
77
+ signing_key:
78
+ specification_version: 3
79
+ summary: dakwak is a website localization service that offers both machine and professional
80
+ translation in 54 different languages.
81
+ test_files: []