calib 0.1.1 → 0.1.2

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: 2f998d93edda9a2a5d3c0dc317c7033bf9dad116f2ec90842291ebe6a585c952
4
- data.tar.gz: f9c840a36e415c1ef92628c68dffd086bf8c8c650d15bd090c03981357bf02c3
3
+ metadata.gz: 8dd6340d5170599fc4c4c9f3f690ed9dc7e8279130b7ce553d24bffcc90dc033
4
+ data.tar.gz: b8a85287b35a30794b977febbd0a1b6dc1b234b238a1760e2aba9ac2fe8c3d70
5
5
  SHA512:
6
- metadata.gz: caaa8a8424fbbc2457bd177370154eb4f37fc5601e491ebc3aed3ba0bf138e879b5dc118542477babe36595bbc275384d15e1f2ef9459a798ffcc134366b80f8
7
- data.tar.gz: 161b75280c270cbc5a45c8f7b75f61e6cfa3f35c71463e0d4345655acdfb8b27428cc84c5a89b3b8fc8370413541bf6fac94f6e43c7e27bbc3581df7373e4b4f
6
+ metadata.gz: 0b1907b8512454c673a5ca33eb46dc4a3c86a2ee5f6b3e090b3a1b34fd26fa9a0aea8dce5cc289b23e0a0250714c8a2efdbb59f28144001103144b3ff0afa113
7
+ data.tar.gz: 1d8531614c66d807665dc58572896397ba9a25ce1667aaab02e6e364612a6904b2ac1e38f4a4a07129b42861089fa4c6dfa6b199694e30557461f792fb94aa93
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- calib (0.1.1)
4
+ calib (0.1.2)
5
5
 
6
6
  GEM
7
7
  remote: https://rubygems.org/
data/README.md CHANGED
@@ -32,7 +32,7 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
32
32
 
33
33
  ## Contributing
34
34
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/calib. 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.
35
+ Bug reports and pull requests are welcome on GitHub at https://github.com/CircleAround/calib. 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.
36
36
 
37
37
  ## License
38
38
 
@@ -40,4 +40,4 @@ The gem is available as open source under the terms of the [MIT License](https:/
40
40
 
41
41
  ## Code of Conduct
42
42
 
43
- Everyone interacting in the Calib project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/calib/blob/master/CODE_OF_CONDUCT.md).
43
+ Everyone interacting in the Calib project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/CircleAround/calib/blob/master/CODE_OF_CONDUCT.md).
data/lib/calib.rb CHANGED
@@ -1,5 +1,7 @@
1
1
  require "calib/version"
2
- require 'calib/network'
3
2
 
4
- module Calib
3
+ if defined?(Rails)
4
+ require 'calib/engine'
5
+ else
6
+ require 'calib/network'
5
7
  end
@@ -0,0 +1,5 @@
1
+ module Calib
2
+ class Engine < ::Rails::Engine
3
+ config.autoload_paths += Dir["#{config.root}/lib/**/"]
4
+ end
5
+ end
data/lib/calib/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Calib
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: calib
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - ms2sato
@@ -72,6 +72,7 @@ files:
72
72
  - bin/setup
73
73
  - calib.gemspec
74
74
  - lib/calib.rb
75
+ - lib/calib/engine.rb
75
76
  - lib/calib/network.rb
76
77
  - lib/calib/network/util.rb
77
78
  - lib/calib/version.rb