mark_facets 0.0.1 → 0.0.4

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 CHANGED
@@ -1,3 +1 @@
1
- README
2
- ========================================================================
3
- mark_facets was developed by: markbates
1
+ Just a collection of common extensions and add-ons I use in most Ruby/Rails projects.
@@ -1,5 +1,5 @@
1
1
  if defined?(RSpec) || defined?(Spec)
2
2
  %w{should/render_404 should/have_same_elements}.each do |f|
3
- File.expand_path(File.join(File.dirname(__FILE__), f))
3
+ require File.expand_path(File.join(File.dirname(__FILE__), f))
4
4
  end
5
5
  end
@@ -0,0 +1,5 @@
1
+ %w{decode_json delivered_emails enable_ssl authlogic rspec/all}.each do |f|
2
+ p = File.expand_path(File.join(File.dirname(__FILE__), 'test', f))
3
+ puts p
4
+ require p
5
+ end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mark_facets
3
3
  version: !ruby/object:Gem::Version
4
- hash: 29
4
+ hash: 23
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 0
9
- - 1
10
- version: 0.0.1
9
+ - 4
10
+ version: 0.0.4
11
11
  platform: ruby
12
12
  authors:
13
13
  - markbates
@@ -47,10 +47,10 @@ files:
47
47
  - lib/mark_facets/rails/test/decode_json.rb
48
48
  - lib/mark_facets/rails/test/delivered_emails.rb
49
49
  - lib/mark_facets/rails/test/enable_ssl.rb
50
- - lib/mark_facets/rails/test/helpers.rb
51
50
  - lib/mark_facets/rails/test/rspec/all.rb
52
51
  - lib/mark_facets/rails/test/rspec/should/have_same_elements.rb
53
52
  - lib/mark_facets/rails/test/rspec/should/render_404.rb
53
+ - lib/mark_facets/rails/test.rb
54
54
  - lib/mark_facets/ruby/big_decimal.rb
55
55
  - lib/mark_facets/ruby/hash.rb
56
56
  - lib/mark_facets/ruby/math.rb
@@ -1,3 +0,0 @@
1
- %w{decode_json delivered_emails enable_ssl authlogic rspec/all}.each do |f|
2
- File.expand_path(File.join(File.dirname(__FILE__), f))
3
- end