marked-rails 0.2.10.1 → 9.1.2.0

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
- SHA1:
3
- metadata.gz: b68f070d24786a94504f62f1183c949b4f90d95c
4
- data.tar.gz: e6797910ccece2cf131e59de8c0dc5d4560d2289
2
+ SHA256:
3
+ metadata.gz: bcd13d4b9cdd3c3a3d74565d6b9c3854efbd2f52592889ba14e756cd3bc6ad41
4
+ data.tar.gz: 67b45cfa32eb59f588fa96dbd1215c3e48dca530e47a4192e9d56aecee3f45ea
5
5
  SHA512:
6
- metadata.gz: 360a9aada83b7dc27baa537274d99c5e8e78de0bf348f37d9dda42f5881eb4428c4d9388bebc4e08fb5de51ff68e4da4c4097070d99b1c03e3b9c5c6311c3ab2
7
- data.tar.gz: 23d870e6d4ebc2a982d76eae6b98237b8390722cc844ef0140fe12df7ead4b3530f1431b24134b7233440babb35236f66245509bd378065d6c680990cb04f3d6
6
+ metadata.gz: 25270cee1e94ad1a86b5b15041a120eb15ae6b609aea16173849d8c695d1058d6714adf6148ac693c166df9899725d2868dd576b798e0675b8dab7da1cd13d72
7
+ data.tar.gz: 51f71045ba6fd736b8a511c0ff3f26a3ea14f8767112f2828686c00f750f0b1cdded2a3d1c5e0d1701dbd30108507a501c16b8cf7dbbf500fba75380fe4367b7
data/README.md CHANGED
@@ -36,8 +36,6 @@ To invoke the generator, run:
36
36
  rails generate marked:install
37
37
  ```
38
38
 
39
- You're done!
40
-
41
39
  ## Versioning Conventions
42
40
 
43
41
  The least significant digits are gem-specific. Everything before those digits are marked versions.
@@ -1,6 +1,6 @@
1
1
  module Marked
2
2
  module Rails
3
- MARKED_VERSION = "0.2.10"
4
- VERSION = "#{MARKED_VERSION}.1"
3
+ MARKED_VERSION = "9.1.2"
4
+ VERSION = "#{MARKED_VERSION}.0"
5
5
  end
6
6
  end
data/marked-rails.gemspec CHANGED
@@ -3,10 +3,11 @@ require File.expand_path('../lib/marked-rails/version', __FILE__)
3
3
 
4
4
  Gem::Specification.new do |gem|
5
5
  gem.authors = ["nodanaonlyzuul", "rosscooperman"]
6
- gem.email = ["stephen@eastmedia.com"]
6
+ gem.email = ["cooperman@gmail.com"]
7
7
  gem.description = 'A gemified verison of the chjj/marked: "A full-featured markdown parser and compiler, written in javascript."'
8
8
  gem.summary = 'A gemified verison of the chjj/marked'
9
- gem.homepage = "https://github.com/eastmedia/marked-rails"
9
+ gem.homepage = "https://github.com/rosscooperman/marked-rails"
10
+ gem.licenses = ['MIT']
10
11
 
11
12
  gem.files = `git ls-files`.split($\)
12
13
  gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }