ical_importer 0.0.19 → 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/ical_importer.gemspec +2 -2
- data/lib/ical_importer/version.rb +1 -1
- data/spec/ical_importer/parser_spec.rb +1 -1
- metadata +4 -10
data/ical_importer.gemspec
CHANGED
@@ -3,10 +3,10 @@ require File.expand_path('../lib/ical_importer/version', __FILE__)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |gem|
|
5
5
|
gem.authors = ["Jon Phenow"]
|
6
|
-
gem.email = ["jon.phenow@
|
6
|
+
gem.email = ["jon.phenow@sportngin.com"]
|
7
7
|
gem.description = %q{Easily import iCal Events from a URL and handle their output}
|
8
8
|
gem.summary = %q{Uses RiCal to make a much simpler Event Importing interface.}
|
9
|
-
gem.homepage = "http://github.com/
|
9
|
+
gem.homepage = "http://github.com/sportngin/ical_importer"
|
10
10
|
|
11
11
|
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
|
12
12
|
gem.files = `git ls-files`.split("\n")
|
@@ -128,7 +128,7 @@ module IcalImporter
|
|
128
128
|
subject.send(:get_name).should == nil
|
129
129
|
end
|
130
130
|
|
131
|
-
it "returns nil if no
|
131
|
+
it "returns nil if no name x property exists" do
|
132
132
|
subject.stub :feed => [stub(x_properties: { "X-WR-DERPHERP" => [@value] })]
|
133
133
|
subject.send(:get_name).should be_nil
|
134
134
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ical_importer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0
|
4
|
+
version: 0.1.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2013-03-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
@@ -109,7 +109,7 @@ dependencies:
|
|
109
109
|
version: '0'
|
110
110
|
description: Easily import iCal Events from a URL and handle their output
|
111
111
|
email:
|
112
|
-
- jon.phenow@
|
112
|
+
- jon.phenow@sportngin.com
|
113
113
|
executables: []
|
114
114
|
extensions: []
|
115
115
|
extra_rdoc_files: []
|
@@ -145,7 +145,7 @@ files:
|
|
145
145
|
- spec/spec_helper.rb
|
146
146
|
- spec/support/mn_twins.ics
|
147
147
|
- spec/support/test.ics
|
148
|
-
homepage: http://github.com/
|
148
|
+
homepage: http://github.com/sportngin/ical_importer
|
149
149
|
licenses: []
|
150
150
|
post_install_message:
|
151
151
|
rdoc_options: []
|
@@ -157,18 +157,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
157
157
|
- - ! '>='
|
158
158
|
- !ruby/object:Gem::Version
|
159
159
|
version: '0'
|
160
|
-
segments:
|
161
|
-
- 0
|
162
|
-
hash: 4363646983789960929
|
163
160
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
164
161
|
none: false
|
165
162
|
requirements:
|
166
163
|
- - ! '>='
|
167
164
|
- !ruby/object:Gem::Version
|
168
165
|
version: '0'
|
169
|
-
segments:
|
170
|
-
- 0
|
171
|
-
hash: 4363646983789960929
|
172
166
|
requirements: []
|
173
167
|
rubyforge_project:
|
174
168
|
rubygems_version: 1.8.24
|