CalMon 0.0.2 → 0.0.3

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.
@@ -24,7 +24,7 @@ EOF
24
24
 
25
25
  s.files = `git ls-files`.split("\n")
26
26
  s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
27
- #s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
27
+ s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
28
28
  s.require_paths = %w{lib}
29
29
 
30
30
  # s.add_development_dependency "rspec"
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- CalMon (0.0.1)
4
+ CalMon (0.0.2)
5
5
  google-api-client
6
6
  jimson
7
7
  rake
data/bin/CalMon CHANGED
@@ -1 +1,21 @@
1
- #!/bin/bash
1
+ #!/usr/bin/env ruby
2
+
3
+ $:.unshift File.dirname(__FILE__)
4
+
5
+ require 'rubygems'
6
+ require 'CalMon'
7
+
8
+ class Test
9
+ extend Jimson::Handler
10
+
11
+ def sum(a,b,c)
12
+ a + b + c
13
+ end
14
+
15
+ def sub(a,b)
16
+ a - b
17
+ end
18
+ end
19
+
20
+ server = Jimson::Server.new(Test.new)
21
+ server.start
@@ -1,28 +1,10 @@
1
1
  #!/usr/bin/env ruby
2
2
 
3
- $:.unshift File.dirname(__FILE__)
4
-
3
+ require 'rubygems'
4
+ require "jimson"
5
5
  require "CalMon/version"
6
6
 
7
7
  module CalMon
8
-
9
8
  end
10
9
 
11
- require 'rubygems'
12
-
13
- require 'jimson'
14
-
15
- class Test
16
- extend Jimson::Handler
17
-
18
- def sum(a,b,c)
19
- a + b + c
20
- end
21
-
22
- def sub(a,b)
23
- a - b
24
- end
25
- end
26
10
 
27
- server = Jimson::Server.new(Test.new)
28
- server.start
@@ -1,3 +1,3 @@
1
1
  module CalMon
2
- VERSION = "0.0.2"
2
+ VERSION = "0.0.3"
3
3
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: CalMon
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
5
- prerelease:
4
+ hash: 25
5
+ prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 2
10
- version: 0.0.2
9
+ - 3
10
+ version: 0.0.3
11
11
  platform: ruby
12
12
  authors:
13
13
  - Randy
@@ -18,7 +18,8 @@ autorequire:
18
18
  bindir: bin
19
19
  cert_chain: []
20
20
 
21
- date: 2012-04-30 00:00:00 Z
21
+ date: 2012-04-30 00:00:00 -04:00
22
+ default_executable:
22
23
  dependencies:
23
24
  - !ruby/object:Gem::Dependency
24
25
  name: rake
@@ -73,8 +74,8 @@ description: |
73
74
 
74
75
  email:
75
76
  - randy@randywallace.com
76
- executables: []
77
-
77
+ executables:
78
+ - CalMon
78
79
  extensions: []
79
80
 
80
81
  extra_rdoc_files: []
@@ -95,6 +96,7 @@ files:
95
96
  - lib/CalMon.rb
96
97
  - lib/CalMon/version.rb
97
98
  - test/test_CalMon.rb
99
+ has_rdoc: true
98
100
  homepage: ""
99
101
  licenses:
100
102
  - MIT
@@ -124,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
124
126
  requirements: []
125
127
 
126
128
  rubyforge_project: CalMon
127
- rubygems_version: 1.8.10
129
+ rubygems_version: 1.3.7
128
130
  signing_key:
129
131
  specification_version: 3
130
132
  summary: Collect timestamp data from services and use that data to add events to google calendar.