icalia-sdk-event-core 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +22 -7
- data/icalia-sdk-event-core.gemspec +2 -2
- data/lib/icalia-sdk-event-core/serialization.rb +1 -1
- data/lib/icalia-sdk-event-core/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 622f06dd70becc4be464cacca1c77c95f74e3c2959c8e50b282e29ebff46f866
|
4
|
+
data.tar.gz: 9f56b1ad345836eccc22fd943c8d4938080a3920b4b6f1f6daa63cf7b3f0f852
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e47c58f05b3af6f8f3fd65b297208166525ef9b8849cca7df7ad0d25a20ba6667f337458c6f7c5f164ed425dbdaddf8bcde9138b8250f665690eabdc8388bd21
|
7
|
+
data.tar.gz: c437e9c312f816cc0de5beec432410a7d93c8b1cf9bd8a22c4d83a913eabfeecad6aa960478ff8040194a517af58b82e3a945536b2a59eb2c2ecd55af179479b
|
data/README.md
CHANGED
@@ -1,6 +1,9 @@
|
|
1
|
-
# Icalia::
|
1
|
+
# Icalia::Event Core
|
2
2
|
|
3
|
-
Welcome to your new gem! In this directory, you'll find the files you need to be
|
3
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be
|
4
|
+
able to package up your Ruby library into a gem. Put your Ruby code in the file
|
5
|
+
`lib/icalia-sdk-event-core`. To experiment with that code, run `bin/console` for
|
6
|
+
an interactive prompt.
|
4
7
|
|
5
8
|
TODO: Delete this and the text above, and describe your gem
|
6
9
|
|
@@ -26,18 +29,30 @@ TODO: Write usage instructions here
|
|
26
29
|
|
27
30
|
## Development
|
28
31
|
|
29
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
32
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
33
|
+
`rake spec` to run the tests. You can also run `bin/console` for an interactive
|
34
|
+
prompt that will allow you to experiment.
|
30
35
|
|
31
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To
|
36
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To
|
37
|
+
release a new version, update the version number in `version.rb`, and then run
|
38
|
+
`bundle exec rake release`, which will create a git tag for the version, push
|
39
|
+
git commits and tags, and push the `.gem` file to
|
40
|
+
[rubygems.org](https://rubygems.org).
|
32
41
|
|
33
42
|
## Contributing
|
34
43
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at
|
44
|
+
Bug reports and pull requests are welcome on GitHub at
|
45
|
+
https://github.com/IcaliaLabs/icalia-sdk-ruby. This project is intended to be a
|
46
|
+
safe, welcoming space for collaboration, and contributors are expected to adhere
|
47
|
+
to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
48
|
|
37
49
|
## License
|
38
50
|
|
39
|
-
The gem is available as open source under the terms of the
|
51
|
+
The gem is available as open source under the terms of the
|
52
|
+
[Apache 2.0 License](https://opensource.org/licenses/MIT).
|
40
53
|
|
41
54
|
## Code of Conduct
|
42
55
|
|
43
|
-
Everyone interacting in the
|
56
|
+
Everyone interacting in the icalia-sdk-ruby project’s codebases, issue
|
57
|
+
trackers, chat rooms and mailing lists is expected to follow the
|
58
|
+
[code of conduct](https://github.com/IcaliaLabs/icalia-sdk-ruby/blob/master/CODE_OF_CONDUCT.md).
|
@@ -10,8 +10,8 @@ Gem::Specification.new do |spec|
|
|
10
10
|
spec.authors = ['Roberto Quintanilla']
|
11
11
|
spec.email = %w[vov@icalialabs.com]
|
12
12
|
|
13
|
-
spec.summary = 'Icalia SDK for Ruby -
|
14
|
-
spec.description = 'Official Icalia SDK for Icalia
|
13
|
+
spec.summary = 'Icalia SDK for Ruby - Event Core Library'
|
14
|
+
spec.description = 'Official Icalia SDK for Icalia Event Core' \
|
15
15
|
'This gem is part of the Icalia SDK for Ruby.'
|
16
16
|
spec.homepage = 'https://github.com/IcaliaLabs/icalia-sdk-ruby'
|
17
17
|
spec.license = 'MIT'
|
@@ -20,7 +20,7 @@ module Icalia
|
|
20
20
|
autoload :DeserializablePropertyResource,
|
21
21
|
"#{serialization_path}/deserializable_property_resource"
|
22
22
|
|
23
|
-
#
|
23
|
+
# Event deserialization
|
24
24
|
|
25
25
|
autoload :DeserializableMembershipEvent,
|
26
26
|
"#{serialization_path}/deserializable_membership_event"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: icalia-sdk-event-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Roberto Quintanilla
|
@@ -66,7 +66,7 @@ dependencies:
|
|
66
66
|
- - "~>"
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '3.0'
|
69
|
-
description: Official Icalia SDK for Icalia
|
69
|
+
description: Official Icalia SDK for Icalia Event CoreThis gem is part of the Icalia
|
70
70
|
SDK for Ruby.
|
71
71
|
email:
|
72
72
|
- vov@icalialabs.com
|
@@ -132,5 +132,5 @@ requirements: []
|
|
132
132
|
rubygems_version: 3.0.3
|
133
133
|
signing_key:
|
134
134
|
specification_version: 4
|
135
|
-
summary: Icalia SDK for Ruby -
|
135
|
+
summary: Icalia SDK for Ruby - Event Core Library
|
136
136
|
test_files: []
|