waddup 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 95fe6a3282a7513458817d10341eac6c16031560
4
+ data.tar.gz: 5b23548b168517ea3cc7c85d7234828e5512fa6c
5
+ SHA512:
6
+ metadata.gz: dd746b49772f2f4b0b807c224858f2144992e87e48663504e7095575a1ae436fd07ac5c022bfd96247195df34bc5d89e21df480b180529ae4fb59d5c404c0c2b
7
+ data.tar.gz: 880b9f15d345e83edb3ea148fe8cac19a829e2a8e8978f7155d91c1c9a8b81837da3028a8827ff5527e8e7a8992877b34b372d203f37966cf21d7bda998483a6
@@ -0,0 +1,6 @@
1
+ *.gem
2
+ .bundle
3
+ Gemfile.lock
4
+ pkg/
5
+ coverage/
6
+ tmp/
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --color
2
+ --format documentation
@@ -0,0 +1,7 @@
1
+ language: ruby
2
+ rvm:
3
+ - 1.8.7
4
+ - 1.9.2
5
+ - 1.9.3
6
+ - 2.0.0
7
+ script: bundle exec rake test
@@ -0,0 +1,3 @@
1
+ # Changelog
2
+
3
+ *No releases yet*
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'http://rubygems.org'
2
+
3
+ # For the actual gemspec see waddup.gemspec
4
+ gemspec
@@ -0,0 +1,5 @@
1
+ guard :rspec do
2
+ watch(%r{^spec/.+_spec\.rb$})
3
+ watch(%r{^lib/(.+)\.rb$}) { |m| "spec/#{m[1]}_spec.rb" }
4
+ watch('spec/spec_helper.rb') { 'spec' }
5
+ end
@@ -0,0 +1,24 @@
1
+ # License
2
+
3
+ Licensed under the **MIT** license
4
+
5
+ > Copyright (c) 2013 Tim Kurvers <<tim@moonsphere.net>>
6
+ >
7
+ > Permission is hereby granted, free of charge, to any person obtaining
8
+ > a copy of this software and associated documentation files (the
9
+ > "Software"), to deal in the Software without restriction, including
10
+ > without limitation the rights to use, copy, modify, merge, publish,
11
+ > distribute, sublicense, and/or sell copies of the Software, and to
12
+ > permit persons to whom the Software is furnished to do so, subject to
13
+ > the following conditions:
14
+ >
15
+ > The above copyright notice and this permission notice shall be
16
+ > included in all copies or substantial portions of the Software.
17
+ >
18
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19
+ > EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20
+ > MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
21
+ > IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
22
+ > CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23
+ > TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24
+ > SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,15 @@
1
+ # Waddup
2
+
3
+ [![Gem Version](https://badge.fury.io/rb/waddup.png)](https://rubygems.org/gems/waddup)
4
+ [![Build Status](https://secure.travis-ci.org/timkurvers/waddup.png?branch=master)](https://travis-ci.org/timkurvers/waddup)
5
+ [![Dependency Status](https://gemnasium.com/timkurvers/waddup.png)](https://gemnasium.com/timkurvers/waddup)
6
+ [![Code Climate](https://codeclimate.com/github/timkurvers/waddup.png)](https://codeclimate.com/github/timkurvers/waddup)
7
+ [![Coverage Status](https://coveralls.io/repos/timkurvers/waddup/badge.png?branch=master)](https://coveralls.io/r/timkurvers/waddup)
8
+
9
+ Waddup is a Ruby gem that retraces your activities from arbitrary sources - such as version control, issue tracking software and mail clients - and displays them in a neat chronological overview.
10
+
11
+ Perfect for those who have lost track of what they have worked on.
12
+
13
+ **Supported Ruby versions: 1.8.7 or higher**
14
+
15
+ Licensed under the **MIT** license, see LICENSE for more information.
@@ -0,0 +1,9 @@
1
+ require 'bundler/gem_tasks'
2
+ require 'rspec/core/rake_task'
3
+
4
+ RSpec::Core::RakeTask.new(:test) do |spec|
5
+ spec.pattern = 'spec/*.rb'
6
+ spec.rspec_opts = ['--color']
7
+ end
8
+
9
+ task :default => :test
@@ -0,0 +1 @@
1
+ require 'waddup/version'
File without changes
@@ -0,0 +1,5 @@
1
+ module Waddup
2
+
3
+ VERSION = '0.0.1'
4
+
5
+ end
@@ -0,0 +1,10 @@
1
+ require 'simplecov'
2
+ require 'coveralls'
3
+
4
+ SimpleCov.formatter = SimpleCov::Formatter::MultiFormatter[
5
+ SimpleCov::Formatter::HTMLFormatter,
6
+ Coveralls::SimpleCov::Formatter
7
+ ]
8
+ SimpleCov.start
9
+
10
+ require 'waddup'
@@ -0,0 +1,30 @@
1
+ # encoding: utf-8
2
+
3
+ $:.push File.expand_path('../lib', __FILE__)
4
+
5
+ require 'waddup/version'
6
+
7
+ Gem::Specification.new do |s|
8
+ s.name = 'waddup'
9
+ s.version = Waddup::VERSION
10
+ s.authors = ['Tim Kurvers']
11
+ s.email = ['tim@moonsphere.net']
12
+ s.homepage = 'https://github.com/timkurvers/waddup'
13
+ s.summary = 'Waddup retraces your activities from arbitrary sources such as version control, issue tracking software and mail clients'
14
+ s.description = 'Waddup retraces your activities from arbitrary sources - such as version control, issue tracking software and mail clients - and displays them in a neat chronological overview'
15
+
16
+ s.rubyforge_project = 'waddup'
17
+
18
+ s.files = `git ls-files`.split("\n")
19
+ s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
20
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
21
+ s.require_paths = ['lib']
22
+
23
+ s.add_dependency 'thor', '~> 0.18.1'
24
+
25
+ s.add_development_dependency 'coveralls'
26
+ s.add_development_dependency 'guard-rspec'
27
+ s.add_development_dependency 'rake'
28
+ s.add_development_dependency 'rspec'
29
+ s.add_development_dependency 'simplecov'
30
+ end
metadata ADDED
@@ -0,0 +1,146 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: waddup
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Tim Kurvers
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-10-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: thor
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ~>
18
+ - !ruby/object:Gem::Version
19
+ version: 0.18.1
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ~>
25
+ - !ruby/object:Gem::Version
26
+ version: 0.18.1
27
+ - !ruby/object:Gem::Dependency
28
+ name: coveralls
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: guard-rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - '>='
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: rspec
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - '>='
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - '>='
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: simplecov
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - '>='
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - '>='
95
+ - !ruby/object:Gem::Version
96
+ version: '0'
97
+ description: Waddup retraces your activities from arbitrary sources - such as version
98
+ control, issue tracking software and mail clients - and displays them in a neat
99
+ chronological overview
100
+ email:
101
+ - tim@moonsphere.net
102
+ executables: []
103
+ extensions: []
104
+ extra_rdoc_files: []
105
+ files:
106
+ - .gitignore
107
+ - .rspec
108
+ - .travis.yml
109
+ - CHANGELOG.md
110
+ - Gemfile
111
+ - Guardfile
112
+ - LICENSE.md
113
+ - README.md
114
+ - Rakefile
115
+ - lib/waddup.rb
116
+ - lib/waddup/cli.rb
117
+ - lib/waddup/version.rb
118
+ - spec/spec_helper.rb
119
+ - waddup.gemspec
120
+ homepage: https://github.com/timkurvers/waddup
121
+ licenses: []
122
+ metadata: {}
123
+ post_install_message:
124
+ rdoc_options: []
125
+ require_paths:
126
+ - lib
127
+ required_ruby_version: !ruby/object:Gem::Requirement
128
+ requirements:
129
+ - - '>='
130
+ - !ruby/object:Gem::Version
131
+ version: '0'
132
+ required_rubygems_version: !ruby/object:Gem::Requirement
133
+ requirements:
134
+ - - '>='
135
+ - !ruby/object:Gem::Version
136
+ version: '0'
137
+ requirements: []
138
+ rubyforge_project: waddup
139
+ rubygems_version: 2.0.3
140
+ signing_key:
141
+ specification_version: 4
142
+ summary: Waddup retraces your activities from arbitrary sources such as version control,
143
+ issue tracking software and mail clients
144
+ test_files:
145
+ - spec/spec_helper.rb
146
+ has_rdoc: