scal 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,17 @@
1
+ *.gem
2
+ *.rbc
3
+ .bundle
4
+ .config
5
+ .yardoc
6
+ Gemfile.lock
7
+ InstalledFiles
8
+ _yardoc
9
+ coverage
10
+ doc/
11
+ lib/bundler/man
12
+ pkg
13
+ rdoc
14
+ spec/reports
15
+ test/tmp
16
+ test/version_tmp
17
+ tmp
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in scal.gemspec
4
+ gemspec
@@ -0,0 +1,24 @@
1
+ # A sample Guardfile
2
+ # More info at https://github.com/guard/guard#readme
3
+
4
+ guard 'minitest' do
5
+ # with Minitest::Unit
6
+ watch(%r|^test/(.*)\/?test_(.*)\.rb|)
7
+ watch(%r|^lib/(.*)([^/]+)\.rb|) { |m| "test/#{m[1]}test_#{m[2]}.rb" }
8
+ watch(%r|^test/test_helper\.rb|) { "test" }
9
+
10
+ # with Minitest::Spec
11
+ watch(%r|^spec/(.*)_spec\.rb|)
12
+ watch(%r|^lib/(.*)([^/]+)\.rb|) { |m| "spec/#{m[1]}#{m[2]}_spec.rb" }
13
+ watch(%r|^spec/spec_helper\.rb|) { "spec" }
14
+
15
+ # Rails 3.2
16
+ # watch(%r|^app/controllers/(.*)\.rb|) { |m| "test/controllers/#{m[1]}_test.rb" }
17
+ # watch(%r|^app/helpers/(.*)\.rb|) { |m| "test/helpers/#{m[1]}_test.rb" }
18
+ # watch(%r|^app/models/(.*)\.rb|) { |m| "test/unit/#{m[1]}_test.rb" }
19
+
20
+ # Rails
21
+ # watch(%r|^app/controllers/(.*)\.rb|) { |m| "test/functional/#{m[1]}_test.rb" }
22
+ # watch(%r|^app/helpers/(.*)\.rb|) { |m| "test/helpers/#{m[1]}_test.rb" }
23
+ # watch(%r|^app/models/(.*)\.rb|) { |m| "test/unit/#{m[1]}_test.rb" }
24
+ end
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 addisaden
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,63 @@
1
+ ## software under development - _not_ _finished_ _yet_
2
+
3
+ # Scal
4
+
5
+ Scal is a smart calendar-system which helps you to manage your day, week and year.
6
+
7
+ ## Why Scal?
8
+
9
+ Every digital calendar manage tasks and dates on the same way:
10
+
11
+ dates: fixed or periodical date
12
+ tasks: a simple todolist with an optional date
13
+
14
+ It just works like a normal calendarbook, but software can do much more.
15
+
16
+ what should Scal do for you?
17
+
18
+ - a date can be fixed, periodical and self-organized
19
+ - a date accept timezones (i.e. work, study, break)
20
+ - a task can be simple, have a deadline and can be self-organized
21
+ - a task can linked to an date
22
+ - tasks and dates can be tagged
23
+ - tasks and dates can have individual id's
24
+ - tasks and dates should understand locations
25
+ - scal has to understand abstract time events
26
+ - scal should know that is needs time from one location to another
27
+ - scal can generate a routing from one location to another
28
+ - scal can be synced with another database, dropbox or other services
29
+ - scal can push your events to a calendar service like google-calendar
30
+ - scal can generate a calendar-file like ical
31
+ - scal can also start a webapp
32
+
33
+ How would it be, when scal know when your local supermarket is open and set your todo "buy some food" to
34
+ the right time? How would it be, when scal reorganize flexible dates/todos like "learn for test 7 hours per week"
35
+ when you get another fixed date and give a warn message when you ran out of time?
36
+ how would it be, when your todos organized to locations or timezones?
37
+
38
+
39
+ ## Installation
40
+
41
+ Add this line to your application's Gemfile:
42
+
43
+ gem 'scal'
44
+
45
+ And then execute:
46
+
47
+ $ bundle
48
+
49
+ Or install it yourself as:
50
+
51
+ $ gem install scal
52
+
53
+ ## Usage
54
+
55
+ TODO: Write usage instructions here
56
+
57
+ ## Contributing
58
+
59
+ 1. Fork it
60
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
61
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
62
+ 4. Push to the branch (`git push origin my-new-feature`)
63
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,5 @@
1
+ require "scal/version"
2
+
3
+ module Scal
4
+ # Your code goes here...
5
+ end
@@ -0,0 +1,3 @@
1
+ module Scal
2
+ VERSION = "0.0.1"
3
+ end
@@ -0,0 +1,28 @@
1
+ # -*- encoding: utf-8 -*-
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'scal/version'
5
+
6
+ Gem::Specification.new do |gem|
7
+ # gemspecs
8
+ gem.name = "scal"
9
+ gem.version = Scal::VERSION
10
+ gem.authors = ["Adrian E."]
11
+ gem.email = ["ae@writedown.eu"]
12
+ gem.description = %q{this is just a placeholder for the name - scal - smart-calendar}
13
+ gem.summary = "scal - a smart-calendar-system that helps to manage day, week and year"
14
+ gem.homepage = "https://github.com/addisaden/scal"
15
+
16
+ # files
17
+ gem.files = `git ls-files`.split($/)
18
+ gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
19
+ gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
20
+ gem.require_paths = ["lib"]
21
+
22
+ # dependency
23
+ gem.add_dependency('thor')
24
+
25
+ # development - dependency
26
+ gem.add_development_dependency('guard-minitest')
27
+ gem.add_development_dependency('rb-inotify', '~> 0.8.8')
28
+ end
metadata ADDED
@@ -0,0 +1,88 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: scal
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ prerelease:
6
+ platform: ruby
7
+ authors:
8
+ - Adrian E.
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2013-01-15 00:00:00.000000000 Z
13
+ dependencies:
14
+ - !ruby/object:Gem::Dependency
15
+ name: thor
16
+ requirement: &81692300 !ruby/object:Gem::Requirement
17
+ none: false
18
+ requirements:
19
+ - - ! '>='
20
+ - !ruby/object:Gem::Version
21
+ version: '0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: *81692300
25
+ - !ruby/object:Gem::Dependency
26
+ name: guard-minitest
27
+ requirement: &81691600 !ruby/object:Gem::Requirement
28
+ none: false
29
+ requirements:
30
+ - - ! '>='
31
+ - !ruby/object:Gem::Version
32
+ version: '0'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: *81691600
36
+ - !ruby/object:Gem::Dependency
37
+ name: rb-inotify
38
+ requirement: &81691110 !ruby/object:Gem::Requirement
39
+ none: false
40
+ requirements:
41
+ - - ~>
42
+ - !ruby/object:Gem::Version
43
+ version: 0.8.8
44
+ type: :development
45
+ prerelease: false
46
+ version_requirements: *81691110
47
+ description: this is just a placeholder for the name - scal - smart-calendar
48
+ email:
49
+ - ae@writedown.eu
50
+ executables: []
51
+ extensions: []
52
+ extra_rdoc_files: []
53
+ files:
54
+ - .gitignore
55
+ - Gemfile
56
+ - Guardfile
57
+ - LICENSE.txt
58
+ - README.md
59
+ - Rakefile
60
+ - lib/scal.rb
61
+ - lib/scal/version.rb
62
+ - scal.gemspec
63
+ homepage: https://github.com/addisaden/scal
64
+ licenses: []
65
+ post_install_message:
66
+ rdoc_options: []
67
+ require_paths:
68
+ - lib
69
+ required_ruby_version: !ruby/object:Gem::Requirement
70
+ none: false
71
+ requirements:
72
+ - - ! '>='
73
+ - !ruby/object:Gem::Version
74
+ version: '0'
75
+ required_rubygems_version: !ruby/object:Gem::Requirement
76
+ none: false
77
+ requirements:
78
+ - - ! '>='
79
+ - !ruby/object:Gem::Version
80
+ version: '0'
81
+ requirements: []
82
+ rubyforge_project:
83
+ rubygems_version: 1.8.11
84
+ signing_key:
85
+ specification_version: 3
86
+ summary: scal - a smart-calendar-system that helps to manage day, week and year
87
+ test_files: []
88
+ has_rdoc: