notifly 0.0.5 → 0.0.6
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 +1 -25
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 43bc94b613e14bb40b50e2fc3cbd600f76621115
|
4
|
+
data.tar.gz: bd4dd983a612dc57c935c06f5297388a520084bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c816a026abfb708cc1c403c782ab988affdaf5da18c97be2bae22c199ce748e2374d5e79f045a4329f3cfc0760cede213235f65137e8ad853c4ad804c9f6573
|
7
|
+
data.tar.gz: 9e0fd5bddd887dbf2acb5a785a499aa4cfb963e53d721c483ba88489c7a929af0f6796f967c0b2dfe53d64d61160d7c52369e209d7fe2049efb572714682af78
|
data/Rakefile
CHANGED
@@ -20,30 +20,6 @@ Jeweler::Tasks.new do |gem|
|
|
20
20
|
gem.summary = 'A full notification system'
|
21
21
|
gem.description = 'This project intend to offer a full notification system, back and front-end.'
|
22
22
|
gem.license = 'MIT'
|
23
|
+
gem.files = Dir['{app,config,db,lib,vendor}/**/*', 'MIT-LICENSE', 'Rakefile', 'README.md']
|
23
24
|
end
|
24
25
|
Jeweler::RubygemsDotOrgTasks.new
|
25
|
-
|
26
|
-
require 'rake/testtask'
|
27
|
-
Rake::TestTask.new(:test) do |test|
|
28
|
-
test.libs << 'lib' << 'test'
|
29
|
-
test.pattern = 'test/**/test_*.rb'
|
30
|
-
test.verbose = true
|
31
|
-
end
|
32
|
-
|
33
|
-
desc "Code coverage detail"
|
34
|
-
task :simplecov do
|
35
|
-
ENV['COVERAGE'] = "true"
|
36
|
-
Rake::Task['test'].execute
|
37
|
-
end
|
38
|
-
|
39
|
-
task :default => :test
|
40
|
-
|
41
|
-
require 'rdoc/task'
|
42
|
-
Rake::RDocTask.new do |rdoc|
|
43
|
-
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
44
|
-
|
45
|
-
rdoc.rdoc_dir = 'rdoc'
|
46
|
-
rdoc.title = "hello-foo #{version}"
|
47
|
-
rdoc.rdoc_files.include('README*')
|
48
|
-
rdoc.rdoc_files.include('lib/**/*.rb')
|
49
|
-
end
|