spinach-rails 0.0.9 → 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.markdown +1 -1
 - data/features/rails3/rails_3_1_app.feature +3 -1
 - data/features/rails3/spinach_adds_the_route_helpers.feature +1 -1
 - data/features/support/rails_fixtures.rb +5 -5
 - data/lib/spinach-rails.rb +0 -1
 - data/lib/spinach-rails/generators/rails.rb +1 -1
 - data/lib/spinach-rails/railtie.rb +5 -0
 - data/lib/spinach-rails/version.rb +1 -1
 - metadata +11 -11
 
    
        data/README.markdown
    CHANGED
    
    
| 
         @@ -7,7 +7,7 @@ Feature: Spinach works with a Rails 3.1 app 
     | 
|
| 
       7 
7 
     | 
    
         
             
                Given I create a new rails 3 app
         
     | 
| 
       8 
8 
     | 
    
         
             
                And I add spinach-rails to it
         
     | 
| 
       9 
9 
     | 
    
         
             
                And I add some test features
         
     | 
| 
       10 
     | 
    
         
            -
                And I  
     | 
| 
      
 10 
     | 
    
         
            +
                And I run the generator
         
     | 
| 
       11 
11 
     | 
    
         
             
                When I run spinach
         
     | 
| 
       12 
12 
     | 
    
         
             
                Then the features should pass
         
     | 
| 
       13 
13 
     | 
    
         | 
| 
         @@ -15,6 +15,7 @@ Feature: Spinach works with a Rails 3.1 app 
     | 
|
| 
       15 
15 
     | 
    
         
             
                Given I create a new rails 3 app
         
     | 
| 
       16 
16 
     | 
    
         
             
                And I add spinach-rails to it
         
     | 
| 
       17 
17 
     | 
    
         
             
                And I add some test features
         
     | 
| 
      
 18 
     | 
    
         
            +
                And I run the generator
         
     | 
| 
       18 
19 
     | 
    
         
             
                When I run the spinach rake task
         
     | 
| 
       19 
20 
     | 
    
         
             
                Then the features should pass
         
     | 
| 
       20 
21 
     | 
    
         | 
| 
         @@ -22,5 +23,6 @@ Feature: Spinach works with a Rails 3.1 app 
     | 
|
| 
       22 
23 
     | 
    
         
             
                Given I create a new rails 3 app
         
     | 
| 
       23 
24 
     | 
    
         
             
                And I add spinach-rails to it
         
     | 
| 
       24 
25 
     | 
    
         
             
                And I add a test feature file without a steps file
         
     | 
| 
      
 26 
     | 
    
         
            +
                And I run the generator
         
     | 
| 
       25 
27 
     | 
    
         
             
                When I run the spinach:generate rake task
         
     | 
| 
       26 
28 
     | 
    
         
             
                Then a feature steps file should have been generated
         
     | 
| 
         @@ -8,6 +8,6 @@ Feature: Spinach adds the route helpers 
     | 
|
| 
       8 
8 
     | 
    
         
             
                And I add spinach-rails to it
         
     | 
| 
       9 
9 
     | 
    
         
             
                And I add an initilizer that defines a constant
         
     | 
| 
       10 
10 
     | 
    
         
             
                And I add a test to assert if the constant is defined
         
     | 
| 
       11 
     | 
    
         
            -
                And I  
     | 
| 
      
 11 
     | 
    
         
            +
                And I run the generator
         
     | 
| 
       12 
12 
     | 
    
         
             
                When I run spinach
         
     | 
| 
       13 
13 
     | 
    
         
             
                Then the features should pass
         
     | 
| 
         @@ -18,16 +18,16 @@ module RailsFixtures 
     | 
|
| 
       18 
18 
     | 
    
         | 
| 
       19 
19 
     | 
    
         
             
              When "I run spinach" do
         
     | 
| 
       20 
20 
     | 
    
         
             
                run "spinach"
         
     | 
| 
      
 21 
     | 
    
         
            +
                stop_processes!
         
     | 
| 
       21 
22 
     | 
    
         
             
              end
         
     | 
| 
       22 
23 
     | 
    
         | 
| 
       23 
24 
     | 
    
         
             
              Then "the features should pass" do
         
     | 
| 
       24 
     | 
    
         
            -
                stop_processes!
         
     | 
| 
       25 
25 
     | 
    
         
             
                last_exit_status.must_equal 0
         
     | 
| 
       26 
26 
     | 
    
         
             
              end
         
     | 
| 
       27 
27 
     | 
    
         | 
| 
       28 
     | 
    
         
            -
              And "I  
     | 
| 
       29 
     | 
    
         
            -
                 
     | 
| 
       30 
     | 
    
         
            -
             
     | 
| 
      
 28 
     | 
    
         
            +
              And "I run the generator" do
         
     | 
| 
      
 29 
     | 
    
         
            +
                run "bundle exec rails g spinach:rails"
         
     | 
| 
      
 30 
     | 
    
         
            +
                stop_processes!
         
     | 
| 
       31 
31 
     | 
    
         
             
              end
         
     | 
| 
       32 
32 
     | 
    
         | 
| 
       33 
33 
     | 
    
         
             
              private
         
     | 
| 
         @@ -54,7 +54,7 @@ module RailsFixtures 
     | 
|
| 
       54 
54 
     | 
    
         | 
| 
       55 
55 
     | 
    
         
             
              def add_spinach_rails
         
     | 
| 
       56 
56 
     | 
    
         
             
                append_to_file("Gemfile",
         
     | 
| 
       57 
     | 
    
         
            -
                 "gem 'spinach-rails', group: :test, path: '#{Dir.pwd}'")
         
     | 
| 
      
 57 
     | 
    
         
            +
                 "gem 'spinach-rails', group: [:test, :development], path: '#{Dir.pwd}'")
         
     | 
| 
       58 
58 
     | 
    
         
             
                run "bundle install"
         
     | 
| 
       59 
59 
     | 
    
         
             
              end
         
     | 
| 
       60 
60 
     | 
    
         | 
    
        data/lib/spinach-rails.rb
    CHANGED
    
    
| 
         @@ -4,7 +4,7 @@ require 'spinach' 
     | 
|
| 
       4 
4 
     | 
    
         
             
            class Spinach::RailsGenerator < Rails::Generators::Base
         
     | 
| 
       5 
5 
     | 
    
         
             
              def create_environment_file
         
     | 
| 
       6 
6 
     | 
    
         
             
                create_file "features/support/env.rb", <<-FILE
         
     | 
| 
       7 
     | 
    
         
            -
            ENV['RAILS_ENV']  
     | 
| 
      
 7 
     | 
    
         
            +
            ENV['RAILS_ENV'] = 'test'
         
     | 
| 
       8 
8 
     | 
    
         
             
            require './config/environment'
         
     | 
| 
       9 
9 
     | 
    
         | 
| 
       10 
10 
     | 
    
         
             
            require 'minitest/spec'
         
     | 
| 
         @@ -8,9 +8,14 @@ module Spinach 
     | 
|
| 
       8 
8 
     | 
    
         
             
                      File.dirname(__FILE__), '..', '..', 'tasks/spinach.rake')
         
     | 
| 
       9 
9 
     | 
    
         
             
                  )
         
     | 
| 
       10 
10 
     | 
    
         
             
                end
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
       11 
12 
     | 
    
         
             
                initializer "add_routes", after: :after_initialize do |app|
         
     | 
| 
       12 
13 
     | 
    
         
             
                  routes = app.routes.url_helpers
         
     | 
| 
       13 
14 
     | 
    
         
             
                  Spinach::FeatureSteps.send(:include, routes)
         
     | 
| 
       14 
15 
     | 
    
         
             
                end
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
                generators do
         
     | 
| 
      
 18 
     | 
    
         
            +
                  require 'spinach-rails/generators'
         
     | 
| 
      
 19 
     | 
    
         
            +
                end
         
     | 
| 
       15 
20 
     | 
    
         
             
              end
         
     | 
| 
       16 
21 
     | 
    
         
             
            end
         
     | 
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: spinach-rails
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.0 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.1.0
         
     | 
| 
       5 
5 
     | 
    
         
             
              prerelease: 
         
     | 
| 
       6 
6 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       7 
7 
     | 
    
         
             
            authors:
         
     | 
| 
         @@ -13,7 +13,7 @@ date: 2012-03-19 00:00:00.000000000 Z 
     | 
|
| 
       13 
13 
     | 
    
         
             
            dependencies:
         
     | 
| 
       14 
14 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       15 
15 
     | 
    
         
             
              name: capybara
         
     | 
| 
       16 
     | 
    
         
            -
              requirement: & 
     | 
| 
      
 16 
     | 
    
         
            +
              requirement: &70364399106900 !ruby/object:Gem::Requirement
         
     | 
| 
       17 
17 
     | 
    
         
             
                none: false
         
     | 
| 
       18 
18 
     | 
    
         
             
                requirements:
         
     | 
| 
       19 
19 
     | 
    
         
             
                - - ! '>='
         
     | 
| 
         @@ -21,10 +21,10 @@ dependencies: 
     | 
|
| 
       21 
21 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       22 
22 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       23 
23 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       24 
     | 
    
         
            -
              version_requirements: * 
     | 
| 
      
 24 
     | 
    
         
            +
              version_requirements: *70364399106900
         
     | 
| 
       25 
25 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       26 
26 
     | 
    
         
             
              name: spinach
         
     | 
| 
       27 
     | 
    
         
            -
              requirement: & 
     | 
| 
      
 27 
     | 
    
         
            +
              requirement: &70364399106200 !ruby/object:Gem::Requirement
         
     | 
| 
       28 
28 
     | 
    
         
             
                none: false
         
     | 
| 
       29 
29 
     | 
    
         
             
                requirements:
         
     | 
| 
       30 
30 
     | 
    
         
             
                - - ! '>='
         
     | 
| 
         @@ -32,10 +32,10 @@ dependencies: 
     | 
|
| 
       32 
32 
     | 
    
         
             
                    version: 0.1.5.2
         
     | 
| 
       33 
33 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       34 
34 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       35 
     | 
    
         
            -
              version_requirements: * 
     | 
| 
      
 35 
     | 
    
         
            +
              version_requirements: *70364399106200
         
     | 
| 
       36 
36 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       37 
37 
     | 
    
         
             
              name: railties
         
     | 
| 
       38 
     | 
    
         
            -
              requirement: & 
     | 
| 
      
 38 
     | 
    
         
            +
              requirement: &70364399105580 !ruby/object:Gem::Requirement
         
     | 
| 
       39 
39 
     | 
    
         
             
                none: false
         
     | 
| 
       40 
40 
     | 
    
         
             
                requirements:
         
     | 
| 
       41 
41 
     | 
    
         
             
                - - ! '>='
         
     | 
| 
         @@ -43,10 +43,10 @@ dependencies: 
     | 
|
| 
       43 
43 
     | 
    
         
             
                    version: '3'
         
     | 
| 
       44 
44 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       45 
45 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       46 
     | 
    
         
            -
              version_requirements: * 
     | 
| 
      
 46 
     | 
    
         
            +
              version_requirements: *70364399105580
         
     | 
| 
       47 
47 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       48 
48 
     | 
    
         
             
              name: aruba
         
     | 
| 
       49 
     | 
    
         
            -
              requirement: & 
     | 
| 
      
 49 
     | 
    
         
            +
              requirement: &70364399105120 !ruby/object:Gem::Requirement
         
     | 
| 
       50 
50 
     | 
    
         
             
                none: false
         
     | 
| 
       51 
51 
     | 
    
         
             
                requirements:
         
     | 
| 
       52 
52 
     | 
    
         
             
                - - ! '>='
         
     | 
| 
         @@ -54,10 +54,10 @@ dependencies: 
     | 
|
| 
       54 
54 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       55 
55 
     | 
    
         
             
              type: :development
         
     | 
| 
       56 
56 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       57 
     | 
    
         
            -
              version_requirements: * 
     | 
| 
      
 57 
     | 
    
         
            +
              version_requirements: *70364399105120
         
     | 
| 
       58 
58 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       59 
59 
     | 
    
         
             
              name: rails
         
     | 
| 
       60 
     | 
    
         
            -
              requirement: & 
     | 
| 
      
 60 
     | 
    
         
            +
              requirement: &70364399104480 !ruby/object:Gem::Requirement
         
     | 
| 
       61 
61 
     | 
    
         
             
                none: false
         
     | 
| 
       62 
62 
     | 
    
         
             
                requirements:
         
     | 
| 
       63 
63 
     | 
    
         
             
                - - ! '>='
         
     | 
| 
         @@ -65,7 +65,7 @@ dependencies: 
     | 
|
| 
       65 
65 
     | 
    
         
             
                    version: '0'
         
     | 
| 
       66 
66 
     | 
    
         
             
              type: :development
         
     | 
| 
       67 
67 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       68 
     | 
    
         
            -
              version_requirements: * 
     | 
| 
      
 68 
     | 
    
         
            +
              version_requirements: *70364399104480
         
     | 
| 
       69 
69 
     | 
    
         
             
            description: spinach-rails adds Rails support to spinach
         
     | 
| 
       70 
70 
     | 
    
         
             
            email:
         
     | 
| 
       71 
71 
     | 
    
         
             
            - info@codegram.com
         
     |