mark_it_zero 0.1.0 → 0.1.1

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: fcd02452b3618a33471d2cb08f96ae7429ec8a40
4
- data.tar.gz: b2e6b0a648e7d9979d705ca8fae57534c099a64f
3
+ metadata.gz: abfae5f2aacd0a7400742211c51dd468e73abf08
4
+ data.tar.gz: d8298ceeb0b159151a31de9fafa0bf1dfa30565a
5
5
  SHA512:
6
- metadata.gz: e0930e9d20b15219c52f68fcf3233a73c5775449cac7ac373a487815a233800dceb02b3f3192a235a78042b713f1a1047289e2f6dbf2afd4f289f1404bdc4af5
7
- data.tar.gz: e5f692ac81a9bd3317d231c4b0bd1489fe4ce4eaa73bd7a0f47b783251cec98f09d8f0ad6d72741a82c4599f96bae3bcfdfad21a6048213ad3fc0a2c4d86c470
6
+ metadata.gz: 88ae8926b300a4225cffe6a13f292ce96419f0490e4e5ca9306c51f8a8b26337f15b07a016fbaee9ba7329bf99204187b57985b2b50378dffec9019b4e182972
7
+ data.tar.gz: 85716b70bd5ef1786189c05f7fc27cc0016244cb5b8a0feb0647392fc1d61a0e7a69e5a9205ba0936ac2dafd2c9ab3aa744557e7beb5daed9369300ea70b4815
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- mark_it_zero (0.1.0)
4
+ mark_it_zero (0.1.1)
5
5
  jquery-rails
6
6
  pygments.rb
7
7
  rails (~> 4.1.0)
data/Rakefile CHANGED
@@ -1,34 +1 @@
1
- begin
2
- require 'bundler/setup'
3
- rescue LoadError
4
- puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
- end
6
-
7
- require 'rdoc/task'
8
-
9
- RDoc::Task.new(:rdoc) do |rdoc|
10
- rdoc.rdoc_dir = 'rdoc'
11
- rdoc.title = 'MarkItZero'
12
- rdoc.options << '--line-numbers'
13
- rdoc.rdoc_files.include('README.rdoc')
14
- rdoc.rdoc_files.include('lib/**/*.rb')
15
- end
16
-
17
- APP_RAKEFILE = File.expand_path("../test/dummy/Rakefile", __FILE__)
18
- load 'rails/tasks/engine.rake'
19
-
20
-
21
-
22
- Bundler::GemHelper.install_tasks
23
-
24
- require 'rake/testtask'
25
-
26
- Rake::TestTask.new(:test) do |t|
27
- t.libs << 'lib'
28
- t.libs << 'test'
29
- t.pattern = 'test/**/*_test.rb'
30
- t.verbose = false
31
- end
32
-
33
-
34
- task default: :test
1
+ require "bundler/gem_tasks"
@@ -1,6 +1,5 @@
1
1
  module MarkItZero
2
2
  class Engine < ::Rails::Engine
3
- isolate_namespace MarkItZero
4
3
 
5
4
  # Autoload the view helper
6
5
  initializer 'mark_it_zero.action_controller' do |app|
@@ -8,5 +7,6 @@ module MarkItZero
8
7
  helper MarkItZero::EditorHelper
9
8
  end
10
9
  end
10
+
11
11
  end
12
12
  end
@@ -1,3 +1,3 @@
1
1
  module MarkItZero
2
- VERSION = "0.1.0"
2
+ VERSION = "0.1.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mark_it_zero
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Sean C Davis
@@ -111,8 +111,7 @@ dependencies:
111
111
  description: ''
112
112
  email:
113
113
  - scdavis41@gmail.com
114
- executables:
115
- - rails
114
+ executables: []
116
115
  extensions: []
117
116
  extra_rdoc_files: []
118
117
  files:
@@ -127,7 +126,6 @@ files:
127
126
  - app/assets/fonts/mark_it_zero/icomoon.svg
128
127
  - app/assets/fonts/mark_it_zero/icomoon.ttf
129
128
  - app/assets/fonts/mark_it_zero/icomoon.woff
130
- - app/assets/images/mark_it_zero/.keep
131
129
  - app/assets/javascripts/mark_it_zero/application.js
132
130
  - app/assets/javascripts/mark_it_zero/editor.js
133
131
  - app/assets/javascripts/mark_it_zero/mark_it_zero.js
@@ -137,17 +135,11 @@ files:
137
135
  - app/assets/stylesheets/mark_it_zero/editor.scss
138
136
  - app/assets/stylesheets/mark_it_zero/icons.scss
139
137
  - app/assets/stylesheets/mark_it_zero/mark_it_zero.scss
140
- - app/controllers/mark_it_zero/application_controller.rb
141
- - app/helpers/mark_it_zero/application_helper.rb
142
138
  - app/helpers/mark_it_zero/editor_helper.rb
143
- - app/views/layouts/mark_it_zero/application.html.erb
144
- - bin/rails
145
- - config/routes.rb
146
139
  - lib/mark_it_zero.rb
147
140
  - lib/mark_it_zero/converts_markdown.rb
148
141
  - lib/mark_it_zero/engine.rb
149
142
  - lib/mark_it_zero/version.rb
150
- - lib/tasks/mark_it_zero_tasks.rake
151
143
  - mark_it_zero.gemspec
152
144
  - test/dummy/README.rdoc
153
145
  - test/dummy/Rakefile
File without changes
@@ -1,4 +0,0 @@
1
- module MarkItZero
2
- class ApplicationController < ActionController::Base
3
- end
4
- end
@@ -1,4 +0,0 @@
1
- module MarkItZero
2
- module ApplicationHelper
3
- end
4
- end
@@ -1,14 +0,0 @@
1
- <!DOCTYPE html>
2
- <html>
3
- <head>
4
- <title>MarkItZero</title>
5
- <%= stylesheet_link_tag "mark_it_zero/application", media: "all" %>
6
- <%= javascript_include_tag "mark_it_zero/application" %>
7
- <%= csrf_meta_tags %>
8
- </head>
9
- <body>
10
-
11
- <%= yield %>
12
-
13
- </body>
14
- </html>
data/bin/rails DELETED
@@ -1,12 +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/mark_it_zero/engine', __FILE__)
6
-
7
- # Set up gems listed in the Gemfile.
8
- ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../Gemfile', __FILE__)
9
- require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
10
-
11
- require 'rails/all'
12
- require 'rails/engine/commands'
@@ -1,2 +0,0 @@
1
- MarkItZero::Engine.routes.draw do
2
- end
@@ -1,4 +0,0 @@
1
- # desc "Explaining what the task does"
2
- # task :mark_it_zero do
3
- # # Task goes here
4
- # end