sun-times 0.1.2 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. data/Rakefile +0 -22
  2. data/lib/sun_times.rb +1 -1
  3. metadata +6 -14
data/Rakefile CHANGED
@@ -12,25 +12,6 @@ CLEAN.include 'doc'
12
12
 
13
13
  task :default => :test
14
14
 
15
- spec = Gem::Specification.new do |s|
16
- s.name = 'sun-times'
17
- s.summary = 'Module which calculates sunrise and sunset times'
18
- s.version = SunTimes::VERSION::STRING
19
-
20
- s.homepage = 'http://github.com/timoschilling/sun-times'
21
- s.author = ['Joe Yates', 'Timo Schilling']
22
- s.email = ['joe.g.yates@gmail.com', 'timo@schilling.io']
23
-
24
- s.files = ['README', 'COPYING', 'Rakefile'] + FileList['{lib,test}/**/*.rb']
25
- s.require_paths = ['lib']
26
-
27
- s.has_rdoc = true
28
- s.rdoc_options += RDOC_OPTS
29
- s.extra_rdoc_files = ['README', 'COPYING']
30
-
31
- s.test_file = 'test/test_all.rb'
32
- end
33
-
34
15
  Rake::TestTask.new do |t|
35
16
  t.libs << 'test'
36
17
  t.test_files = FileList['test/*_test.rb']
@@ -43,6 +24,3 @@ Rake::RDocTask.new do |rdoc|
43
24
  rdoc.main = "README"
44
25
  rdoc.rdoc_files.add ['README', 'COPYING', 'lib/**/*.rb']
45
26
  end
46
-
47
- Rake::GemPackageTask.new(spec) do |pkg|
48
- end
data/lib/sun_times.rb CHANGED
@@ -30,7 +30,7 @@ module SunTimes
30
30
  module VERSION #:nodoc:
31
31
  MAJOR = 0
32
32
  MINOR = 1
33
- TINY = 2
33
+ TINY = 3
34
34
 
35
35
  STRING = [MAJOR, MINOR, TINY].join('.')
36
36
  end
metadata CHANGED
@@ -1,21 +1,18 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sun-times
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
8
8
  - Joe Yates
9
- - Timo Schilling
10
9
  autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2012-05-20 00:00:00.000000000 Z
12
+ date: 2012-05-21 00:00:00.000000000 Z
14
13
  dependencies: []
15
14
  description:
16
- email:
17
- - joe.g.yates@gmail.com
18
- - timo@schilling.io
15
+ email: joe.g.yates@gmail.com
19
16
  executables: []
20
17
  extensions: []
21
18
  extra_rdoc_files:
@@ -28,16 +25,10 @@ files:
28
25
  - lib/sun_times.rb
29
26
  - test/calculate_test.rb
30
27
  - test/test_all.rb
31
- homepage: http://github.com/timoschilling/sun-times
28
+ homepage: http://github.com/joeyates/ruby-sun-times
32
29
  licenses: []
33
30
  post_install_message:
34
- rdoc_options:
35
- - --quiet
36
- - --title
37
- - Sun Times Calculator
38
- - --main
39
- - README
40
- - --inline-source
31
+ rdoc_options: []
41
32
  require_paths:
42
33
  - lib
43
34
  required_ruby_version: !ruby/object:Gem::Requirement
@@ -60,3 +51,4 @@ specification_version: 3
60
51
  summary: Module which calculates sunrise and sunset times
61
52
  test_files:
62
53
  - test/test_all.rb
54
+ has_rdoc: true