swiss_knife 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,7 +2,7 @@ module SwissKnife
2
2
  module Version
3
3
  MAJOR = 0
4
4
  MINOR = 1
5
- PATCH = 0
5
+ PATCH = 1
6
6
  STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
7
7
  end
8
8
  end
@@ -0,0 +1,103 @@
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{swiss_knife}
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 = ["Nando Vieira"]
12
+ s.date = %q{2010-10-11}
13
+ s.description = %q{Several helpers for Rails 3}
14
+ s.email = %q{fnando.vieira@gmail.com}
15
+ s.extra_rdoc_files = [
16
+ "README.rdoc"
17
+ ]
18
+ s.files = [
19
+ "Gemfile",
20
+ "Gemfile.lock",
21
+ "README.rdoc",
22
+ "Rakefile",
23
+ "lib/swiss_knife.rb",
24
+ "lib/swiss_knife/action_controller.rb",
25
+ "lib/swiss_knife/assets.rb",
26
+ "lib/swiss_knife/dispatcher_js.rb",
27
+ "lib/swiss_knife/helpers.rb",
28
+ "lib/swiss_knife/i18n_js.rb",
29
+ "lib/swiss_knife/jquery.rb",
30
+ "lib/swiss_knife/jquery_ujs.rb",
31
+ "lib/swiss_knife/jsmin.rb",
32
+ "lib/swiss_knife/modernizr.rb",
33
+ "lib/swiss_knife/railtie.rb",
34
+ "lib/swiss_knife/rake_tasks.rb",
35
+ "lib/swiss_knife/rspec.rb",
36
+ "lib/swiss_knife/rspec/have_tag.rb",
37
+ "lib/swiss_knife/support/remote_file.rb",
38
+ "lib/swiss_knife/version.rb",
39
+ "spec/controllers/application_controller_spec.rb",
40
+ "spec/helpers/helpers_spec.rb",
41
+ "spec/resources/assets.yml",
42
+ "spec/resources/assets/javascripts/application.js",
43
+ "spec/resources/assets/javascripts/jquery.js",
44
+ "spec/resources/assets/javascripts/rails.js",
45
+ "spec/resources/assets/stylesheets/main.css",
46
+ "spec/resources/assets/stylesheets/reset.css",
47
+ "spec/resources/assets/stylesheets/shared.css",
48
+ "spec/resources/stylesheets/_shared.less",
49
+ "spec/resources/stylesheets/main.less",
50
+ "spec/resources/stylesheets/reset.css",
51
+ "spec/resources/stylesheets/ui/tab.css",
52
+ "spec/resources/stylesheets/ui/window.less",
53
+ "spec/spec_helper.rb",
54
+ "spec/support/app/controllers/application_controller.rb",
55
+ "spec/support/config/boot.rb",
56
+ "spec/support/config/locales/en.yml",
57
+ "spec/support/log/test.log",
58
+ "spec/support/rspec/remote_file_shared.rb",
59
+ "spec/swiss_knife/assets_spec.rb",
60
+ "spec/swiss_knife/dispatcher_js_spec.rb",
61
+ "spec/swiss_knife/i18n_js_spec.rb",
62
+ "spec/swiss_knife/jquery_spec.rb",
63
+ "spec/swiss_knife/jquery_ujs_spec.rb",
64
+ "spec/swiss_knife/modernizr_spec.rb",
65
+ "swiss_knife.gemspec"
66
+ ]
67
+ s.homepage = %q{http://github.com/fnando/swiss_knife}
68
+ s.rdoc_options = ["--charset=UTF-8"]
69
+ s.require_paths = ["lib"]
70
+ s.rubygems_version = %q{1.3.7}
71
+ s.summary = %q{Several helpers for Rails 3}
72
+ s.test_files = [
73
+ "spec/controllers/application_controller_spec.rb",
74
+ "spec/helpers/helpers_spec.rb",
75
+ "spec/spec_helper.rb",
76
+ "spec/support/app/controllers/application_controller.rb",
77
+ "spec/support/config/boot.rb",
78
+ "spec/support/rspec/remote_file_shared.rb",
79
+ "spec/swiss_knife/assets_spec.rb",
80
+ "spec/swiss_knife/dispatcher_js_spec.rb",
81
+ "spec/swiss_knife/i18n_js_spec.rb",
82
+ "spec/swiss_knife/jquery_spec.rb",
83
+ "spec/swiss_knife/jquery_ujs_spec.rb",
84
+ "spec/swiss_knife/modernizr_spec.rb"
85
+ ]
86
+
87
+ if s.respond_to? :specification_version then
88
+ current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
89
+ s.specification_version = 3
90
+
91
+ if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
92
+ s.add_runtime_dependency(%q<rails>, [">= 3.0.0"])
93
+ s.add_development_dependency(%q<rspec>, [">= 2.0.0"])
94
+ else
95
+ s.add_dependency(%q<rails>, [">= 3.0.0"])
96
+ s.add_dependency(%q<rspec>, [">= 2.0.0"])
97
+ end
98
+ else
99
+ s.add_dependency(%q<rails>, [">= 3.0.0"])
100
+ s.add_dependency(%q<rspec>, [">= 2.0.0"])
101
+ end
102
+ end
103
+
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 1
8
- - 0
9
- version: 0.1.0
8
+ - 1
9
+ version: 0.1.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Nando Vieira
@@ -102,6 +102,7 @@ files:
102
102
  - spec/swiss_knife/jquery_spec.rb
103
103
  - spec/swiss_knife/jquery_ujs_spec.rb
104
104
  - spec/swiss_knife/modernizr_spec.rb
105
+ - swiss_knife.gemspec
105
106
  has_rdoc: true
106
107
  homepage: http://github.com/fnando/swiss_knife
107
108
  licenses: []