one9 0.1.4 → 0.1.5
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/.gemspec +2 -2
 - data/.travis.yml +3 -0
 - data/CHANGELOG.rdoc +6 -0
 - data/features/deps.rip +2 -1
 - data/lib/one9/version.rb +1 -1
 - metadata +53 -67
 
    
        data/.gemspec
    CHANGED
    
    | 
         @@ -11,12 +11,12 @@ Gem::Specification.new do |s| 
     | 
|
| 
       11 
11 
     | 
    
         
             
              s.summary = "commandline tool to convert your 1.8 code to ruby 1.9.2"
         
     | 
| 
       12 
12 
     | 
    
         
             
              s.description =  "one9 is a commandline tool to help convert your ruby 1.8.7 code to 1.9.2.  It works by spying on your tests and detecting 1.9 changes. Once your test suite finishes, one9 prints a report listing the exact locations of methods that have changed in 1.9. To make the transition even easier, one9 can open this list in an editor. So what's your excuse for not upgrading to 1.9.2? ;)"
         
     | 
| 
       13 
13 
     | 
    
         
             
              s.required_rubygems_version = ">= 1.3.6"
         
     | 
| 
       14 
     | 
    
         
            -
              s.rubyforge_project = 'tagaholic'
         
     | 
| 
       15 
14 
     | 
    
         
             
              s.executables = ['one9']
         
     | 
| 
       16 
     | 
    
         
            -
              s.files = Dir.glob(%w[{lib,test}/**/*.rb bin/* [A-Z]*.{txt,rdoc} ext/**/*.{rb,c} **/deps.rip]) + %w{Rakefile .gemspec}
         
     | 
| 
      
 15 
     | 
    
         
            +
              s.files = Dir.glob(%w[{lib,test}/**/*.rb bin/* [A-Z]*.{txt,rdoc} ext/**/*.{rb,c} **/deps.rip]) + %w{Rakefile .gemspec .travis.yml}
         
     | 
| 
       17 
16 
     | 
    
         
             
              s.files += Dir.glob('features/**/*.{rb,feature}')
         
     | 
| 
       18 
17 
     | 
    
         
             
              s.extra_rdoc_files = ["README.rdoc", "LICENSE.txt"]
         
     | 
| 
       19 
18 
     | 
    
         
             
              s.add_dependency 'hirb', '>= 0.4.0'
         
     | 
| 
       20 
19 
     | 
    
         
             
              s.add_development_dependency 'aruba', '~> 0.3.2'
         
     | 
| 
      
 20 
     | 
    
         
            +
              s.add_development_dependency 'rake', '~> 0.9.2'
         
     | 
| 
       21 
21 
     | 
    
         
             
              s.license = 'MIT'
         
     | 
| 
       22 
22 
     | 
    
         
             
            end
         
     | 
    
        data/.travis.yml
    ADDED
    
    
    
        data/CHANGELOG.rdoc
    CHANGED
    
    
    
        data/features/deps.rip
    CHANGED
    
    | 
         @@ -1 +1,2 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            aruba ~>0.3.2
         
     | 
| 
      
 1 
     | 
    
         
            +
            aruba ~>0.3.2
         
     | 
| 
      
 2 
     | 
    
         
            +
            rake ~>0.9.2
         
     | 
    
        data/lib/one9/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,65 +1,62 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            --- !ruby/object:Gem::Specification 
     | 
| 
      
 1 
     | 
    
         
            +
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: one9
         
     | 
| 
       3 
     | 
    
         
            -
            version: !ruby/object:Gem::Version 
     | 
| 
       4 
     | 
    
         
            -
               
     | 
| 
       5 
     | 
    
         
            -
              prerelease:  
     | 
| 
       6 
     | 
    
         
            -
              segments: 
         
     | 
| 
       7 
     | 
    
         
            -
              - 0
         
     | 
| 
       8 
     | 
    
         
            -
              - 1
         
     | 
| 
       9 
     | 
    
         
            -
              - 4
         
     | 
| 
       10 
     | 
    
         
            -
              version: 0.1.4
         
     | 
| 
      
 3 
     | 
    
         
            +
            version: !ruby/object:Gem::Version
         
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.1.5
         
     | 
| 
      
 5 
     | 
    
         
            +
              prerelease: 
         
     | 
| 
       11 
6 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       12 
     | 
    
         
            -
            authors: 
     | 
| 
      
 7 
     | 
    
         
            +
            authors:
         
     | 
| 
       13 
8 
     | 
    
         
             
            - Gabriel Horner
         
     | 
| 
       14 
9 
     | 
    
         
             
            autorequire: 
         
     | 
| 
       15 
10 
     | 
    
         
             
            bindir: bin
         
     | 
| 
       16 
11 
     | 
    
         
             
            cert_chain: []
         
     | 
| 
       17 
     | 
    
         
            -
             
     | 
| 
       18 
     | 
    
         
            -
             
     | 
| 
       19 
     | 
    
         
            -
             
     | 
| 
       20 
     | 
    
         
            -
            dependencies: 
         
     | 
| 
       21 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency 
         
     | 
| 
      
 12 
     | 
    
         
            +
            date: 2012-02-24 00:00:00.000000000 Z
         
     | 
| 
      
 13 
     | 
    
         
            +
            dependencies:
         
     | 
| 
      
 14 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
       22 
15 
     | 
    
         
             
              name: hirb
         
     | 
| 
       23 
     | 
    
         
            -
               
     | 
| 
       24 
     | 
    
         
            -
              requirement: &id001 !ruby/object:Gem::Requirement 
         
     | 
| 
      
 16 
     | 
    
         
            +
              requirement: &70153199500580 !ruby/object:Gem::Requirement
         
     | 
| 
       25 
17 
     | 
    
         
             
                none: false
         
     | 
| 
       26 
     | 
    
         
            -
                requirements: 
     | 
| 
       27 
     | 
    
         
            -
                - -  
     | 
| 
       28 
     | 
    
         
            -
                  - !ruby/object:Gem::Version 
     | 
| 
       29 
     | 
    
         
            -
                    hash: 15
         
     | 
| 
       30 
     | 
    
         
            -
                    segments: 
         
     | 
| 
       31 
     | 
    
         
            -
                    - 0
         
     | 
| 
       32 
     | 
    
         
            -
                    - 4
         
     | 
| 
       33 
     | 
    
         
            -
                    - 0
         
     | 
| 
      
 18 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 19 
     | 
    
         
            +
                - - ! '>='
         
     | 
| 
      
 20 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
       34 
21 
     | 
    
         
             
                    version: 0.4.0
         
     | 
| 
       35 
22 
     | 
    
         
             
              type: :runtime
         
     | 
| 
       36 
     | 
    
         
            -
              version_requirements: *id001
         
     | 
| 
       37 
     | 
    
         
            -
            - !ruby/object:Gem::Dependency 
         
     | 
| 
       38 
     | 
    
         
            -
              name: aruba
         
     | 
| 
       39 
23 
     | 
    
         
             
              prerelease: false
         
     | 
| 
       40 
     | 
    
         
            -
               
     | 
| 
      
 24 
     | 
    
         
            +
              version_requirements: *70153199500580
         
     | 
| 
      
 25 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 26 
     | 
    
         
            +
              name: aruba
         
     | 
| 
      
 27 
     | 
    
         
            +
              requirement: &70153199500100 !ruby/object:Gem::Requirement
         
     | 
| 
       41 
28 
     | 
    
         
             
                none: false
         
     | 
| 
       42 
     | 
    
         
            -
                requirements: 
     | 
| 
      
 29 
     | 
    
         
            +
                requirements:
         
     | 
| 
       43 
30 
     | 
    
         
             
                - - ~>
         
     | 
| 
       44 
     | 
    
         
            -
                  - !ruby/object:Gem::Version 
     | 
| 
       45 
     | 
    
         
            -
                    hash: 23
         
     | 
| 
       46 
     | 
    
         
            -
                    segments: 
         
     | 
| 
       47 
     | 
    
         
            -
                    - 0
         
     | 
| 
       48 
     | 
    
         
            -
                    - 3
         
     | 
| 
       49 
     | 
    
         
            -
                    - 2
         
     | 
| 
      
 31 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
       50 
32 
     | 
    
         
             
                    version: 0.3.2
         
     | 
| 
       51 
33 
     | 
    
         
             
              type: :development
         
     | 
| 
       52 
     | 
    
         
            -
               
     | 
| 
       53 
     | 
    
         
            -
             
     | 
| 
      
 34 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 35 
     | 
    
         
            +
              version_requirements: *70153199500100
         
     | 
| 
      
 36 
     | 
    
         
            +
            - !ruby/object:Gem::Dependency
         
     | 
| 
      
 37 
     | 
    
         
            +
              name: rake
         
     | 
| 
      
 38 
     | 
    
         
            +
              requirement: &70153199499600 !ruby/object:Gem::Requirement
         
     | 
| 
      
 39 
     | 
    
         
            +
                none: false
         
     | 
| 
      
 40 
     | 
    
         
            +
                requirements:
         
     | 
| 
      
 41 
     | 
    
         
            +
                - - ~>
         
     | 
| 
      
 42 
     | 
    
         
            +
                  - !ruby/object:Gem::Version
         
     | 
| 
      
 43 
     | 
    
         
            +
                    version: 0.9.2
         
     | 
| 
      
 44 
     | 
    
         
            +
              type: :development
         
     | 
| 
      
 45 
     | 
    
         
            +
              prerelease: false
         
     | 
| 
      
 46 
     | 
    
         
            +
              version_requirements: *70153199499600
         
     | 
| 
      
 47 
     | 
    
         
            +
            description: one9 is a commandline tool to help convert your ruby 1.8.7 code to 1.9.2.  It
         
     | 
| 
      
 48 
     | 
    
         
            +
              works by spying on your tests and detecting 1.9 changes. Once your test suite finishes,
         
     | 
| 
      
 49 
     | 
    
         
            +
              one9 prints a report listing the exact locations of methods that have changed in
         
     | 
| 
      
 50 
     | 
    
         
            +
              1.9. To make the transition even easier, one9 can open this list in an editor. So
         
     | 
| 
      
 51 
     | 
    
         
            +
              what's your excuse for not upgrading to 1.9.2? ;)
         
     | 
| 
       54 
52 
     | 
    
         
             
            email: gabriel.horner@gmail.com
         
     | 
| 
       55 
     | 
    
         
            -
            executables: 
     | 
| 
      
 53 
     | 
    
         
            +
            executables:
         
     | 
| 
       56 
54 
     | 
    
         
             
            - one9
         
     | 
| 
       57 
55 
     | 
    
         
             
            extensions: []
         
     | 
| 
       58 
     | 
    
         
            -
             
     | 
| 
       59 
     | 
    
         
            -
            extra_rdoc_files: 
         
     | 
| 
      
 56 
     | 
    
         
            +
            extra_rdoc_files:
         
     | 
| 
       60 
57 
     | 
    
         
             
            - README.rdoc
         
     | 
| 
       61 
58 
     | 
    
         
             
            - LICENSE.txt
         
     | 
| 
       62 
     | 
    
         
            -
            files: 
     | 
| 
      
 59 
     | 
    
         
            +
            files:
         
     | 
| 
       63 
60 
     | 
    
         
             
            - lib/one9/defaults.rb
         
     | 
| 
       64 
61 
     | 
    
         
             
            - lib/one9/it.rb
         
     | 
| 
       65 
62 
     | 
    
         
             
            - lib/one9/method.rb
         
     | 
| 
         @@ -78,45 +75,34 @@ files: 
     | 
|
| 
       78 
75 
     | 
    
         
             
            - features/deps.rip
         
     | 
| 
       79 
76 
     | 
    
         
             
            - Rakefile
         
     | 
| 
       80 
77 
     | 
    
         
             
            - .gemspec
         
     | 
| 
      
 78 
     | 
    
         
            +
            - .travis.yml
         
     | 
| 
       81 
79 
     | 
    
         
             
            - features/step_definitions/one9_steps.rb
         
     | 
| 
       82 
80 
     | 
    
         
             
            - features/support/env.rb
         
     | 
| 
       83 
81 
     | 
    
         
             
            - features/basics.feature
         
     | 
| 
       84 
82 
     | 
    
         
             
            - features/commands.feature
         
     | 
| 
       85 
     | 
    
         
            -
            has_rdoc: true
         
     | 
| 
       86 
83 
     | 
    
         
             
            homepage: http://github.com/cldwalker/one9
         
     | 
| 
       87 
     | 
    
         
            -
            licenses: 
     | 
| 
      
 84 
     | 
    
         
            +
            licenses:
         
     | 
| 
       88 
85 
     | 
    
         
             
            - MIT
         
     | 
| 
       89 
86 
     | 
    
         
             
            post_install_message: 
         
     | 
| 
       90 
87 
     | 
    
         
             
            rdoc_options: []
         
     | 
| 
       91 
     | 
    
         
            -
             
     | 
| 
       92 
     | 
    
         
            -
            require_paths: 
         
     | 
| 
      
 88 
     | 
    
         
            +
            require_paths:
         
     | 
| 
       93 
89 
     | 
    
         
             
            - lib
         
     | 
| 
       94 
     | 
    
         
            -
            required_ruby_version: !ruby/object:Gem::Requirement 
     | 
| 
      
 90 
     | 
    
         
            +
            required_ruby_version: !ruby/object:Gem::Requirement
         
     | 
| 
       95 
91 
     | 
    
         
             
              none: false
         
     | 
| 
       96 
     | 
    
         
            -
              requirements: 
     | 
| 
       97 
     | 
    
         
            -
              - -  
     | 
| 
       98 
     | 
    
         
            -
                - !ruby/object:Gem::Version 
     | 
| 
       99 
     | 
    
         
            -
                   
     | 
| 
       100 
     | 
    
         
            -
             
     | 
| 
       101 
     | 
    
         
            -
                  - 0
         
     | 
| 
       102 
     | 
    
         
            -
                  version: "0"
         
     | 
| 
       103 
     | 
    
         
            -
            required_rubygems_version: !ruby/object:Gem::Requirement 
         
     | 
| 
      
 92 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 93 
     | 
    
         
            +
              - - ! '>='
         
     | 
| 
      
 94 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
      
 95 
     | 
    
         
            +
                  version: '0'
         
     | 
| 
      
 96 
     | 
    
         
            +
            required_rubygems_version: !ruby/object:Gem::Requirement
         
     | 
| 
       104 
97 
     | 
    
         
             
              none: false
         
     | 
| 
       105 
     | 
    
         
            -
              requirements: 
     | 
| 
       106 
     | 
    
         
            -
              - -  
     | 
| 
       107 
     | 
    
         
            -
                - !ruby/object:Gem::Version 
     | 
| 
       108 
     | 
    
         
            -
                  hash: 23
         
     | 
| 
       109 
     | 
    
         
            -
                  segments: 
         
     | 
| 
       110 
     | 
    
         
            -
                  - 1
         
     | 
| 
       111 
     | 
    
         
            -
                  - 3
         
     | 
| 
       112 
     | 
    
         
            -
                  - 6
         
     | 
| 
      
 98 
     | 
    
         
            +
              requirements:
         
     | 
| 
      
 99 
     | 
    
         
            +
              - - ! '>='
         
     | 
| 
      
 100 
     | 
    
         
            +
                - !ruby/object:Gem::Version
         
     | 
| 
       113 
101 
     | 
    
         
             
                  version: 1.3.6
         
     | 
| 
       114 
102 
     | 
    
         
             
            requirements: []
         
     | 
| 
       115 
     | 
    
         
            -
             
     | 
| 
       116 
     | 
    
         
            -
             
     | 
| 
       117 
     | 
    
         
            -
            rubygems_version: 1.3.7
         
     | 
| 
      
 103 
     | 
    
         
            +
            rubyforge_project: 
         
     | 
| 
      
 104 
     | 
    
         
            +
            rubygems_version: 1.8.11
         
     | 
| 
       118 
105 
     | 
    
         
             
            signing_key: 
         
     | 
| 
       119 
106 
     | 
    
         
             
            specification_version: 3
         
     | 
| 
       120 
107 
     | 
    
         
             
            summary: commandline tool to convert your 1.8 code to ruby 1.9.2
         
     | 
| 
       121 
108 
     | 
    
         
             
            test_files: []
         
     | 
| 
       122 
     | 
    
         
            -
             
     |