notify-makers-com 0.1.0

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: 6022881b0ecc722ef477a2df0c3003d9535c7ac8
4
+ data.tar.gz: a418fb1967bd1f18d5a27f9dec0459779164def7
5
+ SHA512:
6
+ metadata.gz: 160aa153ccc47477bcf29dc49106be57673ab0f5d0534a38a01e0835fb8868fa41682caaa1e2a7a5d6933541036c30f1bbce66a9b3183628506ba470bba63e09
7
+ data.tar.gz: c435914fab3f33ff64475660f0c0a46ea2d72f83a24ccdece271e3836f8f3815ad9d90566f2a5052a69504c2bc3e789cc2584b6cabcd999b2882de94192a0302
data/.gitignore ADDED
@@ -0,0 +1,18 @@
1
+ /.bundle/
2
+ /log/*
3
+ !/log/*.keep
4
+ /pkg/
5
+ /spec/dummy/db/*.sqlite3
6
+ /spec/dummy/db/*.sqlite3-journal
7
+ /spec/dummy/log/*.log
8
+ !/spec/dummy/log/*.keep
9
+ /spec/dummy/tmp/
10
+
11
+ /.idea/*
12
+ Gemfile.lock
13
+ coverage
14
+ .DS_Store
15
+
16
+ /.rspec_status
17
+ /doc
18
+ /.yardoc/
data/.gitlab-ci.yml ADDED
@@ -0,0 +1,31 @@
1
+ before_script:
2
+ - bundle install
3
+
4
+ rspec:
5
+ script: "rspec -r ./spec/spec_helper.rb"
6
+ tags:
7
+ - private
8
+ artifacts:
9
+ paths:
10
+ - coverage/
11
+
12
+ yardoc:
13
+ script: yardoc
14
+ artifacts:
15
+ paths:
16
+ - doc/
17
+
18
+ pages:
19
+ stage: deploy
20
+ dependencies:
21
+ - rspec
22
+ - yardoc
23
+ script:
24
+ - mv doc public/
25
+ - mv coverage public/
26
+ artifacts:
27
+ paths:
28
+ - public
29
+ expire_in: 30 days
30
+ only:
31
+ - master
data/.rspec ADDED
@@ -0,0 +1,4 @@
1
+ --require spec_helper
2
+ --format documentation
3
+ --color
4
+
data/Gemfile ADDED
@@ -0,0 +1,9 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in easy_resources.gemspec
4
+ gemspec
5
+ #
6
+ # group :test do
7
+ # gem "simplecov", "~> 0.16.1"
8
+ # gem "yard", "~> 0.9.12"
9
+ # end
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2018 petr
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
data/README.md ADDED
@@ -0,0 +1 @@
1
+ # https://notifymakers.com
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ #require "rspec/core/rake_task"
3
+
4
+ #RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,5 @@
1
+ require 'notify_makers_com/version'
2
+
3
+ module NotifyMakersCom
4
+
5
+ end
@@ -0,0 +1,7 @@
1
+ module NotifyMakersCom
2
+
3
+ class Message < ActiveResource::Base
4
+
5
+ end
6
+
7
+ end
@@ -0,0 +1,7 @@
1
+ module NotifyMakersCom
2
+
3
+ class Provider < ActiveResource::Base
4
+
5
+ end
6
+
7
+ end
@@ -0,0 +1,3 @@
1
+ module NotifyMakersCom
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,25 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'notify_makers_com/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'notify-makers-com'
8
+ spec.version = NotifyMakersCom::VERSION
9
+ spec.authors = ['petr']
10
+ spec.email = ['petr@easy.cz']
11
+
12
+ spec.summary = 'Notify Makers - make message everywhere.'
13
+ spec.description = 'Notify Makers - make message everywhere.'
14
+ spec.homepage = 'https://notifymakers.com'
15
+ spec.license = 'MIT'
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "exe"
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ['lib']
21
+
22
+ spec.add_dependency 'activeresource'
23
+ spec.add_dependency 'activeresource-response'
24
+
25
+ end
metadata ADDED
@@ -0,0 +1,84 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: notify-makers-com
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - petr
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2018-05-31 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: activeresource
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: activeresource-response
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ">="
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ description: Notify Makers - make message everywhere.
42
+ email:
43
+ - petr@easy.cz
44
+ executables: []
45
+ extensions: []
46
+ extra_rdoc_files: []
47
+ files:
48
+ - ".gitignore"
49
+ - ".gitlab-ci.yml"
50
+ - ".rspec"
51
+ - Gemfile
52
+ - LICENSE.txt
53
+ - README.md
54
+ - Rakefile
55
+ - lib/notify-makers-com.rb
56
+ - lib/notify_makers_com/message.rb
57
+ - lib/notify_makers_com/provider.rb
58
+ - lib/notify_makers_com/version.rb
59
+ - notify-makers-com.gemspec
60
+ homepage: https://notifymakers.com
61
+ licenses:
62
+ - MIT
63
+ metadata: {}
64
+ post_install_message:
65
+ rdoc_options: []
66
+ require_paths:
67
+ - lib
68
+ required_ruby_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ required_rubygems_version: !ruby/object:Gem::Requirement
74
+ requirements:
75
+ - - ">="
76
+ - !ruby/object:Gem::Version
77
+ version: '0'
78
+ requirements: []
79
+ rubyforge_project:
80
+ rubygems_version: 2.6.14
81
+ signing_key:
82
+ specification_version: 4
83
+ summary: Notify Makers - make message everywhere.
84
+ test_files: []