date_book 0.0.3 → 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 +4 -4
- data/Rakefile +7 -10
- data/VERSION +1 -1
- data/date_book.gemspec +3 -3
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bbc0dfbc4a29056a5f2b5a921d13056a160121ef
|
|
4
|
+
data.tar.gz: 5c7ae0abb194599b441f22765fd95408d11449a0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9b7b3a8b7e6226f6b28f8713bd34a72171cf8c52055cde45082fbb7808a9c83f075accfa10906568ae154ad93bfe64004e5b6921eaf2c9bac28a8b129155e67a
|
|
7
|
+
data.tar.gz: 235b794a9422c737356c0a10e78bfcdf622a672b2c0ff220b33a8a43ab2c2ccda7a684df68f2541ce750de8ef63b787c89dc09e9d8f50e241f19a567359dca12
|
data/Rakefile
CHANGED
|
@@ -6,25 +6,22 @@ rescue LoadError
|
|
|
6
6
|
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
|
7
7
|
end
|
|
8
8
|
|
|
9
|
-
APP_RAKEFILE = File.expand_path('../spec/dummy/Rakefile', __FILE__)
|
|
10
|
-
load 'rails/tasks/engine.rake'
|
|
11
|
-
|
|
12
|
-
load 'rails/tasks/statistics.rake'
|
|
13
|
-
|
|
14
|
-
require 'bundler/gem_tasks'
|
|
15
|
-
|
|
16
9
|
require 'juwelier'
|
|
17
10
|
Juwelier::Tasks.new do |gem|
|
|
18
|
-
# gem is a Gem::Specification...
|
|
19
|
-
# see http://guides.rubygems.org/specification-reference/ for more options
|
|
20
11
|
gem.name = 'date_book'
|
|
21
12
|
gem.homepage = 'http://www.gemvein.com/museum/cases/date_book'
|
|
22
13
|
gem.license = 'MIT'
|
|
23
|
-
gem.summary = 'Rails
|
|
14
|
+
gem.summary = 'Rails 5 Engine to give users their own calendars of events.'
|
|
24
15
|
gem.email = 'karen.e.lundgren@gmail.com'
|
|
25
16
|
gem.authors = ['Karen Lundgren']
|
|
26
17
|
# dependencies defined in Gemfile
|
|
27
18
|
end
|
|
28
19
|
Juwelier::RubygemsDotOrgTasks.new
|
|
29
20
|
|
|
21
|
+
require 'rspec/core'
|
|
22
|
+
require 'rspec/core/rake_task'
|
|
23
|
+
RSpec::Core::RakeTask.new(:spec) do |spec|
|
|
24
|
+
spec.pattern = FileList['spec/**/*_spec.rb']
|
|
25
|
+
end
|
|
26
|
+
|
|
30
27
|
task default: :spec
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.0.
|
|
1
|
+
0.0.5
|
data/date_book.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: date_book 0.0.
|
|
5
|
+
# stub: date_book 0.0.5 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "date_book".freeze
|
|
9
|
-
s.version = "0.0.
|
|
9
|
+
s.version = "0.0.5"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib".freeze]
|
|
@@ -224,7 +224,7 @@ Gem::Specification.new do |s|
|
|
|
224
224
|
s.homepage = "http://www.gemvein.com/museum/cases/date_book".freeze
|
|
225
225
|
s.licenses = ["MIT".freeze]
|
|
226
226
|
s.rubygems_version = "2.6.11".freeze
|
|
227
|
-
s.summary = "Rails
|
|
227
|
+
s.summary = "Rails 5 Engine to give users their own calendars of events.".freeze
|
|
228
228
|
|
|
229
229
|
if s.respond_to? :specification_version then
|
|
230
230
|
s.specification_version = 4
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: date_book
|
|
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
|
- Karen Lundgren
|
|
@@ -813,5 +813,5 @@ rubyforge_project:
|
|
|
813
813
|
rubygems_version: 2.6.11
|
|
814
814
|
signing_key:
|
|
815
815
|
specification_version: 4
|
|
816
|
-
summary: Rails
|
|
816
|
+
summary: Rails 5 Engine to give users their own calendars of events.
|
|
817
817
|
test_files: []
|