c80_shared 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: f5c4e9ba0cf5b537e7e36a3f6944b202ac3ceeeb
4
+ data.tar.gz: 9cf30c41a5a13351d090c0df8ec53d631bfab0cb
5
+ SHA512:
6
+ metadata.gz: f4aeef460e0c2f724faabadde587b7f48a6d5008c2de7a52e1c8f1fab8926c3e21b816cba8d55ba876818a71782631fe4e3ce6e243b422641770d3e7ec742c44
7
+ data.tar.gz: d9789f0c2e923780361cbddacf6c02d8f41b2db55b29cf0a205ce797da9c997ccf99d280e1de54c472ba8ed1ff16b46c596ef61330c50c166c726344646ea640
data/MIT-LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright 2018 C80609A
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,3 @@
1
+ = Shared
2
+
3
+ This project rocks and uses MIT-LICENSE.
@@ -0,0 +1,7 @@
1
+ module Dicts
2
+ class EmailTokenSubj < ::Dict
3
+ TO_AGENT_NEW_ORDER = new(1, 'to_agent_new_order')
4
+ TO_AGENT_ACCEPTED_BID = new(2, 'to_agent_accepted_bid')
5
+ TO_CLIENT_NEW_BID = new(3, 'to_client_new_bid')
6
+ end
7
+ end
@@ -0,0 +1,5 @@
1
+ module Shared
2
+ class Engine < ::Rails::Engine
3
+ isolate_namespace Shared
4
+ end
5
+ end
@@ -0,0 +1,3 @@
1
+ module Shared
2
+ VERSION = "0.0.1"
3
+ end
data/lib/shared.rb ADDED
@@ -0,0 +1,4 @@
1
+ require "shared/engine"
2
+
3
+ module Shared
4
+ end
metadata ADDED
@@ -0,0 +1,50 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: c80_shared
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - C80609A
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2018-11-04 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Description of Shared.
14
+ email:
15
+ - c080609a@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - MIT-LICENSE
21
+ - README.rdoc
22
+ - app/dicts/email_token_subj.rb
23
+ - lib/shared.rb
24
+ - lib/shared/engine.rb
25
+ - lib/shared/version.rb
26
+ homepage: http://google.com
27
+ licenses:
28
+ - MIT
29
+ metadata: {}
30
+ post_install_message:
31
+ rdoc_options: []
32
+ require_paths:
33
+ - lib
34
+ required_ruby_version: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0'
39
+ required_rubygems_version: !ruby/object:Gem::Requirement
40
+ requirements:
41
+ - - ">="
42
+ - !ruby/object:Gem::Version
43
+ version: '0'
44
+ requirements: []
45
+ rubyforge_project:
46
+ rubygems_version: 2.5.2.3
47
+ signing_key:
48
+ specification_version: 4
49
+ summary: Summary of Shared.
50
+ test_files: []