i_helpers 0.1.0

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.
data/README ADDED
@@ -0,0 +1,13 @@
1
+ IHelpers
2
+ ========
3
+
4
+ Simple, but useful helpers.
5
+
6
+
7
+ Example
8
+ =======
9
+
10
+ No examples now, sorry.
11
+
12
+
13
+ Copyright (c) 2008 Maciej Biłas, released under the MIT license
data/spec/debug.log ADDED
@@ -0,0 +1 @@
1
+ # Logfile created on Sat Sep 11 16:58:44 +0200 2010 by logger.rb/22285
@@ -0,0 +1,5 @@
1
+ require File.dirname(__FILE__) + '/spec_helper'
2
+
3
+ describe IHelpers do
4
+ it "should be specified"
5
+ end
@@ -0,0 +1,27 @@
1
+ # begin
2
+ # require File.dirname(__FILE__) + '/../../../../spec/spec_helper'
3
+ # rescue LoadError
4
+ # puts "You need to install rspec in your base app"
5
+ # exit
6
+ # end
7
+ #
8
+ # plugin_spec_dir = File.dirname(__FILE__)
9
+ # ActiveRecord::Base.logger = Logger.new(plugin_spec_dir + "/debug.log")
10
+
11
+ $:.unshift(File.dirname(__FILE__) + '/../lib')
12
+
13
+ require 'rubygems'
14
+ require 'bundler/setup'
15
+ require 'spec'
16
+ require 'logger'
17
+
18
+ require 'active_record'
19
+
20
+ require 'i_helpers'
21
+
22
+ plugin_spec_dir = File.dirname(__FILE__)
23
+ ActiveRecord::Base.establish_connection(:adapter => 'sqlite3', :database => ':memory:')
24
+ ActiveRecord::Base.logger = Logger.new(plugin_spec_dir + "/debug.log")
25
+ ActiveRecord::Migration.verbose = false
26
+
27
+ ActiveSupport::Dependencies.autoload_paths << File.dirname(__FILE__)
metadata ADDED
@@ -0,0 +1,71 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: i_helpers
3
+ version: !ruby/object:Gem::Version
4
+ hash: 27
5
+ prerelease: false
6
+ segments:
7
+ - 0
8
+ - 1
9
+ - 0
10
+ version: 0.1.0
11
+ platform: ruby
12
+ authors:
13
+ - Maciej Bilas
14
+ autorequire:
15
+ bindir: bin
16
+ cert_chain: []
17
+
18
+ date: 2010-09-11 00:00:00 +02:00
19
+ default_executable:
20
+ dependencies: []
21
+
22
+ description: Useful Rails helpers.
23
+ email: maciej@inszy.org
24
+ executables: []
25
+
26
+ extensions: []
27
+
28
+ extra_rdoc_files:
29
+ - README
30
+ files:
31
+ - spec/debug.log
32
+ - README
33
+ - spec/i_helpers_spec.rb
34
+ - spec/spec_helper.rb
35
+ has_rdoc: true
36
+ homepage: http://github.com/maciej/i_helpers
37
+ licenses: []
38
+
39
+ post_install_message:
40
+ rdoc_options:
41
+ - --charset=UTF-8
42
+ require_paths:
43
+ - lib
44
+ required_ruby_version: !ruby/object:Gem::Requirement
45
+ none: false
46
+ requirements:
47
+ - - ">="
48
+ - !ruby/object:Gem::Version
49
+ hash: 3
50
+ segments:
51
+ - 0
52
+ version: "0"
53
+ required_rubygems_version: !ruby/object:Gem::Requirement
54
+ none: false
55
+ requirements:
56
+ - - ">="
57
+ - !ruby/object:Gem::Version
58
+ hash: 3
59
+ segments:
60
+ - 0
61
+ version: "0"
62
+ requirements: []
63
+
64
+ rubyforge_project: i_helpers
65
+ rubygems_version: 1.3.7
66
+ signing_key:
67
+ specification_version: 3
68
+ summary: Useful Rails helpers
69
+ test_files:
70
+ - spec/i_helpers_spec.rb
71
+ - spec/spec_helper.rb