jupyter_on_rails 0.5.2 → 0.5.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: 1c7984b62f5b12bf1d298c0cdbafa8f1d9fd170a906021a8f60f93c66fc76a90
4
- data.tar.gz: f5171d706b598ba6d64b530b023ef3ae99fdb02412dc9e4b5c12718f6797acc8
3
+ metadata.gz: 21a8ae6b4a482e324dbb5cee23c4239bf9ec489b3fe6a6bf31e2f7ebccc8f612
4
+ data.tar.gz: e72c9b01472338ac1e948201d1dcce66f30fe57921660becb126219d83c7ba54
5
5
  SHA512:
6
- metadata.gz: d7af13eea9bcf82b4737e15c335689046058f03718873085a69855f69f951af5aa17447fef78b99c741caacf5683265c63c92fbc016c0ef31ce7054b3b8d7588
7
- data.tar.gz: b229902d6cc28b77064cf271cd2d078a0e3956c9ad8ecf8f2f1f35366562d7039b0cf009ea06ff9be1da385afc63719f6418b8af60c39eb6297beae618a92449
6
+ metadata.gz: cfb93042494c2f9f4a831d95059afaa1ab49dac9be49d93055debe7c70c1a9ecad0d0877fe61c98a183e1af1f5ff96abb703fba5765ee8963d745c71c770e584
7
+ data.tar.gz: '040793452a6e5b6c40b2c69bc5335cde56e8a51ae90d996e20dd817807857406e78f8aa38272049d422f732af6c0d81db83b85ac4f1f8cbb10f6b624b70e548c'
data/CHANGELOG.md CHANGED
@@ -1,5 +1,8 @@
1
1
  # Change Log
2
2
 
3
+ ## [v0.5.2](https://github.com/Yuki-Inoue/jupyter_on_rails/tree/v0.5.2) (2019-03-09)
4
+ [Full Changelog](https://github.com/Yuki-Inoue/jupyter_on_rails/compare/v0.5.1...v0.5.2)
5
+
3
6
  ## [v0.5.1](https://github.com/Yuki-Inoue/jupyter_on_rails/tree/v0.5.1) (2019-03-09)
4
7
  [Full Changelog](https://github.com/Yuki-Inoue/jupyter_on_rails/compare/v0.5.0...v0.5.1)
5
8
 
@@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
10
10
  spec.email = ["inoueyuworks@gmail.com"]
11
11
 
12
12
  spec.summary = %q{Integrate jupyter into rails}
13
- spec.description = %q{`rails jupyter:notebook` to open jupyter with rails app kernel of your project.}
13
+ spec.description = %q{Utilities for integrating jupyter and rails.}
14
14
  spec.homepage = "https://github.com/Yuki-Inoue/jupyter_on_rails"
15
15
 
16
16
  # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
@@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
31
31
  spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
32
32
  `git ls-files -z`.split("\x0")
33
33
  .reject { |f| f.match(%r{^(test|spec|features)/}) }
34
- .reject { |f| f.match(%r{.png$}) }
34
+ .reject { |f| f.match(/\.png$/) }
35
35
  end
36
36
  spec.bindir = "exe"
37
37
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
@@ -40,6 +40,7 @@ Gem::Specification.new do |spec|
40
40
  spec.add_development_dependency "bundler", "~> 1.17"
41
41
  spec.add_development_dependency "rake", "~> 10.0"
42
42
  spec.add_development_dependency 'github_changelog_generator'
43
+ spec.add_development_dependency 'bump'
43
44
 
44
45
  spec.add_dependency 'iruby'
45
46
  spec.add_dependency 'railties'
@@ -1,3 +1,3 @@
1
1
  module JupyterOnRails
2
- VERSION = '0.5.2'
2
+ VERSION = '0.5.3'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jupyter_on_rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.2
4
+ version: 0.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuki INOUE
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-03-09 00:00:00.000000000 Z
11
+ date: 2019-04-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -52,6 +52,20 @@ dependencies:
52
52
  - - ">="
53
53
  - !ruby/object:Gem::Version
54
54
  version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: bump
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - ">="
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - ">="
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
55
69
  - !ruby/object:Gem::Dependency
56
70
  name: iruby
57
71
  requirement: !ruby/object:Gem::Requirement
@@ -108,8 +122,7 @@ dependencies:
108
122
  - - ">="
109
123
  - !ruby/object:Gem::Version
110
124
  version: '0'
111
- description: "`rails jupyter:notebook` to open jupyter with rails app kernel of your
112
- project."
125
+ description: Utilities for integrating jupyter and rails.
113
126
  email:
114
127
  - inoueyuworks@gmail.com
115
128
  executables: []
@@ -153,8 +166,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
153
166
  - !ruby/object:Gem::Version
154
167
  version: '0'
155
168
  requirements: []
156
- rubyforge_project:
157
- rubygems_version: 2.7.6
169
+ rubygems_version: 3.0.3
158
170
  signing_key:
159
171
  specification_version: 4
160
172
  summary: Integrate jupyter into rails