rivendell-import 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -3,7 +3,6 @@
3
3
  .bundle
4
4
  .config
5
5
  .yardoc
6
- Gemfile.lock
7
6
  InstalledFiles
8
7
  _yardoc
9
8
  coverage
data/Gemfile.lock ADDED
@@ -0,0 +1,127 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ rivendell-import (0.0.4)
5
+ SyslogLogger (~> 2.0)
6
+ activerecord (~> 3.2.8)
7
+ activesupport (~> 3.2.8)
8
+ daemons
9
+ httmultiparty
10
+ listen
11
+ mail
12
+ rivendell-api (~> 0.0.4)
13
+ sinatra
14
+ sqlite3
15
+ trollop
16
+ will_paginate (~> 3.0.0)
17
+
18
+ GEM
19
+ remote: http://rubygems.org/
20
+ specs:
21
+ SyslogLogger (2.0)
22
+ activemodel (3.2.9)
23
+ activesupport (= 3.2.9)
24
+ builder (~> 3.0.0)
25
+ activerecord (3.2.9)
26
+ activemodel (= 3.2.9)
27
+ activesupport (= 3.2.9)
28
+ arel (~> 3.0.2)
29
+ tzinfo (~> 0.3.29)
30
+ activesupport (3.2.9)
31
+ i18n (~> 0.6)
32
+ multi_json (~> 1.0)
33
+ arel (3.0.2)
34
+ builder (3.0.3)
35
+ cucumber (1.2.1)
36
+ builder (>= 2.1.2)
37
+ diff-lcs (>= 1.1.3)
38
+ gherkin (~> 2.11.0)
39
+ json (>= 1.4.6)
40
+ daemons (1.1.9)
41
+ database_cleaner (0.8.0)
42
+ diff-lcs (1.1.3)
43
+ ffi (1.1.5)
44
+ gherkin (2.11.2)
45
+ json (>= 1.4.6)
46
+ guard (1.4.0)
47
+ listen (>= 0.4.2)
48
+ thor (>= 0.14.6)
49
+ guard-cucumber (1.2.0)
50
+ cucumber (>= 1.2.0)
51
+ guard (>= 1.1.0)
52
+ guard-rspec (2.0.0)
53
+ guard (>= 1.1)
54
+ rspec (~> 2.11)
55
+ httmultiparty (0.3.8)
56
+ httparty (>= 0.7.3)
57
+ multipart-post
58
+ httparty (0.9.0)
59
+ multi_json (~> 1.0)
60
+ multi_xml
61
+ i18n (0.6.1)
62
+ json (1.7.5)
63
+ libnotify (0.8.0)
64
+ ffi (>= 1.0.11)
65
+ listen (0.5.3)
66
+ mail (2.5.2)
67
+ i18n (>= 0.4.0)
68
+ mime-types (~> 1.16)
69
+ treetop (~> 1.4.8)
70
+ mime-types (1.19)
71
+ multi_json (1.4.0)
72
+ multi_xml (0.5.1)
73
+ multipart-post (1.1.5)
74
+ null_logger (0.0.1)
75
+ polyglot (0.3.3)
76
+ rack (1.4.1)
77
+ rack-protection (1.2.0)
78
+ rack
79
+ rake (0.9.2.2)
80
+ rb-inotify (0.8.8)
81
+ ffi (>= 0.5.0)
82
+ rivendell-api (0.0.4)
83
+ activesupport
84
+ httmultiparty
85
+ null_logger
86
+ rspec (2.11.0)
87
+ rspec-core (~> 2.11.0)
88
+ rspec-expectations (~> 2.11.0)
89
+ rspec-mocks (~> 2.11.0)
90
+ rspec-core (2.11.1)
91
+ rspec-expectations (2.11.3)
92
+ diff-lcs (~> 1.1.3)
93
+ rspec-mocks (2.11.3)
94
+ simplecov (0.6.4)
95
+ multi_json (~> 1.0)
96
+ simplecov-html (~> 0.5.3)
97
+ simplecov-html (0.5.3)
98
+ sinatra (1.3.3)
99
+ rack (~> 1.3, >= 1.3.6)
100
+ rack-protection (~> 1.2)
101
+ tilt (~> 1.3, >= 1.3.3)
102
+ sqlite3 (1.3.6)
103
+ thor (0.16.0)
104
+ tilt (1.3.3)
105
+ treetop (1.4.12)
106
+ polyglot
107
+ polyglot (>= 0.3.1)
108
+ trollop (2.0)
109
+ tzinfo (0.3.35)
110
+ will_paginate (3.0.3)
111
+
112
+ PLATFORMS
113
+ ruby
114
+
115
+ DEPENDENCIES
116
+ cucumber
117
+ database_cleaner
118
+ guard
119
+ guard-cucumber
120
+ guard-rspec
121
+ libnotify
122
+ rake
123
+ rb-inotify (~> 0.8.8)
124
+ rivendell-api
125
+ rivendell-import!
126
+ rspec
127
+ simplecov
@@ -1,5 +1,5 @@
1
1
  module Rivendell
2
2
  module Import
3
- VERSION = "0.0.3"
3
+ VERSION = "0.0.4"
4
4
  end
5
5
  end
@@ -17,7 +17,7 @@ Gem::Specification.new do |gem|
17
17
 
18
18
  gem.add_runtime_dependency 'listen'
19
19
  gem.add_runtime_dependency 'httmultiparty'
20
- gem.add_runtime_dependency 'rivendell-api', '~> 0.0.3'
20
+ gem.add_runtime_dependency 'rivendell-api', '~> 0.0.4'
21
21
  gem.add_runtime_dependency 'trollop'
22
22
  gem.add_runtime_dependency 'activerecord', '~> 3.2.8'
23
23
  gem.add_runtime_dependency 'activesupport', '~> 3.2.8'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rivendell-import
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.3
4
+ version: 0.0.4
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: 2012-10-14 00:00:00.000000000 Z
12
+ date: 2012-12-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: listen
@@ -50,7 +50,7 @@ dependencies:
50
50
  requirements:
51
51
  - - ~>
52
52
  - !ruby/object:Gem::Version
53
- version: 0.0.3
53
+ version: 0.0.4
54
54
  type: :runtime
55
55
  prerelease: false
56
56
  version_requirements: !ruby/object:Gem::Requirement
@@ -58,7 +58,7 @@ dependencies:
58
58
  requirements:
59
59
  - - ~>
60
60
  - !ruby/object:Gem::Version
61
- version: 0.0.3
61
+ version: 0.0.4
62
62
  - !ruby/object:Gem::Dependency
63
63
  name: trollop
64
64
  requirement: !ruby/object:Gem::Requirement
@@ -343,6 +343,7 @@ files:
343
343
  - COPYING
344
344
  - COPYRIGHT
345
345
  - Gemfile
346
+ - Gemfile.lock
346
347
  - Guardfile
347
348
  - README.md
348
349
  - Rakefile
@@ -428,7 +429,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
428
429
  version: '0'
429
430
  segments:
430
431
  - 0
431
- hash: 4478484068228884655
432
+ hash: -1619764904591619983
432
433
  required_rubygems_version: !ruby/object:Gem::Requirement
433
434
  none: false
434
435
  requirements:
@@ -437,7 +438,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
437
438
  version: '0'
438
439
  segments:
439
440
  - 0
440
- hash: 4478484068228884655
441
+ hash: -1619764904591619983
441
442
  requirements: []
442
443
  rubyforge_project:
443
444
  rubygems_version: 1.8.23