You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by mc...@apache.org on 2014/01/02 19:29:33 UTC

svn commit: r1554873 - in /qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby: ./ features/

Author: mcpierce
Date: Thu Jan  2 18:29:32 2014
New Revision: 1554873

URL: http://svn.apache.org/r1554873
Log:
NO-JIRA: Added licensing prologs to the Ruby feature files and gemspec

Modified:
    qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/closing_a_connection.feature
    qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/closing_a_session.feature
    qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/connecting_to_a_broker.feature
    qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/creating_a_receiver.feature
    qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/creating_a_sender.feature
    qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/creating_a_session.feature
    qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/getting_the_connections_authenticated_username.feature
    qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/receiving_a_message.feature
    qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/sending_a_message.feature
    qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/session_returns_its_connection.feature
    qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/sessions_have_names.feature
    qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/qpid_messaging.gemspec

Modified: qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/closing_a_connection.feature
URL: http://svn.apache.org/viewvc/qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/closing_a_connection.feature?rev=1554873&r1=1554872&r2=1554873&view=diff
==============================================================================
--- qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/closing_a_connection.feature (original)
+++ qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/closing_a_connection.feature Thu Jan  2 18:29:32 2014
@@ -1,3 +1,21 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+
 Feature: Closing an open connection
   When working with a broker
   As a producer or consumer
@@ -10,4 +28,4 @@ Feature: Closing an open connection
   Scenario: The connection is open
     Given an open connection
     And the connection is closed
-    Then the connection is in the closed state
\ No newline at end of file
+    Then the connection is in the closed state

Modified: qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/closing_a_session.feature
URL: http://svn.apache.org/viewvc/qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/closing_a_session.feature?rev=1554873&r1=1554872&r2=1554873&view=diff
==============================================================================
--- qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/closing_a_session.feature (original)
+++ qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/closing_a_session.feature Thu Jan  2 18:29:32 2014
@@ -1,3 +1,20 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
 Feature: Closing an open session
   While working with a session
   As a producer or consumer

Modified: qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/connecting_to_a_broker.feature
URL: http://svn.apache.org/viewvc/qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/connecting_to_a_broker.feature?rev=1554873&r1=1554872&r2=1554873&view=diff
==============================================================================
--- qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/connecting_to_a_broker.feature (original)
+++ qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/connecting_to_a_broker.feature Thu Jan  2 18:29:32 2014
@@ -1,3 +1,20 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+ 
 Feature: Connecting to a broker
   In order to interaction on an AMQP network
   As a producer or consumer

Modified: qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/creating_a_receiver.feature
URL: http://svn.apache.org/viewvc/qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/creating_a_receiver.feature?rev=1554873&r1=1554872&r2=1554873&view=diff
==============================================================================
--- qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/creating_a_receiver.feature (original)
+++ qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/creating_a_receiver.feature Thu Jan  2 18:29:32 2014
@@ -1,3 +1,21 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
+
 Feature: Creating a receiver
   When working with a messaging environment
   As a consumer

Modified: qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/creating_a_sender.feature
URL: http://svn.apache.org/viewvc/qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/creating_a_sender.feature?rev=1554873&r1=1554872&r2=1554873&view=diff
==============================================================================
--- qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/creating_a_sender.feature (original)
+++ qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/creating_a_sender.feature Thu Jan  2 18:29:32 2014
@@ -1,3 +1,20 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
 Feature: Creating a sender
   When working with a session
   As a producer

Modified: qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/creating_a_session.feature
URL: http://svn.apache.org/viewvc/qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/creating_a_session.feature?rev=1554873&r1=1554872&r2=1554873&view=diff
==============================================================================
--- qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/creating_a_session.feature (original)
+++ qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/creating_a_session.feature Thu Jan  2 18:29:32 2014
@@ -1,3 +1,20 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+ 
 Feature: Creating a session
   When working with a broker
   As a producer or consumer

Modified: qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/getting_the_connections_authenticated_username.feature
URL: http://svn.apache.org/viewvc/qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/getting_the_connections_authenticated_username.feature?rev=1554873&r1=1554872&r2=1554873&view=diff
==============================================================================
--- qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/getting_the_connections_authenticated_username.feature (original)
+++ qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/getting_the_connections_authenticated_username.feature Thu Jan  2 18:29:32 2014
@@ -1,3 +1,20 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
 Feature: Getting the authenticated username from an open connection.
   When connected to a broker
   As a producer or consumer

Modified: qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/receiving_a_message.feature
URL: http://svn.apache.org/viewvc/qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/receiving_a_message.feature?rev=1554873&r1=1554872&r2=1554873&view=diff
==============================================================================
--- qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/receiving_a_message.feature (original)
+++ qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/receiving_a_message.feature Thu Jan  2 18:29:32 2014
@@ -1,3 +1,20 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
 Feature: Receving a message
   When working with a broker
   As a message consumer

Modified: qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/sending_a_message.feature
URL: http://svn.apache.org/viewvc/qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/sending_a_message.feature?rev=1554873&r1=1554872&r2=1554873&view=diff
==============================================================================
--- qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/sending_a_message.feature (original)
+++ qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/sending_a_message.feature Thu Jan  2 18:29:32 2014
@@ -1,3 +1,20 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
 Feature: Sending a message
   When working with a broker
   As a producer
@@ -18,4 +35,4 @@ Feature: Sending a message
   Scenario: The message sends successfully
     Given an open session
     And creating a sender with "my-queue;{create:always,delete:always}" succeeds
-    Then sending the message "This is a test" succeeds
\ No newline at end of file
+    Then sending the message "This is a test" succeeds

Modified: qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/session_returns_its_connection.feature
URL: http://svn.apache.org/viewvc/qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/session_returns_its_connection.feature?rev=1554873&r1=1554872&r2=1554873&view=diff
==============================================================================
--- qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/session_returns_its_connection.feature (original)
+++ qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/session_returns_its_connection.feature Thu Jan  2 18:29:32 2014
@@ -1,3 +1,20 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
 Feature: A session returns its connection
   With an action session
   As a producer or consumer

Modified: qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/sessions_have_names.feature
URL: http://svn.apache.org/viewvc/qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/sessions_have_names.feature?rev=1554873&r1=1554872&r2=1554873&view=diff
==============================================================================
--- qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/sessions_have_names.feature (original)
+++ qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/features/sessions_have_names.feature Thu Jan  2 18:29:32 2014
@@ -1,3 +1,20 @@
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+
 Feature: Session have a name
   When using a session
   As a producer or consumer

Modified: qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/qpid_messaging.gemspec
URL: http://svn.apache.org/viewvc/qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/qpid_messaging.gemspec?rev=1554873&r1=1554872&r2=1554873&view=diff
==============================================================================
--- qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/qpid_messaging.gemspec (original)
+++ qpid/branches/0.26/qpid/cpp/bindings/qpid/ruby/qpid_messaging.gemspec Thu Jan  2 18:29:32 2014
@@ -1,4 +1,21 @@
 # -*- encoding: utf-8 -*-
+# Licensed to the Apache Software Foundation (ASF) under one
+# or more contributor license agreements.  See the NOTICE file
+# distributed with this work for additional information
+# regarding copyright ownership.  The ASF licenses this file
+# to you under the Apache License, Version 2.0 (the
+# "License"); you may not use this file except in compliance
+# with the License.  You may obtain a copy of the License at
+#
+#   http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing,
+# software distributed under the License is distributed on an
+# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+# KIND, either express or implied.  See the License for the
+# specific language governing permissions and limitations
+# under the License.
+ 
 lib = File.expand_path('lib/', __FILE__)
 $:.unshift lib unless $:.include?(lib)
 



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org