lib/timber/cli/api/application.rb in timber-2.1.2 vs lib/timber/cli/api/application.rb in timber-2.1.3
- old
+ new
@@ -4,17 +4,16 @@
class Application
DEVELOPMENT_ENVIRONMENT = "development".freeze
TEST_ENVIRONMENT = "test".freeze
HEROKU = "heroku".freeze
- attr_accessor :api_key, :environment, :framework_type, :heroku_drain_url,
+ attr_accessor :api_key, :environment, :heroku_drain_url,
:name, :platform_type
def initialize(attributes)
@api_key = attributes.fetch("api_key")
@environment = attributes.fetch("environment")
- @framework_type = attributes.fetch("framework_type")
@heroku_drain_url = attributes.fetch("heroku_drain_url")
@name = attributes.fetch("name")
@platform_type = attributes.fetch("platform_type")
end
@@ -30,6 +29,6 @@
platform_type == HEROKU
end
end
end
end
-end
\ No newline at end of file
+end