ocpp 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
+ SHA256:
3
+ metadata.gz: 10e67d54470ff50bbee36dc17925914356d11469c7713ecd94ca5523657e591e
4
+ data.tar.gz: b789af70a790f4a39984fbf68a854fcf6b423801ce6a58cd512c9cfbbae35fe0
5
+ SHA512:
6
+ metadata.gz: 6bd348465b56ef7b6dc93d5e3e5ce31160b0712d27c32c7f761bab5c87f9f6e9a9257288d6e958f228ec5769c00bf2445165d0728f21fdf5984ed4dd93d8b678
7
+ data.tar.gz: 12766974741800f062f00cb14462f3eb10ff100ef38c0688f3fa8695defc02bc11b4dc177098ffe3d2d77cbcf4eaeb78a692ca3be9d8cd2e1a0af9334ee42e26
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2024-06-14
4
+
5
+ - Initial release
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "rspec/core/rake_task"
5
+
6
+ RSpec::Core::RakeTask.new(:spec)
7
+
8
+ task default: :spec
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module Ocpp
4
+ VERSION = "0.1.0"
5
+ end
data/lib/ocpp.rb ADDED
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "ocpp/version"
4
+
5
+ module Ocpp
6
+ class Error < StandardError; end
7
+ # Your code goes here...
8
+ end
data/readme.org ADDED
@@ -0,0 +1,48 @@
1
+ * OCPP
2
+
3
+ Introducing the OCPP gem, which will handle API calls for all the versions of the OCPP standard starting with 1.6j.
4
+
5
+ Ref: https://openchargealliance.org/
6
+
7
+ ** Installation
8
+
9
+ TODO: Replace
10
+ =UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG=
11
+ with your gem name right after releasing it to RubyGems.org. Please do
12
+ not do it earlier due to security reasons. Alternatively, replace this
13
+ section with instructions to install your gem from git if you don't plan
14
+ to release to RubyGems.org.
15
+
16
+ Install the gem and add to the application's Gemfile by executing:
17
+
18
+ #+begin_example
19
+ $ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
20
+ #+end_example
21
+
22
+ If bundler is not being used to manage dependencies, install the gem by
23
+ executing:
24
+
25
+ #+begin_example
26
+ $ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
27
+ #+end_example
28
+
29
+ ** Usage
30
+
31
+
32
+
33
+ ** Development
34
+
35
+ After checking out the repo, run =bin/setup= to install dependencies.
36
+ Then, run =rake spec= to run the tests. You can also run =bin/console=
37
+ for an interactive prompt that will allow you to experiment.
38
+
39
+ To install this gem onto your local machine, run
40
+ =bundle exec rake install=. To release a new version, update the version
41
+ number in =version.rb=, and then run =bundle exec rake release=, which
42
+ will create a git tag for the version, push git commits and the created
43
+ tag, and push the =.gem= file to [[https://rubygems.org][rubygems.org]].
44
+
45
+ ** Contributing
46
+
47
+ Bug reports and pull requests are welcome on GitHub at
48
+ https://github.com/map7/ocpp.
data/sig/ocpp.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Ocpp
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,52 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ocpp
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Michael Pope
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-06-14 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: OCPP gem which allows communication with EV chargers following the standards
14
+ email:
15
+ - map7@fastmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - ".rspec"
21
+ - CHANGELOG.md
22
+ - Rakefile
23
+ - lib/ocpp.rb
24
+ - lib/ocpp/version.rb
25
+ - readme.org
26
+ - sig/ocpp.rbs
27
+ homepage: https://github.com/map7/ocpp
28
+ licenses: []
29
+ metadata:
30
+ homepage_uri: https://github.com/map7/ocpp
31
+ source_code_uri: https://github.com/map7/ocpp
32
+ changelog_uri: https://github.com/map7/ocpp/CHANGELOG.md
33
+ post_install_message:
34
+ rdoc_options: []
35
+ require_paths:
36
+ - lib
37
+ required_ruby_version: !ruby/object:Gem::Requirement
38
+ requirements:
39
+ - - ">="
40
+ - !ruby/object:Gem::Version
41
+ version: 3.0.0
42
+ required_rubygems_version: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - ">="
45
+ - !ruby/object:Gem::Version
46
+ version: '0'
47
+ requirements: []
48
+ rubygems_version: 3.5.7
49
+ signing_key:
50
+ specification_version: 4
51
+ summary: OCPP EV Chargers Library
52
+ test_files: []