unindentable 0.0.3 → 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/Gemfile ADDED
@@ -0,0 +1 @@
1
+ gemspec
@@ -0,0 +1,23 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ unindentable (0.0.4)
5
+
6
+ GEM
7
+ specs:
8
+ diff-lcs (1.1.2)
9
+ rspec (2.3.0)
10
+ rspec-core (~> 2.3.0)
11
+ rspec-expectations (~> 2.3.0)
12
+ rspec-mocks (~> 2.3.0)
13
+ rspec-core (2.3.1)
14
+ rspec-expectations (2.3.0)
15
+ diff-lcs (~> 1.1.2)
16
+ rspec-mocks (2.3.0)
17
+
18
+ PLATFORMS
19
+ ruby
20
+
21
+ DEPENDENCIES
22
+ rspec (~> 2.3)
23
+ unindentable!
@@ -0,0 +1,8 @@
1
+ require 'rubygems'
2
+ require 'bundler/setup'
3
+ require 'rspec'
4
+ require File.expand_path('../../lib/unindentable', __FILE__)
5
+
6
+ Rspec.configure do |c|
7
+ c.mock_with :rspec
8
+ end
@@ -1,6 +1,4 @@
1
- require 'rubygems'
2
- require 'spec'
3
- require File.expand_path(File.dirname(__FILE__) + '/../lib/unindentable')
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
4
2
 
5
3
  describe "Unindentable" do
6
4
  include Unindentable
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 0
8
- - 3
9
- version: 0.0.3
8
+ - 4
9
+ version: 0.0.4
10
10
  platform: ruby
11
11
  authors:
12
12
  - David James
@@ -16,8 +16,21 @@ cert_chain: []
16
16
 
17
17
  date: 2010-04-20 00:00:00 -04:00
18
18
  default_executable:
19
- dependencies: []
20
-
19
+ dependencies:
20
+ - !ruby/object:Gem::Dependency
21
+ name: rspec
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
24
+ none: false
25
+ requirements:
26
+ - - ~>
27
+ - !ruby/object:Gem::Version
28
+ segments:
29
+ - 2
30
+ - 3
31
+ version: "2.3"
32
+ type: :development
33
+ version_requirements: *id001
21
34
  description: Unindent strings, especially heredocs.
22
35
  email:
23
36
  - djames at sunlightfoundation.com
@@ -29,12 +42,15 @@ extra_rdoc_files:
29
42
  - LICENSE
30
43
  - README.md
31
44
  files:
45
+ - Gemfile
46
+ - Gemfile.lock
32
47
  - LICENSE
33
48
  - README.md
34
49
  - lib/unindentable.rb
35
50
  - spec/unindentable_spec.rb
51
+ - spec/spec_helper.rb
36
52
  has_rdoc: true
37
- homepage: http://github.com/sunlightlabs/ruby-unindentable/tree
53
+ homepage: http://github.com/sunlightlabs/ruby-unindentable
38
54
  licenses: []
39
55
 
40
56
  post_install_message:
@@ -43,6 +59,7 @@ rdoc_options:
43
59
  require_paths:
44
60
  - lib
45
61
  required_ruby_version: !ruby/object:Gem::Requirement
62
+ none: false
46
63
  requirements:
47
64
  - - ">="
48
65
  - !ruby/object:Gem::Version
@@ -50,6 +67,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
50
67
  - 0
51
68
  version: "0"
52
69
  required_rubygems_version: !ruby/object:Gem::Requirement
70
+ none: false
53
71
  requirements:
54
72
  - - ">="
55
73
  - !ruby/object:Gem::Version
@@ -59,9 +77,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
59
77
  requirements: []
60
78
 
61
79
  rubyforge_project:
62
- rubygems_version: 1.3.6
80
+ rubygems_version: 1.3.7
63
81
  signing_key:
64
82
  specification_version: 3
65
83
  summary: With Unindentable, you can write heredocs without worry of wonky indentation.
66
84
  test_files:
67
85
  - spec/unindentable_spec.rb
86
+ - spec/spec_helper.rb