almanack 1.1.0 → 1.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/.gitignore +12 -17
- data/.rspec +3 -0
- data/.travis.yml +2 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +1 -1
- data/Gemfile.lock +123 -0
- data/LICENSE.txt +17 -18
- data/README.md +22 -4
- data/Rakefile +16 -0
- data/almanack.gemspec +18 -8
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/bin/test +2 -0
- data/certs/aupajo.pem +25 -0
- data/{bin → exe}/almanack +0 -0
- data/lib/almanack/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +62 -59
- metadata.gz.sig +3 -0
- data/spec/almanack_spec.rb +0 -8
- data/spec/calendar_spec.rb +0 -71
- data/spec/configuration_spec.rb +0 -113
- data/spec/event_source/ical_feed_spec.rb +0 -40
- data/spec/event_source/meetup_group_spec.rb +0 -63
- data/spec/event_source/static_spec.rb +0 -41
- data/spec/event_spec.rb +0 -121
- data/spec/features/api_feature_spec.rb +0 -24
- data/spec/features/calendar_feature_spec.rb +0 -44
- data/spec/features/sass_features_spec.rb +0 -15
- data/spec/features/subscription_feature_spec.rb +0 -60
- data/spec/fixtures/responses/google_calendar.yml +0 -1896
- data/spec/fixtures/responses/meetup-without-location.yml +0 -11880
- data/spec/fixtures/responses/meetup.yml +0 -1437
- data/spec/fixtures/themes/sassy/stylesheets/imported.scss +0 -0
- data/spec/fixtures/themes/sassy/stylesheets/imports.scss +0 -1
- data/spec/representation/json_feed_spec.rb +0 -44
- data/spec/serialized_transformation_spec.rb +0 -45
- data/spec/spec_helper.rb +0 -21
- data/spec/support/event_matchers.rb +0 -54
- data/spec/support/server_support.rb +0 -10
- data/spec/support/time_comparison_matchers.rb +0 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2e9c8e19af0ef162e6f9e3e154d37ebc9ec06d94c90bee6e350c2c77fbe558a8
|
4
|
+
data.tar.gz: 18beec7707391e14788dbd5e3e64266a9402a6b45e34c92a98568441be75754b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8e0ba960c3f2f2fa050ea6c75bd425cd8c64bd424ab6e07caa4cb1afd1889f65c2fdc5e1cf587ba41077d2d6f6d551fbabb44bbdb28021492799d63f0326ca2
|
7
|
+
data.tar.gz: 318e59d914fd4861a02e3575f596bac00d8e575f0742ea39033a4f10d3a5b0f82c39f852c7f7f68307368d669337e1a495d925b5ba87e9dc8a0e5780c222fcf1
|
checksums.yaml.gz.sig
ADDED
Binary file
|
data/.gitignore
CHANGED
@@ -1,18 +1,13 @@
|
|
1
|
-
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
doc/
|
11
|
-
lib/bundler/man
|
12
|
-
pkg
|
13
|
-
rdoc
|
14
|
-
spec/reports
|
15
|
-
test/tmp
|
16
|
-
test/version_tmp
|
17
|
-
tmp
|
1
|
+
/.bundle/
|
2
|
+
/.yardoc
|
3
|
+
/_yardoc/
|
4
|
+
/coverage/
|
5
|
+
/doc/
|
6
|
+
/pkg/
|
7
|
+
/spec/reports/
|
8
|
+
/tmp/
|
9
|
+
|
18
10
|
.sass-cache/
|
11
|
+
|
12
|
+
# rspec failure tracking
|
13
|
+
.rspec_status
|
data/.rspec
ADDED
data/.travis.yml
CHANGED
data/CODE_OF_CONDUCT.md
ADDED
@@ -0,0 +1,74 @@
|
|
1
|
+
# Contributor Covenant Code of Conduct
|
2
|
+
|
3
|
+
## Our Pledge
|
4
|
+
|
5
|
+
In the interest of fostering an open and welcoming environment, we as
|
6
|
+
contributors and maintainers pledge to making participation in our project and
|
7
|
+
our community a harassment-free experience for everyone, regardless of age, body
|
8
|
+
size, disability, ethnicity, gender identity and expression, level of experience,
|
9
|
+
nationality, personal appearance, race, religion, or sexual identity and
|
10
|
+
orientation.
|
11
|
+
|
12
|
+
## Our Standards
|
13
|
+
|
14
|
+
Examples of behavior that contributes to creating a positive environment
|
15
|
+
include:
|
16
|
+
|
17
|
+
* Using welcoming and inclusive language
|
18
|
+
* Being respectful of differing viewpoints and experiences
|
19
|
+
* Gracefully accepting constructive criticism
|
20
|
+
* Focusing on what is best for the community
|
21
|
+
* Showing empathy towards other community members
|
22
|
+
|
23
|
+
Examples of unacceptable behavior by participants include:
|
24
|
+
|
25
|
+
* The use of sexualized language or imagery and unwelcome sexual attention or
|
26
|
+
advances
|
27
|
+
* Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
* Public or private harassment
|
29
|
+
* Publishing others' private information, such as a physical or electronic
|
30
|
+
address, without explicit permission
|
31
|
+
* Other conduct which could reasonably be considered inappropriate in a
|
32
|
+
professional setting
|
33
|
+
|
34
|
+
## Our Responsibilities
|
35
|
+
|
36
|
+
Project maintainers are responsible for clarifying the standards of acceptable
|
37
|
+
behavior and are expected to take appropriate and fair corrective action in
|
38
|
+
response to any instances of unacceptable behavior.
|
39
|
+
|
40
|
+
Project maintainers have the right and responsibility to remove, edit, or
|
41
|
+
reject comments, commits, code, wiki edits, issues, and other contributions
|
42
|
+
that are not aligned to this Code of Conduct, or to ban temporarily or
|
43
|
+
permanently any contributor for other behaviors that they deem inappropriate,
|
44
|
+
threatening, offensive, or harmful.
|
45
|
+
|
46
|
+
## Scope
|
47
|
+
|
48
|
+
This Code of Conduct applies both within project spaces and in public spaces
|
49
|
+
when an individual is representing the project or its community. Examples of
|
50
|
+
representing a project or community include using an official project e-mail
|
51
|
+
address, posting via an official social media account, or acting as an appointed
|
52
|
+
representative at an online or offline event. Representation of a project may be
|
53
|
+
further defined and clarified by project maintainers.
|
54
|
+
|
55
|
+
## Enforcement
|
56
|
+
|
57
|
+
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
58
|
+
reported by contacting the project team at aupajo@gmail.com. All
|
59
|
+
complaints will be reviewed and investigated and will result in a response that
|
60
|
+
is deemed necessary and appropriate to the circumstances. The project team is
|
61
|
+
obligated to maintain confidentiality with regard to the reporter of an incident.
|
62
|
+
Further details of specific enforcement policies may be posted separately.
|
63
|
+
|
64
|
+
Project maintainers who do not follow or enforce the Code of Conduct in good
|
65
|
+
faith may face temporary or permanent repercussions as determined by other
|
66
|
+
members of the project's leadership.
|
67
|
+
|
68
|
+
## Attribution
|
69
|
+
|
70
|
+
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
71
|
+
available at [http://contributor-covenant.org/version/1/4][version]
|
72
|
+
|
73
|
+
[homepage]: http://contributor-covenant.org
|
74
|
+
[version]: http://contributor-covenant.org/version/1/4/
|
data/Gemfile
CHANGED
data/Gemfile.lock
ADDED
@@ -0,0 +1,123 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
almanack (1.1.1)
|
5
|
+
activesupport
|
6
|
+
addressable
|
7
|
+
faraday
|
8
|
+
faraday_middleware
|
9
|
+
rack-contrib
|
10
|
+
ri_cal
|
11
|
+
sass
|
12
|
+
sinatra
|
13
|
+
sinatra-contrib
|
14
|
+
thor
|
15
|
+
|
16
|
+
GEM
|
17
|
+
remote: https://rubygems.org/
|
18
|
+
specs:
|
19
|
+
activesupport (5.2.3)
|
20
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
21
|
+
i18n (>= 0.7, < 2)
|
22
|
+
minitest (~> 5.1)
|
23
|
+
tzinfo (~> 1.1)
|
24
|
+
addressable (2.6.0)
|
25
|
+
public_suffix (>= 2.0.2, < 4.0)
|
26
|
+
backports (3.14.0)
|
27
|
+
coderay (1.1.2)
|
28
|
+
concurrent-ruby (1.1.5)
|
29
|
+
crack (0.4.3)
|
30
|
+
safe_yaml (~> 1.0.0)
|
31
|
+
diff-lcs (1.3)
|
32
|
+
faraday (0.15.4)
|
33
|
+
multipart-post (>= 1.2, < 3)
|
34
|
+
faraday_middleware (0.13.1)
|
35
|
+
faraday (>= 0.7.4, < 1.0)
|
36
|
+
ffi (1.10.0)
|
37
|
+
hashdiff (0.3.8)
|
38
|
+
i18n (1.6.0)
|
39
|
+
concurrent-ruby (~> 1.0)
|
40
|
+
method_source (0.9.2)
|
41
|
+
mini_portile2 (2.4.0)
|
42
|
+
minitest (5.11.3)
|
43
|
+
multi_json (1.13.1)
|
44
|
+
multipart-post (2.1.0)
|
45
|
+
mustermann (1.0.3)
|
46
|
+
nokogiri (1.10.2)
|
47
|
+
mini_portile2 (~> 2.4.0)
|
48
|
+
pry (0.12.2)
|
49
|
+
coderay (~> 1.1.0)
|
50
|
+
method_source (~> 0.9.0)
|
51
|
+
public_suffix (3.0.3)
|
52
|
+
rack (2.0.7)
|
53
|
+
rack-contrib (2.1.0)
|
54
|
+
rack (~> 2.0)
|
55
|
+
rack-protection (2.0.5)
|
56
|
+
rack
|
57
|
+
rack-test (1.1.0)
|
58
|
+
rack (>= 1.0, < 3)
|
59
|
+
rake (10.5.0)
|
60
|
+
rb-fsevent (0.10.3)
|
61
|
+
rb-inotify (0.10.0)
|
62
|
+
ffi (~> 1.0)
|
63
|
+
ri_cal (0.8.8)
|
64
|
+
rspec (3.8.0)
|
65
|
+
rspec-core (~> 3.8.0)
|
66
|
+
rspec-expectations (~> 3.8.0)
|
67
|
+
rspec-mocks (~> 3.8.0)
|
68
|
+
rspec-core (3.8.0)
|
69
|
+
rspec-support (~> 3.8.0)
|
70
|
+
rspec-expectations (3.8.2)
|
71
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
72
|
+
rspec-support (~> 3.8.0)
|
73
|
+
rspec-mocks (3.8.0)
|
74
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
75
|
+
rspec-support (~> 3.8.0)
|
76
|
+
rspec-support (3.8.0)
|
77
|
+
safe_yaml (1.0.5)
|
78
|
+
sass (3.7.4)
|
79
|
+
sass-listen (~> 4.0.0)
|
80
|
+
sass-listen (4.0.0)
|
81
|
+
rb-fsevent (~> 0.9, >= 0.9.4)
|
82
|
+
rb-inotify (~> 0.9, >= 0.9.7)
|
83
|
+
sinatra (2.0.5)
|
84
|
+
mustermann (~> 1.0)
|
85
|
+
rack (~> 2.0)
|
86
|
+
rack-protection (= 2.0.5)
|
87
|
+
tilt (~> 2.0)
|
88
|
+
sinatra-contrib (2.0.5)
|
89
|
+
backports (>= 2.8.2)
|
90
|
+
multi_json
|
91
|
+
mustermann (~> 1.0)
|
92
|
+
rack-protection (= 2.0.5)
|
93
|
+
sinatra (= 2.0.5)
|
94
|
+
tilt (>= 1.3, < 3)
|
95
|
+
thor (0.20.3)
|
96
|
+
thread_safe (0.3.6)
|
97
|
+
tilt (2.0.9)
|
98
|
+
timecop (0.9.1)
|
99
|
+
tzinfo (1.2.5)
|
100
|
+
thread_safe (~> 0.1)
|
101
|
+
vcr (4.0.0)
|
102
|
+
webmock (3.5.1)
|
103
|
+
addressable (>= 2.3.6)
|
104
|
+
crack (>= 0.3.2)
|
105
|
+
hashdiff
|
106
|
+
|
107
|
+
PLATFORMS
|
108
|
+
ruby
|
109
|
+
|
110
|
+
DEPENDENCIES
|
111
|
+
almanack!
|
112
|
+
bundler (~> 2.0)
|
113
|
+
nokogiri
|
114
|
+
pry
|
115
|
+
rack-test
|
116
|
+
rake (~> 10.0)
|
117
|
+
rspec (~> 3.0)
|
118
|
+
timecop
|
119
|
+
vcr
|
120
|
+
webmock
|
121
|
+
|
122
|
+
BUNDLED WITH
|
123
|
+
2.0.1
|
data/LICENSE.txt
CHANGED
@@ -1,22 +1,21 @@
|
|
1
|
-
|
1
|
+
The MIT License (MIT)
|
2
2
|
|
3
|
-
|
3
|
+
Copyright (c) 2019 Pete Nicholls
|
4
4
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
the following conditions:
|
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:
|
12
11
|
|
13
|
-
The above copyright notice and this permission notice shall be
|
14
|
-
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
15
14
|
|
16
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
OF
|
22
|
-
|
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
CHANGED
@@ -27,9 +27,19 @@ See a demo running at [http://christchurch.events.geek.nz](http://christchurch.e
|
|
27
27
|
|
28
28
|
## Installation
|
29
29
|
|
30
|
-
|
30
|
+
Almanack is cryptographically signed. You can install it like any other gem, but you can also do so in a way that verifies the gem hasn't been tampered with.
|
31
31
|
|
32
|
-
|
32
|
+
Add my public key (if you haven’t already) as a trusted certificate:
|
33
|
+
|
34
|
+
gem cert --add <(curl -Ls https://raw.github.com/aupajo/almanack/master/certs/aupajo.pem)
|
35
|
+
|
36
|
+
Then install the gem:
|
37
|
+
|
38
|
+
gem install almanack -P HighSecurity
|
39
|
+
|
40
|
+
All my dependencies are cryptographically signed, so you can use the `HighSecurity` option. [Read more](http://docs.seattlerb.org/rubygems/Gem/Security.html).
|
41
|
+
|
42
|
+
Checksums for released gems can be found in `checksums`.
|
33
43
|
|
34
44
|
## Creating a calendar
|
35
45
|
|
@@ -87,7 +97,7 @@ is already initialized for you when you run `almanack new`):
|
|
87
97
|
git add .
|
88
98
|
git commit -m "My awesome calendar"
|
89
99
|
|
90
|
-
With the [Heroku
|
100
|
+
With the [Heroku CLI](https://devcenter.heroku.com/articles/heroku-cli) installed:
|
91
101
|
|
92
102
|
almanack deploy my-awesome-calendar
|
93
103
|
|
@@ -99,8 +109,16 @@ Subsequent commits can be deployed with just:
|
|
99
109
|
|
100
110
|
## Contributing
|
101
111
|
|
112
|
+
### Getting started
|
113
|
+
|
114
|
+
1. Clone the repository
|
115
|
+
2. Run `bin/setup`
|
116
|
+
3. Run `bin/test`
|
117
|
+
|
118
|
+
### Sending patches
|
119
|
+
|
102
120
|
1. Fork it ( http://github.com/Aupajo/almanack/fork )
|
103
121
|
2. Create your feature branch (`git checkout -b my-new-feature`)
|
104
|
-
3. Commit your changes (`git commit -am 'Add some feature'`)
|
122
|
+
3. Commit your changes (`git commit -am 'Add some feature'`) with tests
|
105
123
|
4. Push to the branch (`git push origin my-new-feature`)
|
106
124
|
5. Create new Pull Request
|
data/Rakefile
CHANGED
@@ -4,3 +4,19 @@ require "rspec/core/rake_task"
|
|
4
4
|
RSpec::Core::RakeTask.new(:spec)
|
5
5
|
|
6
6
|
task :default => :spec
|
7
|
+
|
8
|
+
task :checksum do
|
9
|
+
require 'digest/sha2'
|
10
|
+
built_gem_path = Dir["pkg/almanack-*.gem"].sort_by {|f| File.mtime(f) }.last
|
11
|
+
checksum = Digest::SHA512.new.hexdigest(File.read(built_gem_path))
|
12
|
+
gem_name = File.basename(built_gem_path)
|
13
|
+
checksum_path = "checksum/#{gem_name}.sha512"
|
14
|
+
File.write(checksum_path, checksum)
|
15
|
+
puts "Checksum #{checksum} written to #{checksum_path}"
|
16
|
+
system("git add #{checksum_path}")
|
17
|
+
puts "Please commit this file"
|
18
|
+
end
|
19
|
+
|
20
|
+
Rake::Task['release'].enhance do
|
21
|
+
Rake::Task['checksum'].invoke
|
22
|
+
end
|
data/almanack.gemspec
CHANGED
@@ -1,20 +1,29 @@
|
|
1
1
|
# coding: utf-8
|
2
|
-
lib = File.expand_path(
|
2
|
+
lib = File.expand_path("../lib", __FILE__)
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require
|
4
|
+
require "almanack/version"
|
5
5
|
|
6
6
|
Gem::Specification.new do |spec|
|
7
7
|
spec.name = "almanack"
|
8
8
|
spec.version = Almanack::VERSION
|
9
9
|
spec.authors = ["Pete Nicholls"]
|
10
|
-
spec.email = ["
|
10
|
+
spec.email = ["aupajo@gmail.com"]
|
11
11
|
spec.summary = %q{Combined events calendar for Google Calendar, iCal, Meetup.com and friends.}
|
12
12
|
spec.homepage = Almanack::HOMEPAGE
|
13
13
|
spec.license = "MIT"
|
14
14
|
|
15
|
-
|
16
|
-
spec.
|
17
|
-
spec.
|
15
|
+
# Gem signing
|
16
|
+
spec.cert_chain = ['certs/aupajo.pem']
|
17
|
+
spec.signing_key = File.expand_path("~/.ssh/gem-private_key.pem") if $0 =~ /gem\z/
|
18
|
+
|
19
|
+
# Specify which files should be added to the gem when it is released.
|
20
|
+
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
21
|
+
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
22
|
+
`git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
23
|
+
end
|
24
|
+
|
25
|
+
spec.bindir = "exe"
|
26
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
18
27
|
spec.require_paths = ["lib"]
|
19
28
|
|
20
29
|
spec.add_dependency "sinatra"
|
@@ -28,9 +37,10 @@ Gem::Specification.new do |spec|
|
|
28
37
|
spec.add_dependency "rack-contrib"
|
29
38
|
spec.add_dependency "activesupport"
|
30
39
|
|
40
|
+
spec.add_development_dependency "bundler", "~> 2.0"
|
31
41
|
spec.add_development_dependency "pry"
|
32
|
-
spec.add_development_dependency "rake"
|
33
|
-
spec.add_development_dependency "rspec"
|
42
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
43
|
+
spec.add_development_dependency "rspec", "~> 3.0"
|
34
44
|
spec.add_development_dependency "rack-test"
|
35
45
|
spec.add_development_dependency "webmock"
|
36
46
|
spec.add_development_dependency "vcr"
|
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "almanack"
|
5
|
+
|
6
|
+
# You can add fixtures and/or initialization code here to make experimenting
|
7
|
+
# with your gem easier. You can also use a different console, if you like.
|
8
|
+
|
9
|
+
# (If you use this, don't forget to add pry to your Gemfile!)
|
10
|
+
# require "pry"
|
11
|
+
# Pry.start
|
12
|
+
|
13
|
+
require "irb"
|
14
|
+
IRB.start(__FILE__)
|
data/bin/setup
ADDED
data/bin/test
ADDED
data/certs/aupajo.pem
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
-----BEGIN CERTIFICATE-----
|
2
|
+
MIIEMDCCApigAwIBAgIBATANBgkqhkiG9w0BAQsFADAhMR8wHQYDVQQDDBZhdXBh
|
3
|
+
am8vREM9Z21haWwvREM9Y29tMB4XDTE5MDUxMDIzNTU1MFoXDTIwMDUwOTIzNTU1
|
4
|
+
MFowITEfMB0GA1UEAwwWYXVwYWpvL0RDPWdtYWlsL0RDPWNvbTCCAaIwDQYJKoZI
|
5
|
+
hvcNAQEBBQADggGPADCCAYoCggGBALifHcsBTFzJr4CcSnTsc3X2hjTYHi3CEJYY
|
6
|
+
DZmcF4CyWYTzc1yw6D8JmekoZHphceFBaCmWDQdRap4yXuqT3RgW+EotBfkoWSY3
|
7
|
+
fp9KmjpvDK1g0uvt9jAUzAHVtWNOwwwSN6cs/L8/AxuvxMC1VJ798T82eruM39SB
|
8
|
+
Uq24isPXm8RMEZsChgRlksr4ZwbP7cTLTqecG4XTd+4kVXEQ5xIUrGxSSOfasckB
|
9
|
+
I5peEg8PP3DAwMIfh3bM6jyWu5f/WO8lwVOjqQIbsD8llxI2u3vsOwigXkfoe6bd
|
10
|
+
3zAsmrmuoqv5WYhgkzz3Te55/Mp1grdDnHv3wWGdlU+1u5K9l54NnlZvMlRbKp+v
|
11
|
+
Hjta3M1sCnbNGH25Lasd3cxHd2S5Pf7Gx5vqyAUtDDqRS6lPNHqCVHm93kiR9Vs8
|
12
|
+
hI8a33sPpQlAxjpDSdbRyenbZVGDoMh7ckj5Jecl8OWpNtjbiuh8o3wcFMwuq2vg
|
13
|
+
pczlifnwXj/mFQrZ8JOVc7GM6I6D9QIDAQABo3MwcTAJBgNVHRMEAjAAMAsGA1Ud
|
14
|
+
DwQEAwIEsDAdBgNVHQ4EFgQUKjXKGxvH9cq/vGtrslK9I/Ym/GcwGwYDVR0RBBQw
|
15
|
+
EoEQYXVwYWpvQGdtYWlsLmNvbTAbBgNVHRIEFDASgRBhdXBham9AZ21haWwuY29t
|
16
|
+
MA0GCSqGSIb3DQEBCwUAA4IBgQB4zcSM0JA0El9w0T6/DHs0qtqqrzMw8vgde4WF
|
17
|
+
N3lYtLtOt9HHmbOfBuUSdZVcONDJ59S6Q6xkortWZob7LER/KZw2IBL07HrlvMyP
|
18
|
+
2ZivUYvBJqK+osMH2/Efuu/53N1rRRvN7AH4Q+ghFtRESJ3+7yXbvc56dLLnLcxJ
|
19
|
+
1mwWlpcraXFnhCyHZxqJWIqumnqhQ9QLyHL99oXJyxp1fyBBUW2/LqVg1bRZeXW8
|
20
|
+
HM3NveDgfHtxsN7/xokEqx9dJZLNIquuh/Mkf/feIfaIbd5yvMg5jI0uFaiyGBAn
|
21
|
+
5oyawSfYQPqmfb+Kek8nEjX90Ul+HHpwHGCe0OfQ9Bo5lwRW5i9ph9iHwzUCIO7s
|
22
|
+
acolbc/fvwdOW4ly/TKaL/1YW/eS3Oi9Yn4RSYTsxSLfVLt2+M3A8Hk1vQFMW/23
|
23
|
+
dZpUW6Gfv2VtOtiN0Q3PjLK+TRjHtqYBjbxa771Msax3xs40e2cSVU/dO+OY5NmR
|
24
|
+
a61dVmZ1PIJiY+jyzJSb8ohHVx4=
|
25
|
+
-----END CERTIFICATE-----
|
data/{bin → exe}/almanack
RENAMED
File without changes
|
data/lib/almanack/version.rb
CHANGED
data.tar.gz.sig
ADDED
Binary file
|