epoch 0.0.1

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.
@@ -0,0 +1,4 @@
1
+ == 0.0.1 / 2008-12-10
2
+
3
+ * 1 Epoch is born
4
+ * Uploaded initial setup to RubyForge
@@ -0,0 +1,10 @@
1
+ History.txt
2
+ Manifest.txt
3
+ README.txt
4
+ Rakefile
5
+ bin/epoch
6
+ lib/epoch.rb
7
+ lib/epoch/pattern.rb
8
+ spec/epoch_spec.rb
9
+ spec/spec_helper.rb
10
+ test/test_epoch.rb
@@ -0,0 +1,51 @@
1
+ epoch
2
+ by Dan Ryan
3
+ http://epoch.rubyforge.org
4
+
5
+ == DESCRIPTION:
6
+
7
+ * Ruby library used to create patterns of time (temporal expressions)
8
+
9
+ == FEATURES/PROBLEMS:
10
+
11
+ * Features: Easily grab dates matching a pattern of time (temporal expression)
12
+ * Problems: Not entirely functional yet :)
13
+
14
+ == SYNOPSIS:
15
+ * Find all dates matching start_at date in the year.
16
+ Epoch::Pattern("monthly", Date.today.beginning_of_year, Date.today.end_of_year)
17
+ #=> Epoch::Pattern("monthly", "2008-01-01", "2008-12-31")
18
+
19
+
20
+ == REQUIREMENTS:
21
+
22
+ * Requires ActiveSupport for its Date and Time additions (may not be required in the near future)
23
+
24
+ == INSTALL:
25
+
26
+ * sudo gem install epoch
27
+
28
+ == LICENSE:
29
+
30
+ (The MIT License)
31
+
32
+ Copyright (c) 2008 Dan Ryan
33
+
34
+ Permission is hereby granted, free of charge, to any person obtaining
35
+ a copy of this software and associated documentation files (the
36
+ 'Software'), to deal in the Software without restriction, including
37
+ without limitation the rights to use, copy, modify, merge, publish,
38
+ distribute, sublicense, and/or sell copies of the Software, and to
39
+ permit persons to whom the Software is furnished to do so, subject to
40
+ the following conditions:
41
+
42
+ The above copyright notice and this permission notice shall be
43
+ included in all copies or substantial portions of the Software.
44
+
45
+ THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
46
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
47
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
48
+ IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
49
+ CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
50
+ TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
51
+ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,27 @@
1
+ # Look in the tasks/setup.rb file for the various options that can be
2
+ # configured in this Rakefile. The .rake files in the tasks directory
3
+ # are where the options are used.
4
+
5
+ begin
6
+ require 'bones'
7
+ Bones.setup
8
+ rescue LoadError
9
+ load 'tasks/setup.rb'
10
+ end
11
+
12
+ ensure_in_path 'lib'
13
+ require 'epoch'
14
+
15
+ task :default => 'spec:run'
16
+
17
+ PROJ.name = 'epoch'
18
+ PROJ.authors = 'Dan Ryan'
19
+ PROJ.email = 'scriptfu@gmail.com'
20
+ PROJ.url = 'http://epoch.rubyforge.org'
21
+ PROJ.version = Epoch::VERSION
22
+ PROJ.rubyforge.name = 'epoch'
23
+ PROJ.exclude = %w(.git pkg)
24
+
25
+ PROJ.spec.opts << '--color'
26
+
27
+ # EOF
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require File.expand_path(
4
+ File.join(File.dirname(__FILE__), %w[.. lib epoch]))
5
+
6
+ # Put your code here
7
+
8
+ # EOF
@@ -0,0 +1,151 @@
1
+
2
+ module Epoch
3
+
4
+ # :stopdoc:
5
+ VERSION = '0.0.1'
6
+ LIBPATH = ::File.expand_path(::File.dirname(__FILE__)) + ::File::SEPARATOR
7
+ PATH = ::File.dirname(LIBPATH) + ::File::SEPARATOR
8
+ # :startdoc:
9
+
10
+ # Returns the version string for the library.
11
+ #
12
+ def self.version
13
+ VERSION
14
+ end
15
+
16
+ # Returns the library path for the module. If any arguments are given,
17
+ # they will be joined to the end of the libray path using
18
+ # <tt>File.join</tt>.
19
+ #
20
+ def self.libpath( *args )
21
+ args.empty? ? LIBPATH : ::File.join(LIBPATH, args.flatten)
22
+ end
23
+
24
+ # Returns the lpath for the module. If any arguments are given,
25
+ # they will be joined to the end of the path using
26
+ # <tt>File.join</tt>.
27
+ #
28
+ def self.path( *args )
29
+ args.empty? ? PATH : ::File.join(PATH, args.flatten)
30
+ end
31
+
32
+ # Utility method used to rquire all files ending in .rb that lie in the
33
+ # directory below this file that has the same name as the filename passed
34
+ # in. Optionally, a specific _directory_ name can be passed in such that
35
+ # the _filename_ does not have to be equivalent to the directory.
36
+ #
37
+ def self.require_all_libs_relative_to( fname, dir = nil )
38
+ dir ||= ::File.basename(fname, '.*')
39
+ search_me = ::File.expand_path(
40
+ ::File.join(::File.dirname(fname), dir, '*', '*.rb'))
41
+
42
+ Dir.glob(search_me).sort.each {|rb| require rb}
43
+ end
44
+
45
+
46
+ class << self
47
+
48
+ def day_name(number)
49
+ Date::DAYNAMES[number]
50
+ end
51
+
52
+ def month_name(number)
53
+ Date::MONTHNAMES[number]
54
+ end
55
+
56
+ def format_time(date)
57
+ date.strftime('%I:%M%p')
58
+ end
59
+
60
+ def format_date(date)
61
+ date.ctime
62
+ end
63
+
64
+ def ordinalize(number)
65
+ if (number.to_i == -1)
66
+ 'last'
67
+ elsif (number.to_i == -2)
68
+ 'second to last'
69
+ elsif (11..13).include?(number.to_i % 100)
70
+ "#{number}th"
71
+ else
72
+ case number.to_i % 10
73
+ when 1: "#{number}st"
74
+ when 2: "#{number}nd"
75
+ when 3: "#{number}rd"
76
+ else "#{number}th"
77
+ end
78
+ end
79
+ end
80
+ end
81
+
82
+ #DAYNAMES Constants
83
+ Sunday = Date::DAYNAMES[0]
84
+ Monday = Date::DAYNAMES[1]
85
+ Tuesday = Date::DAYNAMES[2]
86
+ Wednesday = Date::DAYNAMES[3]
87
+ Thursday = Date::DAYNAMES[4]
88
+ Friday = Date::DAYNAMES[5]
89
+ Saturday = Date::DAYNAMES[6]
90
+ #ABBR_DAYNAMES Constants
91
+ Sun = Date::ABBR_DAYNAMES[0]
92
+ Mon = Date::ABBR_DAYNAMES[1]
93
+ Tue = Date::ABBR_DAYNAMES[2]
94
+ Wed = Date::ABBR_DAYNAMES[3]
95
+ Thu = Date::ABBR_DAYNAMES[4]
96
+ Fri = Date::ABBR_DAYNAMES[5]
97
+ Sat = Date::ABBR_DAYNAMES[6]
98
+ # MONTHNAMES Constants
99
+ January = Date::MONTHNAMES[0]
100
+ February = Date::MONTHNAMES[1]
101
+ March = Date::MONTHNAMES[2]
102
+ April = Date::MONTHNAMES[3]
103
+ May = Date::MONTHNAMES[4]
104
+ June = Date::MONTHNAMES[5]
105
+ July = Date::MONTHNAMES[6]
106
+ August = Date::MONTHNAMES[7]
107
+ September = Date::MONTHNAMES[8]
108
+ October = Date::MONTHNAMES[9]
109
+ November = Date::MONTHNAMES[10]
110
+ December = Date::MONTHNAMES[11]
111
+ end
112
+
113
+ class Numeric
114
+ def microseconds
115
+ Float(self * (10 ** -6))
116
+ end
117
+ def milliseconds()
118
+ Float(self * (10 ** -3))
119
+ end
120
+ def seconds
121
+ self
122
+ end
123
+ def minutes
124
+ 60 * seconds
125
+ end
126
+ def hours
127
+ 60 * minutes
128
+ end
129
+ def days
130
+ 24 * hours
131
+ end
132
+ def weeks
133
+ 7 * days
134
+ end
135
+ def months
136
+ 30 * days
137
+ end
138
+ def years
139
+ 365 * days
140
+ end
141
+ def decades
142
+ 10 * years
143
+ end
144
+ %w{microseconds milliseconds seconds minutes hours days weeks months years decades}.each do |m|
145
+ alias_method m.chop, m
146
+ end
147
+ end # module Epoch
148
+
149
+ Epoch.require_all_libs_relative_to(__FILE__)
150
+
151
+ # EOF
@@ -0,0 +1,53 @@
1
+ module Epoch
2
+ class Pattern
3
+ VALID_FREQUENCY = %w{ daily weekly monthly quarterly semesterly yearly}
4
+
5
+ def initialize(frequency, start_at, end_at, interval=1)
6
+ raise TypeError, 'start_at should be a Date' unless start_at.kind_of?(Date)
7
+ raise TypeError, 'end_at should be a Date' unless end_at.kind_of?(Date)
8
+ unless VALID_FREQUENCY.include?(frequency)
9
+ raise ArgumentError, "frequency should be 'daily', 'weekly', 'monthly', or 'yearly'"
10
+ end
11
+ @start_at = start_at
12
+ @end_at = end_at
13
+ @frequency = frequency
14
+ @interval = interval
15
+ @date_range = start_at..end_at
16
+ end
17
+ def start_at
18
+ @start_at
19
+ end
20
+
21
+ def end_at
22
+ @end_at
23
+ end
24
+
25
+ def date_range
26
+ @date_range
27
+ end
28
+
29
+ def dates
30
+ @dates = []
31
+ puts "Find dates between #{@start_at} and #{@end_at}"
32
+ @date_range.select do |date|
33
+ case @frequency
34
+ when "daily"
35
+ date == date
36
+ @dates.push date
37
+ # puts date
38
+ when "weekly"
39
+ date.wday == @start_at.wday
40
+ #@dates.push date
41
+ # puts date
42
+ when "monthly"
43
+ date.mday == @start_at.mday
44
+ @dates << date
45
+ # puts date
46
+ when "yearly"
47
+ puts "yearly"
48
+ end
49
+ end
50
+ @dates
51
+ end
52
+ end
53
+ end
@@ -0,0 +1,7 @@
1
+
2
+ require File.join(File.dirname(__FILE__), %w[spec_helper])
3
+
4
+ describe Epoch do
5
+ end
6
+
7
+ # EOF
@@ -0,0 +1,16 @@
1
+
2
+ require File.expand_path(
3
+ File.join(File.dirname(__FILE__), %w[.. lib epoch]))
4
+
5
+ Spec::Runner.configure do |config|
6
+ # == Mock Framework
7
+ #
8
+ # RSpec uses it's own mocking framework by default. If you prefer to
9
+ # use mocha, flexmock or RR, uncomment the appropriate line:
10
+ #
11
+ # config.mock_with :mocha
12
+ # config.mock_with :flexmock
13
+ # config.mock_with :rr
14
+ end
15
+
16
+ # EOF
@@ -0,0 +1,80 @@
1
+
2
+ begin
3
+ require 'bones/smtp_tls'
4
+ rescue LoadError
5
+ require 'net/smtp'
6
+ end
7
+ require 'time'
8
+
9
+ namespace :ann do
10
+
11
+ # A prerequisites task that all other tasks depend upon
12
+ task :prereqs
13
+
14
+ file PROJ.ann.file do
15
+ ann = PROJ.ann
16
+ puts "Generating #{ann.file}"
17
+ File.open(ann.file,'w') do |fd|
18
+ fd.puts("#{PROJ.name} version #{PROJ.version}")
19
+ fd.puts(" by #{Array(PROJ.authors).first}") if PROJ.authors
20
+ fd.puts(" #{PROJ.url}") if PROJ.url.valid?
21
+ fd.puts(" (the \"#{PROJ.release_name}\" release)") if PROJ.release_name
22
+ fd.puts
23
+ fd.puts("== DESCRIPTION")
24
+ fd.puts
25
+ fd.puts(PROJ.description)
26
+ fd.puts
27
+ fd.puts(PROJ.changes.sub(%r/^.*$/, '== CHANGES'))
28
+ fd.puts
29
+ ann.paragraphs.each do |p|
30
+ fd.puts "== #{p.upcase}"
31
+ fd.puts
32
+ fd.puts paragraphs_of(PROJ.readme_file, p).join("\n\n")
33
+ fd.puts
34
+ end
35
+ fd.puts ann.text if ann.text
36
+ end
37
+ end
38
+
39
+ desc "Create an announcement file"
40
+ task :announcement => ['ann:prereqs', PROJ.ann.file]
41
+
42
+ desc "Send an email announcement"
43
+ task :email => ['ann:prereqs', PROJ.ann.file] do
44
+ ann = PROJ.ann
45
+ from = ann.email[:from] || PROJ.email
46
+ to = Array(ann.email[:to])
47
+
48
+ ### build a mail header for RFC 822
49
+ rfc822msg = "From: #{from}\n"
50
+ rfc822msg << "To: #{to.join(',')}\n"
51
+ rfc822msg << "Subject: [ANN] #{PROJ.name} #{PROJ.version}"
52
+ rfc822msg << " (#{PROJ.release_name})" if PROJ.release_name
53
+ rfc822msg << "\n"
54
+ rfc822msg << "Date: #{Time.new.rfc822}\n"
55
+ rfc822msg << "Message-Id: "
56
+ rfc822msg << "<#{"%.8f" % Time.now.to_f}@#{ann.email[:domain]}>\n\n"
57
+ rfc822msg << File.read(ann.file)
58
+
59
+ params = [:server, :port, :domain, :acct, :passwd, :authtype].map do |key|
60
+ ann.email[key]
61
+ end
62
+
63
+ params[3] = PROJ.email if params[3].nil?
64
+
65
+ if params[4].nil?
66
+ STDOUT.write "Please enter your e-mail password (#{params[3]}): "
67
+ params[4] = STDIN.gets.chomp
68
+ end
69
+
70
+ ### send email
71
+ Net::SMTP.start(*params) {|smtp| smtp.sendmail(rfc822msg, from, to)}
72
+ end
73
+ end # namespace :ann
74
+
75
+ desc 'Alias to ann:announcement'
76
+ task :ann => 'ann:announcement'
77
+
78
+ CLOBBER << PROJ.ann.file
79
+
80
+ # EOF
@@ -0,0 +1,20 @@
1
+
2
+ if HAVE_BONES
3
+
4
+ namespace :bones do
5
+
6
+ desc 'Show the PROJ open struct'
7
+ task :debug do |t|
8
+ atr = if t.application.top_level_tasks.length == 2
9
+ t.application.top_level_tasks.pop
10
+ end
11
+
12
+ if atr then Bones::Debug.show_attr(PROJ, atr)
13
+ else Bones::Debug.show PROJ end
14
+ end
15
+
16
+ end # namespace :bones
17
+
18
+ end # HAVE_BONES
19
+
20
+ # EOF
@@ -0,0 +1,192 @@
1
+
2
+ require 'find'
3
+ require 'rake/packagetask'
4
+ require 'rubygems/user_interaction'
5
+ require 'rubygems/builder'
6
+
7
+ module Bones
8
+ class GemPackageTask < Rake::PackageTask
9
+ # Ruby GEM spec containing the metadata for this package. The
10
+ # name, version and package_files are automatically determined
11
+ # from the GEM spec and don't need to be explicitly provided.
12
+ #
13
+ attr_accessor :gem_spec
14
+
15
+ # Tasks from the Bones gem directory
16
+ attr_reader :bones_files
17
+
18
+ # Create a GEM Package task library. Automatically define the gem
19
+ # if a block is given. If no block is supplied, then +define+
20
+ # needs to be called to define the task.
21
+ #
22
+ def initialize(gem_spec)
23
+ init(gem_spec)
24
+ yield self if block_given?
25
+ define if block_given?
26
+ end
27
+
28
+ # Initialization tasks without the "yield self" or define
29
+ # operations.
30
+ #
31
+ def init(gem)
32
+ super(gem.name, gem.version)
33
+ @gem_spec = gem
34
+ @package_files += gem_spec.files if gem_spec.files
35
+ @bones_files = []
36
+
37
+ local_setup = File.join(Dir.pwd, %w[tasks setup.rb])
38
+ if !test(?e, local_setup)
39
+ Dir.glob(::Bones.path(%w[lib bones tasks *])).each {|fn| bones_files << fn}
40
+ gem_spec.files = (gem_spec.files +
41
+ bones_files.map {|fn| File.join('tasks', File.basename(fn))}).sort
42
+ end
43
+ end
44
+
45
+ # Create the Rake tasks and actions specified by this
46
+ # GemPackageTask. (+define+ is automatically called if a block is
47
+ # given to +new+).
48
+ #
49
+ def define
50
+ super
51
+ task :prereqs
52
+ task :package => ['gem:prereqs', "#{package_dir_path}/#{gem_file}"]
53
+ file "#{package_dir_path}/#{gem_file}" => [package_dir_path] + package_files + bones_files do
54
+ when_writing("Creating GEM") {
55
+ chdir(package_dir_path) do
56
+ Gem::Builder.new(gem_spec).build
57
+ verbose(true) {
58
+ mv gem_file, "../#{gem_file}"
59
+ }
60
+ end
61
+ }
62
+ end
63
+
64
+ file package_dir_path => bones_files do
65
+ mkdir_p package_dir rescue nil
66
+ bones_files.each do |fn|
67
+ base_fn = File.join('tasks', File.basename(fn))
68
+ f = File.join(package_dir_path, base_fn)
69
+ fdir = File.dirname(f)
70
+ mkdir_p(fdir) if !File.exist?(fdir)
71
+ if File.directory?(fn)
72
+ mkdir_p(f)
73
+ else
74
+ raise "file name conflict for '#{base_fn}' (conflicts with '#{fn}')" if test(?e, f)
75
+ safe_ln(fn, f)
76
+ end
77
+ end
78
+ end
79
+ end
80
+
81
+ def gem_file
82
+ if @gem_spec.platform == Gem::Platform::RUBY
83
+ "#{package_name}.gem"
84
+ else
85
+ "#{package_name}-#{@gem_spec.platform}.gem"
86
+ end
87
+ end
88
+ end # class GemPackageTask
89
+ end # module Bones
90
+
91
+ namespace :gem do
92
+
93
+ PROJ.gem._spec = Gem::Specification.new do |s|
94
+ s.name = PROJ.name
95
+ s.version = PROJ.version
96
+ s.summary = PROJ.summary
97
+ s.authors = Array(PROJ.authors)
98
+ s.email = PROJ.email
99
+ s.homepage = Array(PROJ.url).first
100
+ s.rubyforge_project = PROJ.rubyforge.name
101
+
102
+ s.description = PROJ.description
103
+
104
+ PROJ.gem.dependencies.each do |dep|
105
+ s.add_dependency(*dep)
106
+ end
107
+
108
+ PROJ.gem.development_dependencies.each do |dep|
109
+ s.add_development_dependency(*dep)
110
+ end
111
+
112
+ s.files = PROJ.gem.files
113
+ s.executables = PROJ.gem.executables.map {|fn| File.basename(fn)}
114
+ s.extensions = PROJ.gem.files.grep %r/extconf\.rb$/
115
+
116
+ s.bindir = 'bin'
117
+ dirs = Dir["{#{PROJ.libs.join(',')}}"]
118
+ s.require_paths = dirs unless dirs.empty?
119
+
120
+ incl = Regexp.new(PROJ.rdoc.include.join('|'))
121
+ excl = PROJ.rdoc.exclude.dup.concat %w[\.rb$ ^(\.\/|\/)?ext]
122
+ excl = Regexp.new(excl.join('|'))
123
+ rdoc_files = PROJ.gem.files.find_all do |fn|
124
+ case fn
125
+ when excl; false
126
+ when incl; true
127
+ else false end
128
+ end
129
+ s.rdoc_options = PROJ.rdoc.opts + ['--main', PROJ.rdoc.main]
130
+ s.extra_rdoc_files = rdoc_files
131
+ s.has_rdoc = true
132
+
133
+ if test ?f, PROJ.test.file
134
+ s.test_file = PROJ.test.file
135
+ else
136
+ s.test_files = PROJ.test.files.to_a
137
+ end
138
+
139
+ # Do any extra stuff the user wants
140
+ PROJ.gem.extras.each do |msg, val|
141
+ case val
142
+ when Proc
143
+ val.call(s.send(msg))
144
+ else
145
+ s.send "#{msg}=", val
146
+ end
147
+ end
148
+ end # Gem::Specification.new
149
+
150
+ Bones::GemPackageTask.new(PROJ.gem._spec) do |pkg|
151
+ pkg.need_tar = PROJ.gem.need_tar
152
+ pkg.need_zip = PROJ.gem.need_zip
153
+ end
154
+
155
+ desc 'Show information about the gem'
156
+ task :debug => 'gem:prereqs' do
157
+ puts PROJ.gem._spec.to_ruby
158
+ end
159
+
160
+ desc 'Install the gem'
161
+ task :install => [:clobber, 'gem:package'] do
162
+ sh "#{SUDO} #{GEM} install --local pkg/#{PROJ.gem._spec.full_name}"
163
+
164
+ # use this version of the command for rubygems > 1.0.0
165
+ #sh "#{SUDO} #{GEM} install --no-update-sources pkg/#{PROJ.gem._spec.full_name}"
166
+ end
167
+
168
+ desc 'Uninstall the gem'
169
+ task :uninstall do
170
+ installed_list = Gem.source_index.find_name(PROJ.name)
171
+ if installed_list and installed_list.collect { |s| s.version.to_s}.include?(PROJ.version) then
172
+ sh "#{SUDO} #{GEM} uninstall --version '#{PROJ.version}' --ignore-dependencies --executables #{PROJ.name}"
173
+ end
174
+ end
175
+
176
+ desc 'Reinstall the gem'
177
+ task :reinstall => [:uninstall, :install]
178
+
179
+ desc 'Cleanup the gem'
180
+ task :cleanup do
181
+ sh "#{SUDO} #{GEM} cleanup #{PROJ.gem._spec.name}"
182
+ end
183
+ end # namespace :gem
184
+
185
+
186
+ desc 'Alias to gem:package'
187
+ task :gem => 'gem:package'
188
+
189
+ task :clobber => 'gem:clobber_package'
190
+ remove_desc_for_task 'gem:clobber_package'
191
+
192
+ # EOF