spicycode-micronaut-rails 0.2.5 → 0.2.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/README +2 -3
  2. data/Rakefile +2 -2
  3. data/VERSION.yml +1 -1
  4. metadata +13 -21
data/README CHANGED
@@ -12,14 +12,13 @@ RSpec lite. Definitely pre alpha at the moment.
12
12
 
13
13
  * Ruby 1.8.6+
14
14
  * ActionPack
15
- * Micronaut (via spicycode-micronaut on GitHub) -- version numbers are kept in sync, excluding the fourth version part. So
16
- micronaut-rails 0.1.7.5 should be compatible with micronaut 0.1.7, but micronaut-rails 0.1.8.0 would require micronaut >= 0.1.8.
15
+ * Micronaut (via spicycode-micronaut on GitHub)
17
16
 
18
17
  == ISSUES
19
18
 
20
19
  * No support for pure Rails fixtures, and no plans to add it - we use Factory Girl/Fixture Replacement instead, so send a patch if you want support for this).
21
20
  * No support for Rails integration tests -- use Cucumber (http://github.com/aslakhellesoy/cucumber) instead!
22
- * In use in real-world projects on Rails 2.2+ - older versions may have issues.
21
+ * In use in real-world projects on Rails 2.3+ - older versions may have issues.
23
22
 
24
23
  == CREDITS:
25
24
 
data/Rakefile CHANGED
@@ -8,8 +8,8 @@ begin
8
8
  s.description = "An excellent replacement for the wheel on rails..."
9
9
  s.authors = ["Chad Humphries"]
10
10
  s.files = FileList["[A-Z]*", "{bin,lib,examples}/**/*"]
11
- s.add_dependency "actionpack", '>= 2.2.2'
12
- s.add_dependency "spicycode-micronaut", '>= 0.2.2'
11
+ s.add_dependency "actionpack", '>= 2.3.0'
12
+ s.add_dependency "spicycode-micronaut", '>= 0.2.7'
13
13
  end
14
14
  rescue LoadError
15
15
  puts "Jeweler, or one of its dependencies, is not available. Install it with: sudo gem install technicalpickles-jeweler -s http://gems.github.com"
data/VERSION.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 2
4
- :patch: 5
4
+ :patch: 6
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: spicycode-micronaut-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.5
4
+ version: 0.2.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chad Humphries
@@ -20,7 +20,7 @@ dependencies:
20
20
  requirements:
21
21
  - - ">="
22
22
  - !ruby/object:Gem::Version
23
- version: 2.2.2
23
+ version: 2.3.0
24
24
  version:
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: spicycode-micronaut
@@ -30,7 +30,7 @@ dependencies:
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 0.2.2
33
+ version: 0.2.7
34
34
  version:
35
35
  description: An excellent replacement for the wheel on rails...
36
36
  email: chad@spicycode.com
@@ -39,42 +39,32 @@ executables: []
39
39
  extensions: []
40
40
 
41
41
  extra_rdoc_files:
42
- - README
43
42
  - LICENSE
43
+ - README
44
44
  files:
45
45
  - LICENSE
46
- - Rakefile
47
46
  - README
48
47
  - RSPEC-LICENSE
48
+ - Rakefile
49
49
  - VERSION.yml
50
- - lib/micronaut
51
- - lib/micronaut/rails
50
+ - examples/example_helper.rb
51
+ - examples/lib/micronaut-rails_example.rb
52
+ - examples/lib/micronaut/rails/configuration_example.rb
53
+ - lib/micronaut-rails.rb
52
54
  - lib/micronaut/rails/configuration.rb
53
55
  - lib/micronaut/rails/controllers.rb
54
- - lib/micronaut/rails/extensions
55
56
  - lib/micronaut/rails/extensions/active_record.rb
56
57
  - lib/micronaut/rails/helpers.rb
57
- - lib/micronaut/rails/matchers
58
- - lib/micronaut/rails/matchers/controllers
59
58
  - lib/micronaut/rails/matchers/controllers/redirect_to.rb
60
59
  - lib/micronaut/rails/matchers/controllers/render_template.rb
61
- - lib/micronaut/rails/mocking
62
60
  - lib/micronaut/rails/mocking/model_stubber.rb
63
61
  - lib/micronaut/rails/mocking/with_mocha.rb
64
62
  - lib/micronaut/rails/mocking/with_rr.rb
65
63
  - lib/micronaut/rails/transactional_database_support.rb
66
- - lib/micronaut-rails.rb
67
- - examples/example_helper.rb
68
- - examples/lib
69
- - examples/lib/micronaut
70
- - examples/lib/micronaut/rails
71
- - examples/lib/micronaut/rails/configuration_example.rb
72
- - examples/lib/micronaut-rails_example.rb
73
64
  has_rdoc: true
74
65
  homepage: http://github.com/spicycode/micronaut-rails
75
66
  post_install_message:
76
67
  rdoc_options:
77
- - --inline-source
78
68
  - --charset=UTF-8
79
69
  require_paths:
80
70
  - lib
@@ -97,5 +87,7 @@ rubygems_version: 1.2.0
97
87
  signing_key:
98
88
  specification_version: 2
99
89
  summary: An excellent replacement for the wheel on rails...
100
- test_files: []
101
-
90
+ test_files:
91
+ - examples/example_helper.rb
92
+ - examples/lib/micronaut/rails/configuration_example.rb
93
+ - examples/lib/micronaut-rails_example.rb