isign 0.0.1.0

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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 3072b736deba1fa0bf2f6856c2bf2590781d0de9
4
+ data.tar.gz: 86f21ac4022fe64ced5b704b615d6f98a0314daa
5
+ SHA512:
6
+ metadata.gz: c45ede1fe565b28bcaac535b7b13fa4a030465af430f456519db6be928d73fb9fb86250158f7eb99f79d7498afc4b4310e5d5e409e550237032a35a6d6022b84
7
+ data.tar.gz: 796054d822b174a5fb8e011f588bd648ea03e471d0d9d05f4baf61b08a0bd910f74149aede2d85cddb24d245118f17eb5962ef7c02ccfdce395d12a92fc4b66b
data/CHANGELOG.md ADDED
@@ -0,0 +1,4 @@
1
+ # Change Log
2
+
3
+ ## v0.0.1
4
+ - Draft gemspec.
data/LICENSE.md ADDED
@@ -0,0 +1 @@
1
+ Copyright © 2017 Jurgen Jocubeit, Pocket Business Co. All rights reserved.
data/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # iSign
2
+
3
+ ## Copyright
4
+
5
+ Copyright © 2017 Jurgen Jocubeit, Pocket Business Co. All rights reserved.
data/Rakefile ADDED
@@ -0,0 +1,10 @@
1
+ # require "bundler/gem_tasks"
2
+ # require "rake/testtask"
3
+ #
4
+ # Rake::TestTask.new(:test) do |t|
5
+ # t.libs << "test"
6
+ # t.libs << "lib"
7
+ # t.test_files = FileList['test/**/*_test.rb']
8
+ # end
9
+ #
10
+ # task :default => :test
data/lib/isign.rb ADDED
@@ -0,0 +1,12 @@
1
+ module Isign
2
+ autoload :Configuration, 'isign/configuration'
3
+ autoload :Version, 'isign/version'
4
+
5
+ def self.configuration
6
+ @configuration ||= Configuration.new
7
+ end
8
+
9
+ def self.configure
10
+ yield(configuration) if block_given?
11
+ end
12
+ end
@@ -0,0 +1,4 @@
1
+ module Isign
2
+ class Configuration
3
+ end
4
+ end
@@ -0,0 +1,11 @@
1
+ module Isign
2
+ module Version
3
+ Major = 0
4
+ Minor = 0
5
+ Revision = 1
6
+ Prerelease = 0
7
+ Compact = [Major, Minor, Revision, Prerelease].compact.join('.')
8
+ Summary = "Isign RubyGem v#{Compact}"
9
+ Description = "Isign"
10
+ end
11
+ end
metadata ADDED
@@ -0,0 +1,65 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: isign
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Jurgen Jocubeit
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2017-09-28 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rake
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ description: Isign
28
+ email:
29
+ - hello@pocket.business
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - CHANGELOG.md
35
+ - LICENSE.md
36
+ - README.md
37
+ - Rakefile
38
+ - lib/isign.rb
39
+ - lib/isign/configuration.rb
40
+ - lib/isign/version.rb
41
+ homepage: http://www.pocket.business
42
+ licenses: []
43
+ metadata:
44
+ copyright: Copyright © Jurgen Jocubeit, www.pocket.business
45
+ post_install_message:
46
+ rdoc_options: []
47
+ require_paths:
48
+ - lib
49
+ required_ruby_version: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '2.2'
54
+ required_rubygems_version: !ruby/object:Gem::Requirement
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ version: '0'
59
+ requirements: []
60
+ rubyforge_project:
61
+ rubygems_version: 2.6.11
62
+ signing_key:
63
+ specification_version: 4
64
+ summary: Isign RubyGem v0.0.1.0
65
+ test_files: []