incurve 0.1.0 → 0.1.1

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.
Files changed (4) hide show
  1. data/Rakefile +3 -3
  2. data/VERSION +1 -1
  3. data/incurve.gemspec +59 -0
  4. metadata +11 -8
data/Rakefile CHANGED
@@ -6,12 +6,12 @@ begin
6
6
  Jeweler::Tasks.new do |gem|
7
7
  gem.name = "incurve"
8
8
  gem.summary = %Q{Inline that damn CSS in your mail views.}
9
- gem.description = %Q{incurve provides some handy helper methods for your Rails app, letting you easily inline your CSS code and auto-guess its text-only content.}
9
+ gem.description = %Q{InCurve provides some handy helper methods for your Rails app, letting you easily inline your CSS code.}
10
10
  gem.email = "stefano.verna@welaika.com"
11
11
  gem.homepage = "http://github.com/welaika/incurve"
12
- gem.authors = ["Stefano Verna"]
12
+ gem.authors = ["Stefano Verna @weLaika"]
13
13
  gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
14
- gem.add_dependency("premailer")
14
+ gem.add_dependency("premailer", ">= 1.5.5")
15
15
  end
16
16
  Jeweler::GemcutterTasks.new
17
17
  rescue LoadError
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -0,0 +1,59 @@
1
+ # Generated by jeweler
2
+ # DO NOT EDIT THIS FILE DIRECTLY
3
+ # Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
4
+ # -*- encoding: utf-8 -*-
5
+
6
+ Gem::Specification.new do |s|
7
+ s.name = %q{incurve}
8
+ s.version = "0.1.1"
9
+
10
+ s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
+ s.authors = ["Stefano Verna @weLaika"]
12
+ s.date = %q{2010-07-30}
13
+ s.description = %q{InCurve provides some handy helper methods for your Rails app, letting you easily inline your CSS code.}
14
+ s.email = %q{stefano.verna@welaika.com}
15
+ s.extra_rdoc_files = [
16
+ "LICENSE",
17
+ "README.rdoc"
18
+ ]
19
+ s.files = [
20
+ ".document",
21
+ ".gitignore",
22
+ "LICENSE",
23
+ "README.rdoc",
24
+ "Rakefile",
25
+ "VERSION",
26
+ "incurve.gemspec",
27
+ "lib/incurve.rb",
28
+ "lib/incurve/string_premailer.rb",
29
+ "lib/incurve/view_helpers.rb",
30
+ "test/helper.rb",
31
+ "test/test_incurve.rb"
32
+ ]
33
+ s.homepage = %q{http://github.com/welaika/incurve}
34
+ s.rdoc_options = ["--charset=UTF-8"]
35
+ s.require_paths = ["lib"]
36
+ s.rubygems_version = %q{1.3.7}
37
+ s.summary = %q{Inline that damn CSS in your mail views.}
38
+ s.test_files = [
39
+ "test/helper.rb",
40
+ "test/test_incurve.rb"
41
+ ]
42
+
43
+ if s.respond_to? :specification_version then
44
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
45
+ s.specification_version = 3
46
+
47
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
48
+ s.add_development_dependency(%q<thoughtbot-shoulda>, [">= 0"])
49
+ s.add_runtime_dependency(%q<premailer>, [">= 1.5.5"])
50
+ else
51
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
52
+ s.add_dependency(%q<premailer>, [">= 1.5.5"])
53
+ end
54
+ else
55
+ s.add_dependency(%q<thoughtbot-shoulda>, [">= 0"])
56
+ s.add_dependency(%q<premailer>, [">= 1.5.5"])
57
+ end
58
+ end
59
+
metadata CHANGED
@@ -1,16 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: incurve
3
3
  version: !ruby/object:Gem::Version
4
- hash: 27
4
+ hash: 25
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 1
9
- - 0
10
- version: 0.1.0
9
+ - 1
10
+ version: 0.1.1
11
11
  platform: ruby
12
12
  authors:
13
- - Stefano Verna
13
+ - Stefano Verna @weLaika
14
14
  autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
@@ -40,13 +40,15 @@ dependencies:
40
40
  requirements:
41
41
  - - ">="
42
42
  - !ruby/object:Gem::Version
43
- hash: 3
43
+ hash: 9
44
44
  segments:
45
- - 0
46
- version: "0"
45
+ - 1
46
+ - 5
47
+ - 5
48
+ version: 1.5.5
47
49
  type: :runtime
48
50
  version_requirements: *id002
49
- description: incurve provides some handy helper methods for your Rails app, letting you easily inline your CSS code and auto-guess its text-only content.
51
+ description: InCurve provides some handy helper methods for your Rails app, letting you easily inline your CSS code.
50
52
  email: stefano.verna@welaika.com
51
53
  executables: []
52
54
 
@@ -62,6 +64,7 @@ files:
62
64
  - README.rdoc
63
65
  - Rakefile
64
66
  - VERSION
67
+ - incurve.gemspec
65
68
  - lib/incurve.rb
66
69
  - lib/incurve/string_premailer.rb
67
70
  - lib/incurve/view_helpers.rb