inertia 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5bbf3aaee0511f8144ac511330c6836a8acb4c436389d31356bf518bfd0c8d25
4
- data.tar.gz: dd08302a860ad45c3595c4a28c743ac9534e99381cbb5d5ed5fb39caf0c7dd79
3
+ metadata.gz: 54049003ac9e8b0859fbc55f00a09f7d0b7ea85b79f194e0b1bd789baac28495
4
+ data.tar.gz: 492cf75dd2dc7260c504e2ab05588e798faf9b5a42e07b1a5d1c533c80cdca71
5
5
  SHA512:
6
- metadata.gz: aa6771c84b20387f9816c8540f9c17552f0383ffe0b80fcdd4771342fb05a2d5b59428042839465db39b382e58ec1db3f50fd8e57be8e303cfe944120c4d8660
7
- data.tar.gz: a1c4677695aff68f0ba5f22d8b9b5706a66f79079714961051e621acb1a75880a7bee9e672a43a7e720f85653e843a1dcf110f3b6a8b8ba28654aab65526d501
6
+ metadata.gz: bf0e36f7dacbec8aef79f5eef24a23dc5c11d1e03331099e66f7b163189d14bf9ba0254960d38f387dbe44c75843a89a4b1ae5ec22826932d05026ed3acf6097
7
+ data.tar.gz: 8e523e7db241e6a7227d5490d37f0fb9fa107b63bdaeb7eccbe5b56b8e6c25c925a67054e6b362384bed0e71f6393879caa3f3f73f5e05e360770b80a32af5ba
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- inertia (0.1.2)
4
+ inertia (0.1.3)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
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 'inertia'
6
+ gem install inertia
13
7
  ```
14
8
 
15
9
  And then execute:
16
10
 
17
- $ bundle
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 `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
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 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).
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 https://github.com/[USERNAME]/inertia. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
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 License](https://opensource.org/licenses/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 rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/inertia/blob/master/CODE_OF_CONDUCT.md).
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
@@ -1,7 +1,5 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- require 'bundler/setup'
4
- require 'pry'
5
3
  require 'inertia'
6
4
 
7
5
  Inertia::Resistance.display
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"
@@ -1,3 +1,3 @@
1
1
  module Inertia
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
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.2
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-20 00:00:00.000000000 Z
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: '0'
107
+ version: 2.4.0
108
108
  required_rubygems_version: !ruby/object:Gem::Requirement
109
109
  requirements:
110
110
  - - ">="