action_commander 1.0.7 → 1.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/CHANGELOG.md +4 -0
- data/lib/action_commander.rb +19 -0
- data/lib/action_commander/action.rb +19 -0
- data/lib/action_commander/named_callbacks.rb +19 -0
- data/lib/action_commander/version.rb +20 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
Mjg0NTgzNGNkODM4M2U4OGY2MzJhNGZiMDdkZTI2YzYzMDdmNmM3YQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
OGYxNzFmMjYzZjBiMjM5MGNhMWRkYzgwZDI3Yjk0NTNmY2IxNDg0MQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
MjA3NmEyOThhNDEwZjQ1NzNmMmM3NmM0MWE4ZjE0ZTVlMjBkMjA5NWZjODQx
|
10
|
+
NTc0MTdjYjdiNTI4MGQ0OWU2MjI4YzMzNzYxMjI1ZTc3ZTU1NDg3ODdiY2Nm
|
11
|
+
YTNjODU5NDE1Yjk3NzIyZGY5ZmM3OTE3OGEwODVlZTJlYWIwOGQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
NmRmYzBjMTBhYTk2Y2MzNDc4YWNhYWM1YjQxYjJkNzlhMDc3YTFmMzYzMGE3
|
14
|
+
YWVjZTU1NDRhMzU5ZTViMzFmYWYzNjZlZjIyMDA3MjNlZWYyOTYyMjAxNGQx
|
15
|
+
Y2EwNTgyNjRhODE5YmZlZTUxMTdhY2IwZGEwMTEyY2U3YjNkN2U=
|
data/CHANGELOG.md
CHANGED
data/lib/action_commander.rb
CHANGED
@@ -1,2 +1,21 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
# Copyright (C) 2015 Szymon Kopciewski
|
4
|
+
#
|
5
|
+
# This file is part of ActionCommander.
|
6
|
+
#
|
7
|
+
# This program is free software: you can redistribute it and/or modify
|
8
|
+
# it under the terms of the GNU General Public License as published by
|
9
|
+
# the Free Software Foundation, either version 3 of the License, or
|
10
|
+
# (at your option) any later version.
|
11
|
+
#
|
12
|
+
# This program is distributed in the hope that it will be useful,
|
13
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
+
# GNU General Public License for more details.
|
16
|
+
#
|
17
|
+
# You should have received a copy of the GNU General Public License
|
18
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
|
+
|
1
20
|
module ActionCommander
|
2
21
|
end
|
@@ -1,3 +1,22 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
# Copyright (C) 2015 Szymon Kopciewski
|
4
|
+
#
|
5
|
+
# This file is part of ActionCommander.
|
6
|
+
#
|
7
|
+
# This program is free software: you can redistribute it and/or modify
|
8
|
+
# it under the terms of the GNU General Public License as published by
|
9
|
+
# the Free Software Foundation, either version 3 of the License, or
|
10
|
+
# (at your option) any later version.
|
11
|
+
#
|
12
|
+
# This program is distributed in the hope that it will be useful,
|
13
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
+
# GNU General Public License for more details.
|
16
|
+
#
|
17
|
+
# You should have received a copy of the GNU General Public License
|
18
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
|
+
|
1
20
|
require'action_commander/named_callbacks'
|
2
21
|
|
3
22
|
module ActionCommander
|
@@ -1,3 +1,22 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
# Copyright (C) 2015 Szymon Kopciewski
|
4
|
+
#
|
5
|
+
# This file is part of ActionCommander.
|
6
|
+
#
|
7
|
+
# This program is free software: you can redistribute it and/or modify
|
8
|
+
# it under the terms of the GNU General Public License as published by
|
9
|
+
# the Free Software Foundation, either version 3 of the License, or
|
10
|
+
# (at your option) any later version.
|
11
|
+
#
|
12
|
+
# This program is distributed in the hope that it will be useful,
|
13
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
+
# GNU General Public License for more details.
|
16
|
+
#
|
17
|
+
# You should have received a copy of the GNU General Public License
|
18
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
|
+
|
1
20
|
module ActionCommander
|
2
21
|
class NamedCallbacks
|
3
22
|
def initialize
|
@@ -1,3 +1,22 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
|
3
|
+
# Copyright (C) 2015 Szymon Kopciewski
|
4
|
+
#
|
5
|
+
# This file is part of ActionCommander.
|
6
|
+
#
|
7
|
+
# This program is free software: you can redistribute it and/or modify
|
8
|
+
# it under the terms of the GNU General Public License as published by
|
9
|
+
# the Free Software Foundation, either version 3 of the License, or
|
10
|
+
# (at your option) any later version.
|
11
|
+
#
|
12
|
+
# This program is distributed in the hope that it will be useful,
|
13
|
+
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14
|
+
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15
|
+
# GNU General Public License for more details.
|
16
|
+
#
|
17
|
+
# You should have received a copy of the GNU General Public License
|
18
|
+
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
19
|
+
|
1
20
|
module ActionCommander
|
2
|
-
VERSION = '1.0.
|
21
|
+
VERSION = '1.0.8'
|
3
22
|
end
|