tml-rails 4.3.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/LICENSE +22 -0
- data/README.md +368 -0
- data/Rakefile +61 -0
- data/app/controllers/tml_rails/tools_controller.rb +56 -0
- data/app/views/tml_rails/tags/_language_selector.html.erb +82 -0
- data/app/views/tml_rails/tags/_language_strip.html.erb +20 -0
- data/app/views/tml_rails/tags/_powered_by_trex.html.erb +18 -0
- data/app/views/tml_rails/tags/_scripts.html.erb +44 -0
- data/config/routes.rb +36 -0
- data/lib/i18n/backend/tml.rb +62 -0
- data/lib/tasks/tml.rake +60 -0
- data/lib/tml/cache_adapters/rails.rb +98 -0
- data/lib/tml_rails.rb +41 -0
- data/lib/tml_rails/core/string.rb +44 -0
- data/lib/tml_rails/engine.rb +39 -0
- data/lib/tml_rails/extensions/action_common_methods.rb +131 -0
- data/lib/tml_rails/extensions/action_controller_extension.rb +137 -0
- data/lib/tml_rails/extensions/action_view_extension.rb +188 -0
- data/lib/tml_rails/railtie.rb +52 -0
- data/lib/tml_rails/version.rb +34 -0
- metadata +93 -0
@@ -0,0 +1,52 @@
|
|
1
|
+
#--
|
2
|
+
# Copyright (c) 2015 Translation Exchange Inc. http://translationexchange.com
|
3
|
+
#
|
4
|
+
# _______ _ _ _ ______ _
|
5
|
+
# |__ __| | | | | (_) | ____| | |
|
6
|
+
# | |_ __ __ _ _ __ ___| | __ _| |_ _ ___ _ __ | |__ __ _____| |__ __ _ _ __ __ _ ___
|
7
|
+
# | | '__/ _` | '_ \/ __| |/ _` | __| |/ _ \| '_ \| __| \ \/ / __| '_ \ / _` | '_ \ / _` |/ _ \
|
8
|
+
# | | | | (_| | | | \__ \ | (_| | |_| | (_) | | | | |____ > < (__| | | | (_| | | | | (_| | __/
|
9
|
+
# |_|_| \__,_|_| |_|___/_|\__,_|\__|_|\___/|_| |_|______/_/\_\___|_| |_|\__,_|_| |_|\__, |\___|
|
10
|
+
# __/ |
|
11
|
+
# |___/
|
12
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
13
|
+
# a copy of this software and associated documentation files (the
|
14
|
+
# "Software"), to deal in the Software without restriction, including
|
15
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
16
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
17
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
18
|
+
# the following conditions:
|
19
|
+
#
|
20
|
+
# The above copyright notice and this permission notice shall be
|
21
|
+
# included in all copies or substantial portions of the Software.
|
22
|
+
#
|
23
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
24
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
25
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
26
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
27
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
28
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
29
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
30
|
+
#++
|
31
|
+
|
32
|
+
require 'rails'
|
33
|
+
require 'pp'
|
34
|
+
|
35
|
+
# Rails Extensions
|
36
|
+
require File.join(File.dirname(__FILE__), 'extensions/action_common_methods')
|
37
|
+
require File.join(File.dirname(__FILE__), 'extensions/action_view_extension')
|
38
|
+
require File.join(File.dirname(__FILE__), 'extensions/action_controller_extension')
|
39
|
+
|
40
|
+
module TmlClientSdk
|
41
|
+
class Railtie < ::Rails::Railtie #:nodoc:
|
42
|
+
initializer 'tml-rails' do |app|
|
43
|
+
ActiveSupport.on_load(:action_view) do
|
44
|
+
::ActionView::Base.send :include, TmlClientSdk::ActionCommonMethods
|
45
|
+
::ActionView::Base.send :include, TmlClientSdk::ActionViewExtension
|
46
|
+
end
|
47
|
+
ActiveSupport.on_load(:action_controller) do
|
48
|
+
include TmlClientSdk::ActionControllerExtension
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
@@ -0,0 +1,34 @@
|
|
1
|
+
#--
|
2
|
+
# Copyright (c) 2015 Translation Exchange Inc. http://translationexchange.com
|
3
|
+
#
|
4
|
+
# _______ _ _ _ ______ _
|
5
|
+
# |__ __| | | | | (_) | ____| | |
|
6
|
+
# | |_ __ __ _ _ __ ___| | __ _| |_ _ ___ _ __ | |__ __ _____| |__ __ _ _ __ __ _ ___
|
7
|
+
# | | '__/ _` | '_ \/ __| |/ _` | __| |/ _ \| '_ \| __| \ \/ / __| '_ \ / _` | '_ \ / _` |/ _ \
|
8
|
+
# | | | | (_| | | | \__ \ | (_| | |_| | (_) | | | | |____ > < (__| | | | (_| | | | | (_| | __/
|
9
|
+
# |_|_| \__,_|_| |_|___/_|\__,_|\__|_|\___/|_| |_|______/_/\_\___|_| |_|\__,_|_| |_|\__, |\___|
|
10
|
+
# __/ |
|
11
|
+
# |___/
|
12
|
+
# Permission is hereby granted, free of charge, to any person obtaining
|
13
|
+
# a copy of this software and associated documentation files (the
|
14
|
+
# "Software"), to deal in the Software without restriction, including
|
15
|
+
# without limitation the rights to use, copy, modify, merge, publish,
|
16
|
+
# distribute, sublicense, and/or sell copies of the Software, and to
|
17
|
+
# permit persons to whom the Software is furnished to do so, subject to
|
18
|
+
# the following conditions:
|
19
|
+
#
|
20
|
+
# The above copyright notice and this permission notice shall be
|
21
|
+
# included in all copies or substantial portions of the Software.
|
22
|
+
#
|
23
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
24
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
25
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
26
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
27
|
+
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
28
|
+
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
29
|
+
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
30
|
+
#++
|
31
|
+
|
32
|
+
module TmlRails
|
33
|
+
VERSION = '4.3.1'
|
34
|
+
end
|
metadata
ADDED
@@ -0,0 +1,93 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: tml-rails
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 4.3.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Michael Berkovich
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-01-22 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '4'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '4'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: tml
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '4.3'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '4.3'
|
41
|
+
description: Client SDK for Translation Exchange.
|
42
|
+
email:
|
43
|
+
- michael@translationexchange.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- LICENSE
|
49
|
+
- README.md
|
50
|
+
- Rakefile
|
51
|
+
- app/controllers/tml_rails/tools_controller.rb
|
52
|
+
- app/views/tml_rails/tags/_language_selector.html.erb
|
53
|
+
- app/views/tml_rails/tags/_language_strip.html.erb
|
54
|
+
- app/views/tml_rails/tags/_powered_by_trex.html.erb
|
55
|
+
- app/views/tml_rails/tags/_scripts.html.erb
|
56
|
+
- config/routes.rb
|
57
|
+
- lib/i18n/backend/tml.rb
|
58
|
+
- lib/tasks/tml.rake
|
59
|
+
- lib/tml/cache_adapters/rails.rb
|
60
|
+
- lib/tml_rails.rb
|
61
|
+
- lib/tml_rails/core/string.rb
|
62
|
+
- lib/tml_rails/engine.rb
|
63
|
+
- lib/tml_rails/extensions/action_common_methods.rb
|
64
|
+
- lib/tml_rails/extensions/action_controller_extension.rb
|
65
|
+
- lib/tml_rails/extensions/action_view_extension.rb
|
66
|
+
- lib/tml_rails/railtie.rb
|
67
|
+
- lib/tml_rails/version.rb
|
68
|
+
homepage: https://github.com/translationexchange/tml-rails
|
69
|
+
licenses:
|
70
|
+
- MIT-LICENSE
|
71
|
+
metadata: {}
|
72
|
+
post_install_message:
|
73
|
+
rdoc_options: []
|
74
|
+
require_paths:
|
75
|
+
- lib
|
76
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
77
|
+
requirements:
|
78
|
+
- - '>='
|
79
|
+
- !ruby/object:Gem::Version
|
80
|
+
version: '0'
|
81
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
82
|
+
requirements:
|
83
|
+
- - '>='
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
86
|
+
requirements: []
|
87
|
+
rubyforge_project:
|
88
|
+
rubygems_version: 2.4.1
|
89
|
+
signing_key:
|
90
|
+
specification_version: 4
|
91
|
+
summary: Tml Client SDK for Ruby on Rails
|
92
|
+
test_files: []
|
93
|
+
has_rdoc:
|