Sha256: 1390d529847f4a2c24923cb2825596647fbd3ca8428aafc064bf48380c21b168

Contents?: true

Size: 254 Bytes

Versions: 3

Compression:

Stored size: 254 Bytes

Contents

module AgileNotifier
  class ITS
    def initialize(url)
      @url = url
    end

    class Project
      def initialize(name)
        @name = name
      end
    end

    class Issue
      def initialize(id)
        @id = id
      end
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
agile_notifier-1.1.1 lib/agile_notifier/its.rb
agile_notifier-1.1 lib/agile_notifier/its.rb
agile_notifier-1.0 lib/agile_notifier/its.rb