renote 0.0.4 → 0.0.5
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 +8 -8
- data/Rakefile +9 -3
- data/lib/renote/version.rb +1 -1
- data/renote.gemspec +2 -1
- data/spec/_helper.rb +3 -0
- data/spec/application_spec.rb +13 -0
- metadata +20 -3
- data/lib/tasks/spec.rake +0 -4
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
NjZiN2Y1NWFkMWY0NTUxZTA3M2ZlYjIzN2VjNTZhMjBkODJjZjhjMg==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
YTFkNjYzMTEwZjIwM2FjOWI3MzJiYjkxZDc0ZmQ0NDgzMTIyNTAxMw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NTNjZGY4ZDliYTQwNjE3ZGMxZTc1ZGY2NTEyYWRiMjViMjUzZTIxOWJhMTVh
|
10
|
+
YWIxM2U0NmU1NTk3NzQ1ZDEwMTMyNzc0MmQ5NzY4OTY1ZjNjZDE4ZGU2Mzc0
|
11
|
+
YTQwZjNhMDAwNjE2OTA4N2Y4NTc5YjgyNjRlZDllZWYyYTViNjA=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
Yjc1MTM1YzViODQ1ZGE0YTJmY2U4NTU1OWE5YzkxOGIyMjcyNjY4MWY1OWIx
|
14
|
+
NzcxNzc3ZmVhZGVkOGI2YzMxMDViNDFiMjEzMjYzYjMwZTc2NTllNzg0ZDkx
|
15
|
+
ODg2YmU2NmE2NThkODkyNDlkMzM5ZWVlNDFjN2EzZjFjNjhhMWQ=
|
data/Rakefile
CHANGED
@@ -1,5 +1,11 @@
|
|
1
|
-
require
|
1
|
+
require 'bundler/gem_tasks'
|
2
2
|
|
3
|
-
|
3
|
+
begin
|
4
|
+
require 'rspec/core/rake_task'
|
5
|
+
RSpec::Core::RakeTask.new(:spec)
|
6
|
+
task :default => :spec
|
7
|
+
rescue LoadError
|
8
|
+
# no rspec available
|
9
|
+
end
|
4
10
|
|
5
|
-
|
11
|
+
# Dir.glob('lib/tasks/*.rake').each {|r| import r}
|
data/lib/renote/version.rb
CHANGED
data/renote.gemspec
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# coding: utf-8
|
2
2
|
lib = File.expand_path('../lib', __FILE__)
|
3
3
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
-
require '
|
4
|
+
require 'renote/version'
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = 'renote'
|
@@ -22,5 +22,6 @@ Gem::Specification.new do |s|
|
|
22
22
|
s.add_development_dependency 'bundler', '~> 1.6'
|
23
23
|
s.add_development_dependency 'rake', '~> 10.0'
|
24
24
|
s.add_development_dependency 'coveralls', '~> 0.7'
|
25
|
+
s.add_development_dependency 'rspec', '~> 3.1'
|
25
26
|
s.add_dependency 'thor', '~> 0.19'
|
26
27
|
end
|
data/spec/_helper.rb
ADDED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: renote
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nick Kaye
|
@@ -52,6 +52,20 @@ dependencies:
|
|
52
52
|
- - ~>
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0.7'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '3.1'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ~>
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '3.1'
|
55
69
|
- !ruby/object:Gem::Dependency
|
56
70
|
name: thor
|
57
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -86,8 +100,9 @@ files:
|
|
86
100
|
- lib/renote.rb
|
87
101
|
- lib/renote/cli/application.rb
|
88
102
|
- lib/renote/version.rb
|
89
|
-
- lib/tasks/spec.rake
|
90
103
|
- renote.gemspec
|
104
|
+
- spec/_helper.rb
|
105
|
+
- spec/application_spec.rb
|
91
106
|
homepage: ''
|
92
107
|
licenses:
|
93
108
|
- MIT
|
@@ -113,4 +128,6 @@ rubygems_version: 2.2.2
|
|
113
128
|
signing_key:
|
114
129
|
specification_version: 4
|
115
130
|
summary: Renote is a CLI for discreet note-taking.
|
116
|
-
test_files:
|
131
|
+
test_files:
|
132
|
+
- spec/_helper.rb
|
133
|
+
- spec/application_spec.rb
|
data/lib/tasks/spec.rake
DELETED