roadie 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
data/.gitignore CHANGED
@@ -6,3 +6,5 @@ pkg
6
6
  .rspec
7
7
  .idea/*
8
8
  .rvmrc
9
+
10
+ gemfiles/*.lock
data/.travis.yml ADDED
@@ -0,0 +1,9 @@
1
+ rvm:
2
+ - 1.8.7
3
+ - 1.9.2
4
+
5
+ gemfile:
6
+ - gemfiles/rails-3.0.x.Gemfile
7
+ - gemfiles/rails-3.1.x.Gemfile
8
+
9
+ script: "bundle exec rspec spec"
data/Changelog.md CHANGED
@@ -1,9 +1,17 @@
1
1
  ### dev
2
2
 
3
- [full changelog](https://github.com/Mange/roadie/compare/v1.1.0...master)
3
+ [full changelog](https://github.com/Mange/roadie/compare/v1.1.1...master)
4
4
 
5
5
  * Nothing yet
6
6
 
7
+ ### 1.1.1
8
+
9
+ [full changelog](https://github.com/Mange/roadie/compare/v1.1.0...v1.1.1)
10
+
11
+ * Support for Rails 3.1.x (RC4 and later)
12
+ * Rails 3.0.x is still supported
13
+ * Added CI via [Travis CI](http://travis-ci.org)
14
+
7
15
  ### 1.1.0
8
16
 
9
17
  [full changelog](https://github.com/Mange/roadie/compare/v1.0.1...v1.1.0)
@@ -16,9 +24,9 @@
16
24
  [full changelog](https://github.com/Mange/roadie/compare/v1.0.0...v1.0.1)
17
25
 
18
26
  * Enhancements:
19
- * Full, official support for Ruby 1.9.2 (in addition to 1.8.7)
27
+ * Full, official support for Ruby 1.9.2 (in addition to 1.8.7)
20
28
  * Dependencies:
21
- * Explicilty depend on nokogiri >= 1.4.4
29
+ * Explicilty depend on nokogiri >= 1.4.4
22
30
 
23
31
  ### 1.0.0
24
32
 
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- roadie (1.0.1)
5
- actionmailer (~> 3.0.0)
4
+ roadie (1.1.0)
5
+ actionmailer (>= 3.0.0)
6
6
  css_parser
7
7
  nokogiri (>= 1.4.4)
8
8
 
@@ -40,8 +40,8 @@ GEM
40
40
  mime-types (~> 1.16)
41
41
  treetop (~> 1.4.8)
42
42
  mime-types (1.16)
43
- nokogiri (1.4.5)
44
- polyglot (0.3.1)
43
+ nokogiri (1.4.4)
44
+ polyglot (0.3.2)
45
45
  rack (1.2.1)
46
46
  rack-mount (0.6.13)
47
47
  rack (>= 1.0.0)
@@ -67,7 +67,8 @@ GEM
67
67
  railties (~> 3.0)
68
68
  rspec (~> 2.5.0)
69
69
  thor (0.14.6)
70
- treetop (1.4.9)
70
+ treetop (1.4.10)
71
+ polyglot
71
72
  polyglot (>= 0.3.1)
72
73
  tzinfo (0.3.24)
73
74
 
data/README.md CHANGED
@@ -18,6 +18,20 @@ Roadie also rewrites all relative URLs in the email to a absolute counterpart, m
18
18
 
19
19
  ¹: Of course, rules like `:hover` will not work by definition. Only static styles can be added.
20
20
 
21
+ Build Status
22
+ ------------
23
+
24
+ [![Build history and status](https://secure.travis-ci.org/Mange/roadie.png)](http://travis-ci.org/#!/Mange/roadie)
25
+
26
+ Tested with [Travis CI](http://travis-ci.org) using the [following combinations](http://travis-ci.org/#!/Mange/roadie):
27
+
28
+ * Ruby 1.8.7 with Rails 3.0.x
29
+ * Ruby 1.9.2 with Rails 3.0.x
30
+ * Ruby 1.8.7 with Rails 3.1.x
31
+ * Ruby 1.9.2 with Rails 3.1.x
32
+
33
+ Let me know if you want any other combination supported officially
34
+
21
35
  Features
22
36
  --------
23
37
 
@@ -39,8 +53,6 @@ Sass is supported "by accident" as long as the stylesheets are generated and sto
39
53
  Install
40
54
  -------
41
55
 
42
- Roadie is officially supported in both Ruby 1.8.7 and 1.9.2.
43
-
44
56
  Add the gem to Rails' Gemfile
45
57
 
46
58
  ```ruby
@@ -0,0 +1,7 @@
1
+ source :rubygems
2
+
3
+ gem 'nokogiri', '>= 1.4.4'
4
+ gem 'css_parser'
5
+ gem 'actionmailer', '~> 3.0.0'
6
+
7
+ gem 'rspec-rails', :group => :development
@@ -0,0 +1,7 @@
1
+ source :rubygems
2
+
3
+ gem 'nokogiri', '>= 1.4.4'
4
+ gem 'css_parser'
5
+ gem 'actionmailer', '~> 3.1.0.rc6'
6
+
7
+ gem 'rspec-rails', :group => :development
@@ -1,3 +1,3 @@
1
1
  module Roadie
2
- VERSION = '1.1.0'
2
+ VERSION = '1.1.1'
3
3
  end
data/roadie.gemspec CHANGED
@@ -16,7 +16,7 @@ Gem::Specification.new do |s|
16
16
 
17
17
  s.add_dependency 'nokogiri', '>= 1.4.4'
18
18
  s.add_dependency 'css_parser'
19
- s.add_dependency 'actionmailer', '~> 3.0.0'
19
+ s.add_dependency 'actionmailer', '>= 3.0.0'
20
20
 
21
21
  s.add_development_dependency 'rspec-rails', '>= 2.0.0'
22
22
 
metadata CHANGED
@@ -1,8 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: roadie
3
3
  version: !ruby/object:Gem::Version
4
+ hash: 17
4
5
  prerelease:
5
- version: 1.1.0
6
+ segments:
7
+ - 1
8
+ - 1
9
+ - 1
10
+ version: 1.1.1
6
11
  platform: ruby
7
12
  authors:
8
13
  - Magnus Bergmark
@@ -10,8 +15,7 @@ autorequire:
10
15
  bindir: bin
11
16
  cert_chain: []
12
17
 
13
- date: 2011-06-24 00:00:00 +02:00
14
- default_executable:
18
+ date: 2011-09-01 00:00:00 Z
15
19
  dependencies:
16
20
  - !ruby/object:Gem::Dependency
17
21
  name: nokogiri
@@ -21,6 +25,11 @@ dependencies:
21
25
  requirements:
22
26
  - - ">="
23
27
  - !ruby/object:Gem::Version
28
+ hash: 15
29
+ segments:
30
+ - 1
31
+ - 4
32
+ - 4
24
33
  version: 1.4.4
25
34
  type: :runtime
26
35
  version_requirements: *id001
@@ -32,6 +41,9 @@ dependencies:
32
41
  requirements:
33
42
  - - ">="
34
43
  - !ruby/object:Gem::Version
44
+ hash: 3
45
+ segments:
46
+ - 0
35
47
  version: "0"
36
48
  type: :runtime
37
49
  version_requirements: *id002
@@ -41,8 +53,13 @@ dependencies:
41
53
  requirement: &id003 !ruby/object:Gem::Requirement
42
54
  none: false
43
55
  requirements:
44
- - - ~>
56
+ - - ">="
45
57
  - !ruby/object:Gem::Version
58
+ hash: 7
59
+ segments:
60
+ - 3
61
+ - 0
62
+ - 0
46
63
  version: 3.0.0
47
64
  type: :runtime
48
65
  version_requirements: *id003
@@ -54,6 +71,11 @@ dependencies:
54
71
  requirements:
55
72
  - - ">="
56
73
  - !ruby/object:Gem::Version
74
+ hash: 15
75
+ segments:
76
+ - 2
77
+ - 0
78
+ - 0
57
79
  version: 2.0.0
58
80
  type: :development
59
81
  version_requirements: *id004
@@ -70,6 +92,7 @@ extra_rdoc_files:
70
92
  files:
71
93
  - .autotest
72
94
  - .gitignore
95
+ - .travis.yml
73
96
  - .yardopts
74
97
  - Changelog.md
75
98
  - Gemfile
@@ -78,6 +101,8 @@ files:
78
101
  - README.md
79
102
  - Rakefile
80
103
  - autotest/discover.rb
104
+ - gemfiles/rails-3.0.x.Gemfile
105
+ - gemfiles/rails-3.1.x.Gemfile
81
106
  - lib/roadie.rb
82
107
  - lib/roadie/action_mailer_extensions.rb
83
108
  - lib/roadie/css_file_not_found.rb
@@ -103,7 +128,6 @@ files:
103
128
  - spec/support/have_attribute_matcher.rb
104
129
  - spec/support/have_selector_matcher.rb
105
130
  - spec/support/have_styling_matcher.rb
106
- has_rdoc: true
107
131
  homepage: http://github.com/Mange/roadie
108
132
  licenses: []
109
133
 
@@ -117,17 +141,23 @@ required_ruby_version: !ruby/object:Gem::Requirement
117
141
  requirements:
118
142
  - - ">="
119
143
  - !ruby/object:Gem::Version
144
+ hash: 3
145
+ segments:
146
+ - 0
120
147
  version: "0"
121
148
  required_rubygems_version: !ruby/object:Gem::Requirement
122
149
  none: false
123
150
  requirements:
124
151
  - - ">="
125
152
  - !ruby/object:Gem::Version
153
+ hash: 3
154
+ segments:
155
+ - 0
126
156
  version: "0"
127
157
  requirements: []
128
158
 
129
159
  rubyforge_project:
130
- rubygems_version: 1.6.2
160
+ rubygems_version: 1.8.8
131
161
  signing_key:
132
162
  specification_version: 3
133
163
  summary: Making HTML emails comfortable for the Rails rockstars