md_simple_editor 0.2.3.pre1 → 0.2.3.pre3

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d8214eeca60e00fe6e8a881c50333b00c47d34af
4
- data.tar.gz: b1d85124f67fae81a5cc978bf18b4fa2869ee06b
3
+ metadata.gz: b8b4751c2e7219a0340398184f3772106632dd05
4
+ data.tar.gz: 51e8a82cf3eb94ab07862f0c5592c23ac920a7ff
5
5
  SHA512:
6
- metadata.gz: f2643b4cb4719ce1cc84de42a51cc981340d852a57953c91daff11564dd3abc4c7a6c27cf26402a12912048b6b934ed08205f43385e88ef527ad8842286fdeed
7
- data.tar.gz: 0b3055d1a47f06a79b9cb1f3d9c8bf9c8ed3a04e9ba33ef995f03fbb734381cab42ae098a7826cfdc499df82cee9dc1607fe52826df0d1893099b23ca092c78c
6
+ metadata.gz: 4beb85431a427338cec4898e0bd03024d60db21742d35ba348fc7620da948fa46fe0f62dd9de28ef2f3aa15283a908ffd5adf01d02429433d60b4620843c3246
7
+ data.tar.gz: f168fcfd74d68d5780782bf736af9d7b4734187606aad39764906ca9e124a723a0ef4eea2aa7912a66a0e2f374dff844659d4b3265b281992a8b93d20cfca108
@@ -1,4 +1,4 @@
1
1
  module MdSimpleEditor
2
- VERSION = "0.2.3.pre1"
2
+ VERSION = "0.2.3.pre3"
3
3
  end
4
4
 
@@ -14,7 +14,6 @@ Gem::Specification.new do |spec|
14
14
  spec.license = "MIT"
15
15
 
16
16
  spec.files = `git ls-files`.split($/)
17
- spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
17
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
18
  spec.require_paths = ["lib"]
20
19
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: md_simple_editor
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3.pre1
4
+ version: 0.2.3.pre3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ruben Espinosa
@@ -69,8 +69,7 @@ dependencies:
69
69
  description: Simple editor for markdown and rails
70
70
  email:
71
71
  - rderoldan1@gmail.com
72
- executables:
73
- - rails
72
+ executables: []
74
73
  extensions: []
75
74
  extra_rdoc_files: []
76
75
  files:
@@ -90,7 +89,6 @@ files:
90
89
  - app/helpers/md_simple_editor/rails/md_helper.rb
91
90
  - app/views/md_simple_editor/layouts/md_simple_editor/application.html.erb
92
91
  - app/views/md_simple_editor/md_preview/preview.html.erb
93
- - bin/rails
94
92
  - config/routes.rb
95
93
  - lib/md_simple_editor.rb
96
94
  - lib/md_simple_editor/engine.rb
data/bin/rails DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env ruby
2
- # This command will automatically be run when you run "rails" with Rails 4 gems installed from the root of your application.
3
-
4
- ENGINE_ROOT = File.expand_path('../..', __FILE__)
5
- ENGINE_PATH = File.expand_path('../../lib/md_simple_editor/engine', __FILE__)
6
- puts ENGINE_PATH
7
- require 'rails/all'
8
- require 'rails/engine/commands'