time_frame 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,29 @@
1
+ # coding: utf-8
2
+ require 'english'
3
+
4
+ lib = File.expand_path('../lib', __FILE__)
5
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
6
+
7
+ require 'time_frame/version'
8
+
9
+ Gem::Specification.new do |spec|
10
+ spec.name = 'time_frame'
11
+ spec.version = TimeFrame::VERSION
12
+ spec.authors = ['Patrick Derichs', 'Bernhard Stoecker', 'Jan Zernisch']
13
+ spec.email = [
14
+ 'patrick.derichs@invision.de',
15
+ 'bernhard.stoecker@invision.de',
16
+ 'jan.zernisch@invision.de'
17
+ ]
18
+ spec.description = %q(TimeFrame)
19
+ spec.summary = %q(Ruby gem that offers support for time frames)
20
+ spec.homepage = 'https://github.com/injixo/time_frame'
21
+ spec.license = 'MIT'
22
+
23
+ spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
24
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
25
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
26
+ spec.require_paths = ['lib']
27
+
28
+ spec.add_dependency 'activesupport', '~> 4.0'
29
+ end
metadata ADDED
@@ -0,0 +1,81 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: time_frame
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Patrick Derichs
8
+ - Bernhard Stoecker
9
+ - Jan Zernisch
10
+ autorequire:
11
+ bindir: bin
12
+ cert_chain: []
13
+ date: 2014-05-14 00:00:00.000000000 Z
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: activesupport
17
+ requirement: !ruby/object:Gem::Requirement
18
+ requirements:
19
+ - - "~>"
20
+ - !ruby/object:Gem::Version
21
+ version: '4.0'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - "~>"
27
+ - !ruby/object:Gem::Version
28
+ version: '4.0'
29
+ description: TimeFrame
30
+ email:
31
+ - patrick.derichs@invision.de
32
+ - bernhard.stoecker@invision.de
33
+ - jan.zernisch@invision.de
34
+ executables: []
35
+ extensions: []
36
+ extra_rdoc_files: []
37
+ files:
38
+ - ".gitignore"
39
+ - ".rubocop.yml"
40
+ - ".ruby-version"
41
+ - Gemfile
42
+ - Gemfile.lock
43
+ - README.md
44
+ - Rakefile
45
+ - lib/time_frame.rb
46
+ - lib/time_frame/time_frame.rb
47
+ - lib/time_frame/time_frame_covered.rb
48
+ - lib/time_frame/time_frame_overlaps.rb
49
+ - lib/time_frame/time_frame_splitter.rb
50
+ - lib/time_frame/time_frame_uniter.rb
51
+ - lib/time_frame/version.rb
52
+ - spec/spec_helper.rb
53
+ - spec/time_range_spec.rb
54
+ - time_frame.gemspec
55
+ homepage: https://github.com/injixo/time_frame
56
+ licenses:
57
+ - MIT
58
+ metadata: {}
59
+ post_install_message:
60
+ rdoc_options: []
61
+ require_paths:
62
+ - lib
63
+ required_ruby_version: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - ">="
66
+ - !ruby/object:Gem::Version
67
+ version: '0'
68
+ required_rubygems_version: !ruby/object:Gem::Requirement
69
+ requirements:
70
+ - - ">="
71
+ - !ruby/object:Gem::Version
72
+ version: '0'
73
+ requirements: []
74
+ rubyforge_project:
75
+ rubygems_version: 2.2.2
76
+ signing_key:
77
+ specification_version: 4
78
+ summary: Ruby gem that offers support for time frames
79
+ test_files:
80
+ - spec/spec_helper.rb
81
+ - spec/time_range_spec.rb