onartsipac 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 +7 -0
- data/.gitignore +30 -0
- data/Gemfile +4 -0
- data/README.md +56 -0
- data/Rakefile +2 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/config/config.exs +30 -0
- data/lib/onartsipac.ex +18 -0
- data/lib/onartsipac.rb +5 -0
- data/lib/onartsipac/version.rb +3 -0
- data/mix.exs +33 -0
- data/onartsipac.gemspec +25 -0
- metadata +84 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 23e9aa75ad9e1353530f09a5e856aa3ce612a2b3
|
4
|
+
data.tar.gz: f7eaa56a7a79b541229b3353aefb8c3894e406e5
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e622efa647410d143d8b716342cbb91764d3ea12fd1c5572717fc89d224ebb55e6c34067ceec4b83c41764156dbbde0d6bb04daa574612513eba4b8f1f166782
|
7
|
+
data.tar.gz: 060b0e0ea9973fe87ce1335f83cc7b4c67aa11265d1a0e3c23dbc3a653ab49bfa6a89233a5e9b818a290231b964cca43f2b1d076fc7e5ae68020e129af6010b9
|
data/.gitignore
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# The directory Mix will write compiled artifacts to.
|
2
|
+
/_build
|
3
|
+
|
4
|
+
# If you run "mix test --cover", coverage assets end up here.
|
5
|
+
/cover
|
6
|
+
|
7
|
+
# The directory Mix downloads your dependencies sources to.
|
8
|
+
/deps
|
9
|
+
|
10
|
+
# Where 3rd-party dependencies like ExDoc output generated docs.
|
11
|
+
/doc
|
12
|
+
|
13
|
+
# Ignore .fetch files in case you like to edit your project deps locally.
|
14
|
+
/.fetch
|
15
|
+
|
16
|
+
# If the VM crashes, it generates a dump, let's ignore it too.
|
17
|
+
erl_crash.dump
|
18
|
+
|
19
|
+
# Also ignore archive artifacts (built via "mix archive.build").
|
20
|
+
*.ez
|
21
|
+
|
22
|
+
/.bundle/
|
23
|
+
/.yardoc
|
24
|
+
/Gemfile.lock
|
25
|
+
/_yardoc/
|
26
|
+
/coverage/
|
27
|
+
/doc/
|
28
|
+
/pkg/
|
29
|
+
/spec/reports/
|
30
|
+
/tmp/
|
data/Gemfile
ADDED
data/README.md
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
# Onartsipac
|
2
|
+
|
3
|
+
**TODO: Add description**
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
|
8
|
+
by adding `onartsipac` to your list of dependencies in `mix.exs`:
|
9
|
+
|
10
|
+
```elixir
|
11
|
+
def deps do
|
12
|
+
[{:onartsipac, "~> 0.1.0"}]
|
13
|
+
end
|
14
|
+
```
|
15
|
+
|
16
|
+
Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
|
17
|
+
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
|
18
|
+
be found at [https://hexdocs.pm/onartsipac](https://hexdocs.pm/onartsipac).
|
19
|
+
|
20
|
+
# Onartsipac
|
21
|
+
|
22
|
+
Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/onartsipac`. To experiment with that code, run `bin/console` for an interactive prompt.
|
23
|
+
|
24
|
+
TODO: Delete this and the text above, and describe your gem
|
25
|
+
|
26
|
+
## Installation
|
27
|
+
|
28
|
+
Add this line to your application's Gemfile:
|
29
|
+
|
30
|
+
```ruby
|
31
|
+
gem 'onartsipac'
|
32
|
+
```
|
33
|
+
|
34
|
+
And then execute:
|
35
|
+
|
36
|
+
$ bundle
|
37
|
+
|
38
|
+
Or install it yourself as:
|
39
|
+
|
40
|
+
$ gem install onartsipac
|
41
|
+
|
42
|
+
## Usage
|
43
|
+
|
44
|
+
TODO: Write usage instructions here
|
45
|
+
|
46
|
+
## Development
|
47
|
+
|
48
|
+
After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
49
|
+
|
50
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
|
51
|
+
|
52
|
+
## Contributing
|
53
|
+
|
54
|
+
Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/onartsipac.
|
55
|
+
|
56
|
+
|
data/Rakefile
ADDED
data/bin/console
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require "bundler/setup"
|
4
|
+
require "onartsipac"
|
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
|
data/bin/setup
ADDED
data/config/config.exs
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# This file is responsible for configuring your application
|
2
|
+
# and its dependencies with the aid of the Mix.Config module.
|
3
|
+
use Mix.Config
|
4
|
+
|
5
|
+
# This configuration is loaded before any dependency and is restricted
|
6
|
+
# to this project. If another project depends on this project, this
|
7
|
+
# file won't be loaded nor affect the parent project. For this reason,
|
8
|
+
# if you want to provide default values for your application for
|
9
|
+
# 3rd-party users, it should be done in your "mix.exs" file.
|
10
|
+
|
11
|
+
# You can configure for your application as:
|
12
|
+
#
|
13
|
+
# config :onartsipac, key: :value
|
14
|
+
#
|
15
|
+
# And access this configuration in your application as:
|
16
|
+
#
|
17
|
+
# Application.get_env(:onartsipac, :key)
|
18
|
+
#
|
19
|
+
# Or configure a 3rd-party app:
|
20
|
+
#
|
21
|
+
# config :logger, level: :info
|
22
|
+
#
|
23
|
+
|
24
|
+
# It is also possible to import configuration files, relative to this
|
25
|
+
# directory. For example, you can emulate configuration per environment
|
26
|
+
# by uncommenting the line below and defining dev.exs, test.exs and such.
|
27
|
+
# Configuration from the imported file will override the ones defined
|
28
|
+
# here (which is why it is important to import them last).
|
29
|
+
#
|
30
|
+
# import_config "#{Mix.env}.exs"
|
data/lib/onartsipac.ex
ADDED
data/lib/onartsipac.rb
ADDED
data/mix.exs
ADDED
@@ -0,0 +1,33 @@
|
|
1
|
+
defmodule Onartsipac.Mixfile do
|
2
|
+
use Mix.Project
|
3
|
+
|
4
|
+
def project do
|
5
|
+
[app: :onartsipac,
|
6
|
+
version: "0.1.0",
|
7
|
+
elixir: "~> 1.4",
|
8
|
+
build_embedded: Mix.env == :prod,
|
9
|
+
start_permanent: Mix.env == :prod,
|
10
|
+
deps: deps()]
|
11
|
+
end
|
12
|
+
|
13
|
+
# Configuration for the OTP application
|
14
|
+
#
|
15
|
+
# Type "mix help compile.app" for more information
|
16
|
+
def application do
|
17
|
+
# Specify extra applications you'll use from Erlang/Elixir
|
18
|
+
[extra_applications: [:logger]]
|
19
|
+
end
|
20
|
+
|
21
|
+
# Dependencies can be Hex packages:
|
22
|
+
#
|
23
|
+
# {:my_dep, "~> 0.3.0"}
|
24
|
+
#
|
25
|
+
# Or git/path repositories:
|
26
|
+
#
|
27
|
+
# {:my_dep, git: "https://github.com/elixir-lang/my_dep.git", tag: "0.1.0"}
|
28
|
+
#
|
29
|
+
# Type "mix help deps" for more examples and options
|
30
|
+
defp deps do
|
31
|
+
[]
|
32
|
+
end
|
33
|
+
end
|
data/onartsipac.gemspec
ADDED
@@ -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 'onartsipac/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "onartsipac"
|
8
|
+
spec.version = Onartsipac::VERSION
|
9
|
+
spec.authors = ["Thomas Stratmann"]
|
10
|
+
spec.email = ["thomas.stratmann@9elements.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Saithe9v mib4ahVe AeF9aihi eor5zuSh}
|
13
|
+
spec.description = %q{Saithe9v mib4ahVe AeF9aihi eor5zuSh}
|
14
|
+
#spec.homepage = "TODO: Put your gem's website or public repo URL here."
|
15
|
+
|
16
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
17
|
+
f.match(%r{^(test|spec|features)/})
|
18
|
+
end
|
19
|
+
spec.bindir = "exe"
|
20
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
21
|
+
spec.require_paths = ["lib"]
|
22
|
+
|
23
|
+
spec.add_development_dependency "bundler", "~> 1.13"
|
24
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
25
|
+
end
|
metadata
ADDED
@@ -0,0 +1,84 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: onartsipac
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Thomas Stratmann
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2017-04-10 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.13'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.13'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
description: Saithe9v mib4ahVe AeF9aihi eor5zuSh
|
42
|
+
email:
|
43
|
+
- thomas.stratmann@9elements.com
|
44
|
+
executables: []
|
45
|
+
extensions: []
|
46
|
+
extra_rdoc_files: []
|
47
|
+
files:
|
48
|
+
- ".gitignore"
|
49
|
+
- Gemfile
|
50
|
+
- README.md
|
51
|
+
- Rakefile
|
52
|
+
- bin/console
|
53
|
+
- bin/setup
|
54
|
+
- config/config.exs
|
55
|
+
- lib/onartsipac.ex
|
56
|
+
- lib/onartsipac.rb
|
57
|
+
- lib/onartsipac/version.rb
|
58
|
+
- mix.exs
|
59
|
+
- onartsipac.gemspec
|
60
|
+
homepage:
|
61
|
+
licenses: []
|
62
|
+
metadata: {}
|
63
|
+
post_install_message:
|
64
|
+
rdoc_options: []
|
65
|
+
require_paths:
|
66
|
+
- lib
|
67
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - ">="
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: '0'
|
72
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
version: '0'
|
77
|
+
requirements: []
|
78
|
+
rubyforge_project:
|
79
|
+
rubygems_version: 2.5.2
|
80
|
+
signing_key:
|
81
|
+
specification_version: 4
|
82
|
+
summary: Saithe9v mib4ahVe AeF9aihi eor5zuSh
|
83
|
+
test_files: []
|
84
|
+
has_rdoc:
|