markdo 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,4 +1,3 @@
1
- #encoding: utf-8
2
1
  require 'markdo/command'
3
2
 
4
3
  module Markdo
@@ -8,7 +7,7 @@ module Markdo
8
7
 
9
8
  matches = Dir.
10
9
  glob(markdown_glob).
11
- map { |path| File.readlines(path) }.
10
+ map { |path| File.readlines(path, encoding: 'UTF-8') }.
12
11
  flatten.
13
12
  grep(regexp)
14
13
 
@@ -1,3 +1,3 @@
1
1
  module Markdo
2
- VERSION = "0.1.1"
2
+ VERSION = "0.1.2"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: markdo
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -13,7 +13,7 @@ date: 2016-01-24 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
16
- requirement: &14936720 !ruby/object:Gem::Requirement
16
+ requirement: &17070300 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ~>
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '1.3'
22
22
  type: :development
23
23
  prerelease: false
24
- version_requirements: *14936720
24
+ version_requirements: *17070300
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: rake
27
- requirement: &14936140 !ruby/object:Gem::Requirement
27
+ requirement: &17069520 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,7 +32,7 @@ dependencies:
32
32
  version: '0'
33
33
  type: :development
34
34
  prerelease: false
35
- version_requirements: *14936140
35
+ version_requirements: *17069520
36
36
  description: Markdown-based task manager
37
37
  email:
38
38
  - hello@benjaminoakes.com
@@ -43,7 +43,6 @@ extra_rdoc_files: []
43
43
  files:
44
44
  - .gitignore
45
45
  - Gemfile
46
- - LICENSE
47
46
  - LICENSE.txt
48
47
  - README.md
49
48
  - Rakefile
data/LICENSE DELETED
@@ -1,9 +0,0 @@
1
- Copyright (c) 2016 Benjamin Oakes
2
-
3
- (The MIT license)
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
-
7
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
-
9
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.