inertia 0.1.2 → 0.1.3
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 +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +19 -20
- data/exe/in +0 -2
- data/inertia.gemspec +1 -0
- data/lib/inertia/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: 54049003ac9e8b0859fbc55f00a09f7d0b7ea85b79f194e0b1bd789baac28495
|
4
|
+
data.tar.gz: 492cf75dd2dc7260c504e2ab05588e798faf9b5a42e07b1a5d1c533c80cdca71
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bf0e36f7dacbec8aef79f5eef24a23dc5c11d1e03331099e66f7b163189d14bf9ba0254960d38f387dbe44c75843a89a4b1ae5ec22826932d05026ed3acf6097
|
7
|
+
data.tar.gz: 8e523e7db241e6a7227d5490d37f0fb9fa107b63bdaeb7eccbe5b56b8e6c25c925a67054e6b362384bed0e71f6393879caa3f3f73f5e05e360770b80a32af5ba
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -1,43 +1,42 @@
|
|
1
1
|
# Inertia
|
2
2
|
|
3
|
-
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/inertia`. To experiment with that code, run `bin/console` for an interactive prompt.
|
4
|
-
|
5
|
-
TODO: Delete this and the text above, and describe your gem
|
6
|
-
|
7
3
|
## Installation
|
8
4
|
|
9
|
-
Add this line to your application's Gemfile:
|
10
|
-
|
11
5
|
```ruby
|
12
|
-
gem
|
6
|
+
gem install inertia
|
13
7
|
```
|
14
8
|
|
15
9
|
And then execute:
|
16
10
|
|
17
|
-
$
|
18
|
-
|
19
|
-
Or install it yourself as:
|
20
|
-
|
21
|
-
$ gem install inertia
|
22
|
-
|
23
|
-
## Usage
|
11
|
+
$ in
|
24
12
|
|
25
|
-
TODO: Write usage instructions here
|
26
13
|
|
27
14
|
## Development
|
28
15
|
|
29
|
-
After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
16
|
+
After checking out the repo, run `bin/setup` to install dependencies. Then, run
|
17
|
+
`rake spec` to run the tests. You can also run `bin/console` for an interactive
|
18
|
+
prompt that will allow you to experiment.
|
30
19
|
|
31
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To
|
20
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To
|
21
|
+
release a new version, update the version number in `version.rb`, and then run
|
22
|
+
`bundle exec rake release`, which will create a git tag for the version, push
|
23
|
+
git commits and tags, and push the `.gem` file to
|
24
|
+
[rubygems.org](https://rubygems.org).
|
32
25
|
|
33
26
|
## Contributing
|
34
27
|
|
35
|
-
Bug reports and pull requests are welcome on GitHub at
|
28
|
+
Bug reports and pull requests are welcome on GitHub at
|
29
|
+
https://github.com/[USERNAME]/inertia. This project is intended to be a safe,
|
30
|
+
welcoming space for collaboration, and contributors are expected to adhere to
|
31
|
+
the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
36
32
|
|
37
33
|
## License
|
38
34
|
|
39
|
-
The gem is available as open source under the terms of the [MIT
|
35
|
+
The gem is available as open source under the terms of the [MIT
|
36
|
+
License](https://opensource.org/licenses/MIT).
|
40
37
|
|
41
38
|
## Code of Conduct
|
42
39
|
|
43
|
-
Everyone interacting in the Inertia project’s codebases, issue trackers, chat
|
40
|
+
Everyone interacting in the Inertia project’s codebases, issue trackers, chat
|
41
|
+
rooms and mailing lists is expected to follow the [code of
|
42
|
+
conduct](https://github.com/[USERNAME]/inertia/blob/master/CODE_OF_CONDUCT.md).
|
data/exe/in
CHANGED
data/inertia.gemspec
CHANGED
@@ -22,6 +22,7 @@ Gem::Specification.new do |spec|
|
|
22
22
|
spec.bindir = "exe"
|
23
23
|
spec.executables = 'in'
|
24
24
|
spec.require_paths = ["lib"]
|
25
|
+
spec.required_ruby_version = '>= 2.4.0'
|
25
26
|
|
26
27
|
spec.add_development_dependency "bundler", "~> 1.16"
|
27
28
|
spec.add_development_dependency "rake", "~> 10.0"
|
data/lib/inertia/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: inertia
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Hood
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-10-
|
11
|
+
date: 2018-10-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -104,7 +104,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
104
104
|
requirements:
|
105
105
|
- - ">="
|
106
106
|
- !ruby/object:Gem::Version
|
107
|
-
version:
|
107
|
+
version: 2.4.0
|
108
108
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
109
109
|
requirements:
|
110
110
|
- - ">="
|