Giter Site home page Giter Site logo

Comments (4)

amro avatar amro commented on July 19, 2024

0.5.0 supports API 2 and is different. Please read the doc on the pain page of this repository. There's also a notice when you upgrade the gem.

Thanks.

On Jul 26, 2013, at 7:22 PM, Li Ouyang [email protected] wrote:

Latest version of gibbon gem gives me this error below. Reverted back to 0.4.6 to.

$ rails c
/Users/liouyang/Development/code/Walker/goatee/config/initializers/mailchimp.rb:1:in <top (required)>': undefined methodnew' for Gibbon:Module (NoMethodError)
from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-4.0.0/lib/active_support/dependencies.rb:222:in load' from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-4.0.0/lib/active_support/dependencies.rb:222:inblock in load'
from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-4.0.0/lib/active_support/dependencies.rb:213:in load_dependency' from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-4.0.0/lib/active_support/dependencies.rb:222:inload'
from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/railties-4.0.0/lib/rails/engine.rb:609:in block (2 levels) in <class:Engine>' from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/railties-4.0.0/lib/rails/engine.rb:608:ineach'
from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/railties-4.0.0/lib/rails/engine.rb:608:in block in <class:Engine>' from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/railties-4.0.0/lib/rails/initializable.rb:30:ininstance_exec'
from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/railties-4.0.0/lib/rails/initializable.rb:30:in run' from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/railties-4.0.0/lib/rails/initializable.rb:55:inblock in run_initializers'
from /Users/liouyang/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/tsort.rb:150:in block in tsort_each' from /Users/liouyang/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/tsort.rb:183:inblock (2 levels) in each_strongly_connected_component'
from /Users/liouyang/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/tsort.rb:210:in block (2 levels) in each_strongly_connected_component_from' from /Users/liouyang/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/tsort.rb:219:ineach_strongly_connected_component_from'
from /Users/liouyang/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/tsort.rb:209:in block in each_strongly_connected_component_from' from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/railties-4.0.0/lib/rails/initializable.rb:44:ineach'
from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/railties-4.0.0/lib/rails/initializable.rb:44:in tsort_each_child' from /Users/liouyang/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/tsort.rb:203:ineach_strongly_connected_component_from'
from /Users/liouyang/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/tsort.rb:182:in block in each_strongly_connected_component' from /Users/liouyang/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/tsort.rb:180:ineach'
from /Users/liouyang/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/tsort.rb:180:in each_strongly_connected_component' from /Users/liouyang/.rvm/rubies/ruby-1.9.3-p194/lib/ruby/1.9.1/tsort.rb:148:intsort_each'
from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/railties-4.0.0/lib/rails/initializable.rb:54:in run_initializers' from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/railties-4.0.0/lib/rails/application.rb:215:ininitialize!'
from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/railties-4.0.0/lib/rails/railtie/configurable.rb:30:in method_missing' from /Users/liouyang/Development/code/Walker/goatee/config/environment.rb:5:in<top (required)>'
from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-4.0.0/lib/active_support/dependencies.rb:228:in require' from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-4.0.0/lib/active_support/dependencies.rb:228:inblock in require'
from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-4.0.0/lib/active_support/dependencies.rb:213:in load_dependency' from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/activesupport-4.0.0/lib/active_support/dependencies.rb:228:inrequire'
from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/railties-4.0.0/lib/rails/application.rb:189:in require_environment!' from /Users/liouyang/.rvm/gems/ruby-1.9.3-p194/gems/railties-4.0.0/lib/rails/commands.rb:63:in<top (required)>'
from script/rails:6:in require' from script/rails:6:in

'

Reply to this email directly or view it on GitHub.

from gibbon.

kcm avatar kcm commented on July 19, 2024

This is a horrible breaking change on a 'point' release that bit us pretty bad, for what it's worth.

Please read the Semantic Versioning guidelines:

Major version X (X.y.z | X > 0) MUST be incremented if any backwards incompatible changes are introduced to the public API. It MAY include minor and patch level changes. Patch and minor version MUST be reset to 0 when major version is incremented.

from gibbon.

amro avatar amro commented on July 19, 2024

Thanks for the feedback.

from gibbon.

kaiquealencar avatar kaiquealencar commented on July 19, 2024

I had the same problem that @styliii had, I needed back version of gem to 0.4.6, to resolve!

from gibbon.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.