rails-erd-d3 0.0.2 → 0.0.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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/rails-erd-d3.gemspec +1 -1
  3. metadata +1 -3
  4. data/bin/console +0 -14
  5. data/bin/setup +0 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 18d87dbe5a94992c7bdbc1aaff152a22c733cc65
4
- data.tar.gz: bd184dadedc6008f1172f03cb81500c18cb7fcfa
3
+ metadata.gz: '0758af84491487f062c7db9f8adeb678e9532d8c'
4
+ data.tar.gz: b8237a162c13155a8646b0fcc999f903c15a45ca
5
5
  SHA512:
6
- metadata.gz: 1198f5452ab064ae1ff160d48c3832b4d4d6b76e8abb4eda3cc495b8f44229187e5ca9b9fb544927adf559f88b2748353f34dce8252d331e2fbfaafeba1b522f
7
- data.tar.gz: fa727ad09550b0ee7775e5761b4503f7f57259e74b6b64f0588e4aadd9af52a609e7cd596f5a737f153d3b682c57c4888413a3abb02a69838047f6bb37422e3b
6
+ metadata.gz: 887a73b083c9d97973e8f3c71a0f9c569e0df6e65d3ee9264c669da62c1b18f25a3fdc18b8c51e06fdab88af6e312790cef926007319cd33544088911c1c30a0
7
+ data.tar.gz: d52148cbbd0353d1fa751eddbfa0618aa0d18f41fbfa49b11c22ca3ed7f2b27d5cb160aca7a34c21c45ba91445c9bbd53eec717909d7f81cd381c6f52fd44a46
data/rails-erd-d3.gemspec CHANGED
@@ -6,7 +6,7 @@ Gem::Specification.new do |spec|
6
6
  spec.name = "rails-erd-d3"
7
7
  spec.authors = ["Roman Krasavtsev"]
8
8
  spec.email = ["mr.krasavtsev@gmail.com"]
9
- spec.version = "0.0.2"
9
+ spec.version = "0.0.3"
10
10
  spec.summary = "Entity–relationship diagram with D3.js for Rails application"
11
11
  spec.description = "This gem creates entity–relationship diagram with D3.js for your Rails application"
12
12
  spec.homepage = "https://github.com/RomanKrasavtsev/rails-erd-d3"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-erd-d3
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.2
4
+ version: 0.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Roman Krasavtsev
@@ -67,8 +67,6 @@ files:
67
67
  - LICENSE.txt
68
68
  - README.md
69
69
  - Rakefile
70
- - bin/console
71
- - bin/setup
72
70
  - lib/rails_erd_d3.rb
73
71
  - rails-erd-d3.gemspec
74
72
  homepage: https://github.com/RomanKrasavtsev/rails-erd-d3
data/bin/console DELETED
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "rails/erd/d3"
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 DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here